Skip to content

Instantly share code, notes, and snippets.

@eliasnogueira
Created January 21, 2020 07:13
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
public class ChromeTest {
public void openGoogleChrome() {
// setup the browsr binary and set the proper path
WebDriverManager.chromedriver().setup();
// create the Google Chrome browser instance
WebDriver driver = new ChromeDriver();
driver.get("http://eliasnogueira.com");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment