28
28
import org .junit .Test ;
29
29
import org .junit .runner .RunWith ;
30
30
import org .openqa .selenium .testing .Ignore ;
31
+ import org .openqa .selenium .testing .NotYetImplemented ;
31
32
import org .openqa .selenium .testing .SeleniumTestRunner ;
32
33
import org .openqa .selenium .testing .drivers .WebDriverBuilder ;
33
34
@@ -46,7 +47,7 @@ public void callingQuitMoreThanOnceOnASessionIsANoOp() {
46
47
@ Test
47
48
@ Ignore (value = FIREFOX , issue = "https://github.com/SeleniumHQ/selenium/issues/3792" )
48
49
@ 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" )
50
51
public void callingQuitAfterClosingTheLastWindowIsANoOp () {
51
52
WebDriver driver = new WebDriverBuilder ().get ();
52
53
@@ -59,7 +60,7 @@ public void callingQuitAfterClosingTheLastWindowIsANoOp() {
59
60
@ Ignore (value = FIREFOX , issue = "3792" )
60
61
@ Ignore (value = PHANTOMJS , reason = "throws NoSuchWindowException" )
61
62
@ 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" )
63
64
public void callingAnyOperationAfterClosingTheLastWindowShouldThrowAnException () {
64
65
WebDriver driver = new WebDriverBuilder ().get ();
65
66
0 commit comments