Skip to content

Commit 6131f8f

Browse files
committed
Expecting these tests to fail until geckodriver 0.17 is available
1 parent 842e345 commit 6131f8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

java/client/test/org/openqa/selenium/SessionHandlingTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.junit.Test;
2929
import org.junit.runner.RunWith;
3030
import org.openqa.selenium.testing.Ignore;
31+
import org.openqa.selenium.testing.NotYetImplemented;
3132
import org.openqa.selenium.testing.SeleniumTestRunner;
3233
import org.openqa.selenium.testing.drivers.WebDriverBuilder;
3334

@@ -46,7 +47,7 @@ public void callingQuitMoreThanOnceOnASessionIsANoOp() {
4647
@Test
4748
@Ignore(value = FIREFOX, issue = "https://github.com/SeleniumHQ/selenium/issues/3792")
4849
@Ignore(PHANTOMJS)
49-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/689")
50+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/689")
5051
public void callingQuitAfterClosingTheLastWindowIsANoOp() {
5152
WebDriver driver = new WebDriverBuilder().get();
5253

@@ -59,7 +60,7 @@ public void callingQuitAfterClosingTheLastWindowIsANoOp() {
5960
@Ignore(value = FIREFOX, issue = "3792")
6061
@Ignore(value = PHANTOMJS, reason = "throws NoSuchWindowException")
6162
@Ignore(value = SAFARI, reason = "throws NullPointerException")
62-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/689")
63+
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/689")
6364
public void callingAnyOperationAfterClosingTheLastWindowShouldThrowAnException() {
6465
WebDriver driver = new WebDriverBuilder().get();
6566

0 commit comments

Comments
 (0)