We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67771ae commit 0820dd7Copy full SHA for 0820dd7
java/test/org/openqa/selenium/remote/RemoteWebDriverBuilderTest.java
@@ -490,13 +490,13 @@ public URL getUrl() {
490
SESSION_ID,
491
"capabilities",
492
new ImmutableCapabilities(
493
- "firefox", "caps",
494
- "browserName", "firefox",
495
- "moz:debuggerAddress", uri.toString())))));
+ "chrome", "caps",
+ "browserName", "chrome",
+ "goog:chromeOptions", uri.toString())))));
496
497
WebDriver driver =
498
RemoteWebDriver.builder()
499
- .oneOf(new FirefoxOptions())
+ .oneOf(new ChromeOptions())
500
.withDriverService(service)
501
.augmentUsing(new Augmenter())
502
.connectingWith(config -> req -> response)
0 commit comments