File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
java/server/test/org/openqa/selenium/grid/router Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 18
18
package org .openqa .selenium .grid .router ;
19
19
20
20
import com .google .common .collect .ImmutableMap ;
21
+
21
22
import org .junit .BeforeClass ;
22
23
import org .junit .Test ;
23
24
import org .openqa .selenium .Capabilities ;
24
- import org .openqa .selenium .ImmutableCapabilities ;
25
25
import org .openqa .selenium .MutableCapabilities ;
26
26
import org .openqa .selenium .WebDriver ;
27
27
import org .openqa .selenium .chrome .ChromeOptions ;
42
42
import org .openqa .selenium .support .devtools .NetworkInterceptor ;
43
43
import org .openqa .selenium .testing .drivers .Browser ;
44
44
45
- import java .io .IOException ;
46
45
import java .io .StringReader ;
47
46
import java .util .HashMap ;
48
47
import java .util .Map ;
@@ -70,8 +69,7 @@ public void ensureBasicFunctionality() throws InterruptedException {
70
69
browser .getCapabilities (),
71
70
new TomlConfig (new StringReader (
72
71
"[node]\n " +
73
- "detect-drivers = true\n " +
74
- "drivers = " + browser .displayName ())));
72
+ "driver-implementation = " + browser .displayName ())));
75
73
76
74
Server <?> server = new NettyServer (
77
75
new BaseServerOptions (new MapConfig (ImmutableMap .of ())),
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public void setupServers() {
66
66
browser .getCapabilities (),
67
67
new TomlConfig (new StringReader (
68
68
"[node]\n " +
69
- "drivers = " + browser .displayName ())));
69
+ "driver-implementation = " + browser .displayName ())));
70
70
tearDowns .add (deployment );
71
71
72
72
server = deployment .getServer ();
You can’t perform that action at this time.
0 commit comments