Skip to content

Commit

Permalink
[java][bidi] Mark browsing context tests unimplemented fir firefox
Browse files Browse the repository at this point in the history
The tests run fine in Firefox Nightly version 119. So this can enabled once it is available in the latest version.
  • Loading branch information
pujagani committed Sep 22, 2023
1 parent aa7ba43 commit ab1fe36
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import static org.openqa.selenium.testing.Safely.safelyCall;
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
import static org.openqa.selenium.testing.drivers.Browser.FIREFOX;
import static org.openqa.selenium.testing.drivers.Browser.IE;
import static org.openqa.selenium.testing.drivers.Browser.SAFARI;

Expand Down Expand Up @@ -207,6 +208,7 @@ void canCloseATab() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canReloadABrowsingContext() {
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);

Expand All @@ -222,6 +224,7 @@ void canReloadABrowsingContext() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canReloadWithReadinessState() {
BrowsingContext browsingContext = new BrowsingContext(driver, WindowType.TAB);

Expand All @@ -237,6 +240,7 @@ void canReloadWithReadinessState() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canHandleUserPrompt() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand All @@ -253,6 +257,7 @@ void canHandleUserPrompt() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canAcceptUserPrompt() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand All @@ -269,6 +274,7 @@ void canAcceptUserPrompt() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canDismissUserPrompt() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand All @@ -285,6 +291,7 @@ void canDismissUserPrompt() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canPassUserTextToUserPrompt() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand All @@ -303,6 +310,7 @@ void canPassUserTextToUserPrompt() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canAcceptUserPromptWithUserText() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand All @@ -321,6 +329,7 @@ void canAcceptUserPromptWithUserText() {
@Test
@NotYetImplemented(SAFARI)
@NotYetImplemented(IE)
@NotYetImplemented(FIREFOX)
void canDismissUserPromptWithUserText() {
BrowsingContext browsingContext = new BrowsingContext(driver, driver.getWindowHandle());

Expand Down

0 comments on commit ab1fe36

Please sign in to comment.