Skip to content

Commit b529aba

Browse files
committed
[java] Disable BiDi tests that subscribe to multiple browsing contexts.
Browsers are yet to support the functionality.
1 parent 3832787 commit b529aba

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

java/test/org/openqa/selenium/bidi/LogInspectorTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
import org.junit.jupiter.api.AfterEach;
2121
import org.junit.jupiter.api.BeforeEach;
22+
import org.junit.jupiter.api.Disabled;
2223
import org.junit.jupiter.api.Test;
2324
import org.openqa.selenium.By;
2425
import org.openqa.selenium.WindowType;
@@ -138,6 +139,7 @@ void canRetrieveStacktraceForALog()
138139
}
139140
}
140141

142+
@Disabled("Until browsers support subscribing to multiple contexts.")
141143
@Test
142144
void canListenToConsoleLogForABrowsingContext()
143145
throws ExecutionException, InterruptedException, TimeoutException {
@@ -163,6 +165,7 @@ void canListenToConsoleLogForABrowsingContext()
163165
}
164166
}
165167

168+
@Disabled("Until browsers support subscribing to multiple contexts.")
166169
@Test
167170
void canListenToJavascriptLogForABrowsingContext()
168171
throws ExecutionException, InterruptedException, TimeoutException {
@@ -184,6 +187,7 @@ void canListenToJavascriptLogForABrowsingContext()
184187
}
185188
}
186189

190+
@Disabled("Until browsers support subscribing to multiple contexts.")
187191
@Test
188192
void canListenToJavascriptErrorLogForABrowsingContext()
189193
throws ExecutionException, InterruptedException, TimeoutException {
@@ -205,6 +209,7 @@ void canListenToJavascriptErrorLogForABrowsingContext()
205209
}
206210
}
207211

212+
@Disabled("Until browsers support subscribing to multiple contexts.")
208213
@Test
209214
void canListenToConsoleLogForMultipleBrowsingContexts()
210215
throws ExecutionException, InterruptedException, TimeoutException {
@@ -242,6 +247,7 @@ void canListenToConsoleLogForMultipleBrowsingContexts()
242247
}
243248
}
244249

250+
@Disabled("Until browsers support subscribing to multiple contexts.")
245251
@Test
246252
void canListenToJavascriptLogForMultipleBrowsingContexts() throws InterruptedException {
247253
page = server.whereIs("/bidi/logEntryAdded.html");
@@ -278,6 +284,7 @@ void canListenToJavascriptLogForMultipleBrowsingContexts() throws InterruptedExc
278284
}
279285
}
280286

287+
@Disabled("Until browsers support subscribing to multiple contexts.")
281288
@Test
282289
void canListenToJavascriptErrorLogForMultipleBrowsingContexts() throws InterruptedException {
283290
page = server.whereIs("/bidi/logEntryAdded.html");
@@ -314,6 +321,7 @@ void canListenToJavascriptErrorLogForMultipleBrowsingContexts() throws Interrupt
314321
}
315322
}
316323

324+
@Disabled("Until browsers support subscribing to multiple contexts.")
317325
@Test
318326
void canListenToAnyTypeOfLogForMultipleBrowsingContexts() throws InterruptedException {
319327
page = server.whereIs("/bidi/logEntryAdded.html");

0 commit comments

Comments
 (0)