diff --git a/java/test/org/openqa/selenium/grid/router/BUILD.bazel b/java/test/org/openqa/selenium/grid/router/BUILD.bazel index 40339643b5f29..f0df3da6cbd8b 100644 --- a/java/test/org/openqa/selenium/grid/router/BUILD.bazel +++ b/java/test/org/openqa/selenium/grid/router/BUILD.bazel @@ -11,7 +11,7 @@ LARGE_TESTS = [ "StressTest.java", ] -FIREFOX_CHROME_ONLY_LARGE_TESTS = [ +FIREFOX_CHROMIUM_ONLY_LARGE_TESTS = [ "RemoteWebDriverBiDiTest.java", ] @@ -78,12 +78,13 @@ java_selenium_test_suite( ) java_selenium_test_suite( - name = "firefox-chrome-only-large-tests", + name = "firefox-chromium-only-large-tests", size = "large", - srcs = FIREFOX_CHROME_ONLY_LARGE_TESTS, + srcs = FIREFOX_CHROMIUM_ONLY_LARGE_TESTS, browsers = [ "firefox", "chrome", + "edge", ], deps = [ ":support", @@ -107,7 +108,7 @@ java_test_suite( size = "medium", srcs = glob( ["*Test.java"], - exclude = LARGE_TESTS + FIREFOX_CHROME_ONLY_LARGE_TESTS, + exclude = LARGE_TESTS + FIREFOX_CHROMIUM_ONLY_LARGE_TESTS, ), tags = [ "requires-network", diff --git a/java/test/org/openqa/selenium/grid/router/RemoteWebDriverBiDiTest.java b/java/test/org/openqa/selenium/grid/router/RemoteWebDriverBiDiTest.java index 90f071f569524..169cc919b5fb0 100644 --- a/java/test/org/openqa/selenium/grid/router/RemoteWebDriverBiDiTest.java +++ b/java/test/org/openqa/selenium/grid/router/RemoteWebDriverBiDiTest.java @@ -50,7 +50,6 @@ import org.openqa.selenium.remote.Augmenter; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.testing.Ignore; -import org.openqa.selenium.testing.NotYetImplemented; import org.openqa.selenium.testing.drivers.Browser; class RemoteWebDriverBiDiTest { @@ -84,7 +83,6 @@ void setup() { @Test @Ignore(IE) @Ignore(SAFARI) - @NotYetImplemented(EDGE) void ensureBiDiSessionCreation() { try (BiDi biDi = ((HasBiDi) driver).getBiDi()) { BiDiSessionStatus status = biDi.getBidiSessionStatus(); @@ -96,7 +94,6 @@ void ensureBiDiSessionCreation() { @Test @Ignore(IE) @Ignore(SAFARI) - @NotYetImplemented(EDGE) void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutException { driver = new Augmenter().augment(driver); @@ -124,7 +121,6 @@ void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutE @Test @Ignore(IE) @Ignore(SAFARI) - @NotYetImplemented(EDGE) void canNavigateToUrl() { BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);