import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; class Codeaft { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "/home/codeaft/drivers/chromedriver"); WebDriver driver = new ChromeDriver(); driver.navigate().to("https://codeaft.github.io/testapp/"); System.out.println(driver.getTitle()); driver.close(); } }
Codeaft's TestApp