Skip to content

Commit ab1fe36

Browse files
committed
[java][bidi] Mark browsing context tests unimplemented fir firefox
The tests run fine in Firefox Nightly version 119. So this can enabled once it is available in the latest version.
1 parent aa7ba43 commit ab1fe36

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import static org.openqa.selenium.testing.Safely.safelyCall;
2424
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
2525
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
26+
import static org.openqa.selenium.testing.drivers.Browser.FIREFOX;
2627
import static org.openqa.selenium.testing.drivers.Browser.IE;
2728
import static org.openqa.selenium.testing.drivers.Browser.SAFARI;
2829

@@ -207,6 +208,7 @@ void canCloseATab() {
207208
@Test
208209
@NotYetImplemented(SAFARI)
209210
@NotYetImplemented(IE)
211+
@NotYetImplemented(FIREFOX)
210212
void canReloadABrowsingContext() {
211213
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);
212214

@@ -222,6 +224,7 @@ void canReloadABrowsingContext() {
222224
@Test
223225
@NotYetImplemented(SAFARI)
224226
@NotYetImplemented(IE)
227+
@NotYetImplemented(FIREFOX)
225228
void canReloadWithReadinessState() {
226229
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);
227230

@@ -237,6 +240,7 @@ void canReloadWithReadinessState() {
237240
@Test
238241
@NotYetImplemented(SAFARI)
239242
@NotYetImplemented(IE)
243+
@NotYetImplemented(FIREFOX)
240244
void canHandleUserPrompt() {
241245
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
242246

@@ -253,6 +257,7 @@ void canHandleUserPrompt() {
253257
@Test
254258
@NotYetImplemented(SAFARI)
255259
@NotYetImplemented(IE)
260+
@NotYetImplemented(FIREFOX)
256261
void canAcceptUserPrompt() {
257262
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
258263

@@ -269,6 +274,7 @@ void canAcceptUserPrompt() {
269274
@Test
270275
@NotYetImplemented(SAFARI)
271276
@NotYetImplemented(IE)
277+
@NotYetImplemented(FIREFOX)
272278
void canDismissUserPrompt() {
273279
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
274280

@@ -285,6 +291,7 @@ void canDismissUserPrompt() {
285291
@Test
286292
@NotYetImplemented(SAFARI)
287293
@NotYetImplemented(IE)
294+
@NotYetImplemented(FIREFOX)
288295
void canPassUserTextToUserPrompt() {
289296
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
290297

@@ -303,6 +310,7 @@ void canPassUserTextToUserPrompt() {
303310
@Test
304311
@NotYetImplemented(SAFARI)
305312
@NotYetImplemented(IE)
313+
@NotYetImplemented(FIREFOX)
306314
void canAcceptUserPromptWithUserText() {
307315
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
308316

@@ -321,6 +329,7 @@ void canAcceptUserPromptWithUserText() {
321329
@Test
322330
@NotYetImplemented(SAFARI)
323331
@NotYetImplemented(IE)
332+
@NotYetImplemented(FIREFOX)
324333
void canDismissUserPromptWithUserText() {
325334
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());
326335

0 commit comments

Comments
 (0)