1717
1818package org .openqa .selenium .grid .router ;
1919
20- import static org .assertj .core .api .AssertionsForClassTypes .assertThat ;
21-
2220import org .junit .jupiter .api .Test ;
2321import org .openqa .selenium .By ;
2422import org .openqa .selenium .WebDriver ;
4846import java .util .concurrent .TimeUnit ;
4947import java .util .concurrent .TimeoutException ;
5048
49+ import static org .assertj .core .api .AssertionsForClassTypes .assertThat ;
50+
5151class RemoteWebDriverBiDiTest {
5252
5353 @ Test
@@ -58,6 +58,7 @@ void ensureBiDiSessionCreation() {
5858 browser .getCapabilities (),
5959 new TomlConfig (new StringReader (
6060 "[node]\n " +
61+ "selenium-manager = true\n " +
6162 "driver-implementation = " + browser .displayName ())));
6263
6364 FirefoxOptions options = new FirefoxOptions ();
@@ -83,6 +84,7 @@ void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutE
8384 browser .getCapabilities (),
8485 new TomlConfig (new StringReader (
8586 "[node]\n " +
87+ "selenium-manager = true\n " +
8688 "driver-implementation = " + browser .displayName ())));
8789
8890 FirefoxOptions options = new FirefoxOptions ();
@@ -123,6 +125,7 @@ void canNavigateToUrl() throws ExecutionException, InterruptedException, Timeout
123125 browser .getCapabilities (),
124126 new TomlConfig (new StringReader (
125127 "[node]\n " +
128+ "selenium-manager = true\n " +
126129 "driver-implementation = " + browser .displayName ())));
127130
128131 FirefoxOptions options = new FirefoxOptions ();
0 commit comments