Skip to content

Instantly share code, notes, and snippets.

@slawekradzyminski
Created January 27, 2019 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slawekradzyminski/9d8bb544b65968f2cdb58b547a72b65e to your computer and use it in GitHub Desktop.
Save slawekradzyminski/9d8bb544b65968f2cdb58b547a72b65e to your computer and use it in GitHub Desktop.
EdgeDriver
private static final String MY_EDGEDRIVER_PATH =
"C:\\drivers\\MicrosoftWebDriver.exe";
@Override
public WebDriver newWebDriver() {
System.setProperty("webdriver.edge.driver", MY_EDGEDRIVER_PATH);
return new EdgeDriver();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment