19
19
20
20
import org .junit .jupiter .api .AfterEach ;
21
21
import org .junit .jupiter .api .BeforeEach ;
22
+ import org .junit .jupiter .api .Disabled ;
22
23
import org .junit .jupiter .api .Test ;
23
24
import org .openqa .selenium .By ;
24
25
import org .openqa .selenium .WindowType ;
@@ -138,6 +139,7 @@ void canRetrieveStacktraceForALog()
138
139
}
139
140
}
140
141
142
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
141
143
@ Test
142
144
void canListenToConsoleLogForABrowsingContext ()
143
145
throws ExecutionException , InterruptedException , TimeoutException {
@@ -163,6 +165,7 @@ void canListenToConsoleLogForABrowsingContext()
163
165
}
164
166
}
165
167
168
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
166
169
@ Test
167
170
void canListenToJavascriptLogForABrowsingContext ()
168
171
throws ExecutionException , InterruptedException , TimeoutException {
@@ -184,6 +187,7 @@ void canListenToJavascriptLogForABrowsingContext()
184
187
}
185
188
}
186
189
190
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
187
191
@ Test
188
192
void canListenToJavascriptErrorLogForABrowsingContext ()
189
193
throws ExecutionException , InterruptedException , TimeoutException {
@@ -205,6 +209,7 @@ void canListenToJavascriptErrorLogForABrowsingContext()
205
209
}
206
210
}
207
211
212
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
208
213
@ Test
209
214
void canListenToConsoleLogForMultipleBrowsingContexts ()
210
215
throws ExecutionException , InterruptedException , TimeoutException {
@@ -242,6 +247,7 @@ void canListenToConsoleLogForMultipleBrowsingContexts()
242
247
}
243
248
}
244
249
250
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
245
251
@ Test
246
252
void canListenToJavascriptLogForMultipleBrowsingContexts () throws InterruptedException {
247
253
page = server .whereIs ("/bidi/logEntryAdded.html" );
@@ -278,6 +284,7 @@ void canListenToJavascriptLogForMultipleBrowsingContexts() throws InterruptedExc
278
284
}
279
285
}
280
286
287
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
281
288
@ Test
282
289
void canListenToJavascriptErrorLogForMultipleBrowsingContexts () throws InterruptedException {
283
290
page = server .whereIs ("/bidi/logEntryAdded.html" );
@@ -314,6 +321,7 @@ void canListenToJavascriptErrorLogForMultipleBrowsingContexts() throws Interrupt
314
321
}
315
322
}
316
323
324
+ @ Disabled ("Until browsers support subscribing to multiple contexts." )
317
325
@ Test
318
326
void canListenToAnyTypeOfLogForMultipleBrowsingContexts () throws InterruptedException {
319
327
page = server .whereIs ("/bidi/logEntryAdded.html" );
0 commit comments