Created
January 21, 2020 07:13
-
-
Save eliasnogueira/4a1e8c18f97ad28b349279c9da5bd5e1 to your computer and use it in GitHub Desktop.
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
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