Created
October 9, 2020 08:38
-
-
Save seleniumgists/1f6e5040fbdca96756aa7513a7e76380 to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
This file contains hidden or 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
DesiredCapabilities capabilities = new DesiredCapabilities(); | |
capabilities = DesiredCapabilities.edge(); | |
WebDriver driver = new RemoteWebDriver(new URL(cloud), capabilities );``` | |
#2 | |
```EdgeOptions options = new EdgeOptions(); | |
WebDriver driver = new RemoteWebDriver(new URL(cloud), options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment