Firefox Driver (Gecko Driver)
Gecko Driver :https://github.com/mozilla/geckodriver/releases
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver","path\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get("https://www.google.com");
}
No comments:
Post a Comment