package selenium;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class MyTestNGClass {
WebDriver driver;
@BeforeMethod
public void prepareTest() {
System.setProperty("webdriver.ie.driver", "C:\\chrome\\chromedriver_win32\\chromedriver.exe");
driver = new ChromeDriver();
}
@Test
public void runTest() {
driver.get("https://www.google.com");
System.out.println(driver.getTitle());
System.out.println(driver.getCurrentUrl());
WebElement searchBox = driver.findElement(By.xpath("//input[@title='Search' and @type='text']"));
searchBox.sendKeys("TestAutomation.co");
WebElement submitSearchBtn = driver.findElement(By.name("btnK"));
submitSearchBtn.submit();
}
@AfterMethod
public void cleanTest() {
driver.quit();
}
}