Skip to content

Commit 6b17327

Browse files
Delta456pujagani
andauthored
[java][BiDi]: enable Edge tests for RemoteWebDriverBiDiTest (#15412)
Co-authored-by: Puja Jagani <[email protected]>
1 parent 1eba709 commit 6b17327

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

java/test/org/openqa/selenium/grid/router/BUILD.bazel

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LARGE_TESTS = [
1111
"StressTest.java",
1212
]
1313

14-
FIREFOX_CHROME_ONLY_LARGE_TESTS = [
14+
FIREFOX_CHROMIUM_ONLY_LARGE_TESTS = [
1515
"RemoteWebDriverBiDiTest.java",
1616
]
1717

@@ -78,12 +78,13 @@ java_selenium_test_suite(
7878
)
7979

8080
java_selenium_test_suite(
81-
name = "firefox-chrome-only-large-tests",
81+
name = "firefox-chromium-only-large-tests",
8282
size = "large",
83-
srcs = FIREFOX_CHROME_ONLY_LARGE_TESTS,
83+
srcs = FIREFOX_CHROMIUM_ONLY_LARGE_TESTS,
8484
browsers = [
8585
"firefox",
8686
"chrome",
87+
"edge",
8788
],
8889
deps = [
8990
":support",
@@ -107,7 +108,7 @@ java_test_suite(
107108
size = "medium",
108109
srcs = glob(
109110
["*Test.java"],
110-
exclude = LARGE_TESTS + FIREFOX_CHROME_ONLY_LARGE_TESTS,
111+
exclude = LARGE_TESTS + FIREFOX_CHROMIUM_ONLY_LARGE_TESTS,
111112
),
112113
tags = [
113114
"requires-network",

java/test/org/openqa/selenium/grid/router/RemoteWebDriverBiDiTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
import org.openqa.selenium.remote.Augmenter;
5151
import org.openqa.selenium.remote.RemoteWebDriver;
5252
import org.openqa.selenium.testing.Ignore;
53-
import org.openqa.selenium.testing.NotYetImplemented;
5453
import org.openqa.selenium.testing.drivers.Browser;
5554

5655
class RemoteWebDriverBiDiTest {
@@ -84,7 +83,6 @@ void setup() {
8483
@Test
8584
@Ignore(IE)
8685
@Ignore(SAFARI)
87-
@NotYetImplemented(EDGE)
8886
void ensureBiDiSessionCreation() {
8987
try (BiDi biDi = ((HasBiDi) driver).getBiDi()) {
9088
BiDiSessionStatus status = biDi.getBidiSessionStatus();
@@ -96,7 +94,6 @@ void ensureBiDiSessionCreation() {
9694
@Test
9795
@Ignore(IE)
9896
@Ignore(SAFARI)
99-
@NotYetImplemented(EDGE)
10097
void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutException {
10198
driver = new Augmenter().augment(driver);
10299

@@ -124,7 +121,6 @@ void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutE
124121
@Test
125122
@Ignore(IE)
126123
@Ignore(SAFARI)
127-
@NotYetImplemented(EDGE)
128124
void canNavigateToUrl() {
129125
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);
130126

0 commit comments

Comments
 (0)