Created
June 24, 2020 16:12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Running The Script For Browser Automation With Selenium & Java tutorial// | |
package com.LoginPage; | |
import java.util.concurrent.TimeUnit; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.openqa.selenium.opera.OperaDriver; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.AfterTest; | |
import org.testng.annotations.BeforeTest; | |
import org.testng.annotations.Parameters; | |
import org.testng.annotations.Test; | |
public class LoginTest { | |
public WebDriver driver; | |
@BeforeTest | |
@Parameters("browser") | |
public void setUp(String browser) { | |
if(browser.equalsIgnoreCase("Firefox")) { | |
System.setProperty("WebDriver.gecko.driver", "C:\\Users\\shalini\\Downloads\\geckodriver-v0.26.0-win64\\geckodriver.exe"); | |
driver = new FirefoxDriver(); | |
} | |
else if (browser.equalsIgnoreCase("GoogleChrome")) { | |
System.setProperty("WebDriver.chrome.driver", "C:\\Users\\shalini\\Downloads\\chromedriver\\chromedriver.exe"); | |
driver = new ChromeDriver(); | |
} | |
else if(browser.equalsIgnoreCase("Opera")) { | |
System.setProperty("WebDriver.opera.driver","C:\\Users\\shalini\\Downloads\\operadriver\\operadriver_win64\\operadriver.exe"); | |
driver = new OperaDriver(); | |
} | |
} | |
@Test | |
public void Login() { | |
driver.get("https://opensource-demo.orangehrmlive.com/"); | |
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); | |
String pageTitle = driver.getTitle(); | |
System.out.println("The title of this page is ===> " +pageTitle); | |
driver.findElement(By.id("txtUsername")).clear(); | |
driver.findElement(By.id("txtUsername")).sendKeys("Admin"); | |
driver.findElement(By.id("txtPassword")).clear(); | |
driver.findElement(By.id("txtPassword")).sendKeys("admin123"); | |
driver.findElement(By.id("btnLogin")).click(); | |
} | |
@AfterTest | |
public void tearDown() { | |
driver.quit(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment