Skip to content

Commit 7b021bd

Browse files
committed
[java][BiDi]: enable Edge tests for RemoteWebDriverBiDiTest
1 parent d52985d commit 7b021bd

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ void setup() {
8686
@Test
8787
@Ignore(IE)
8888
@Ignore(SAFARI)
89-
@NotYetImplemented(EDGE)
9089
void ensureBiDiSessionCreation() {
9190
try (BiDi biDi = ((HasBiDi) driver).getBiDi()) {
9291
BiDiSessionStatus status =
@@ -100,7 +99,6 @@ void ensureBiDiSessionCreation() {
10099
@Test
101100
@Ignore(IE)
102101
@Ignore(SAFARI)
103-
@NotYetImplemented(EDGE)
104102
void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutException {
105103
driver = new Augmenter().augment(driver);
106104

@@ -128,7 +126,6 @@ void canListenToLogs() throws ExecutionException, InterruptedException, TimeoutE
128126
@Test
129127
@Ignore(IE)
130128
@Ignore(SAFARI)
131-
@NotYetImplemented(EDGE)
132129
void canNavigateToUrl() {
133130
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);
134131

0 commit comments

Comments
 (0)