Skip to content

Commit d3d8e17

Browse files
committed
The issue is marted as fixed, but the fix is not propagated yet
1 parent 46f47b4 commit d3d8e17

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ public void testShouldAllowAUserToDismissAPrompt() {
190190

191191
@JavascriptEnabled
192192
@Test
193-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/607")
194-
@NotYetImplemented(value = {HTMLUNIT},
195-
reason = "HtmlUnit: click()/prompt need to run in different threads")
193+
@NotYetImplemented(value = {HTMLUNIT, MARIONETTE},
194+
reason = "HtmlUnit: click()/prompt need to run in different threads" +
195+
"Marionette: https://github.com/mozilla/geckodriver/issues/607")
196196
public void testShouldAllowAUserToSetTheValueOfAPrompt() {
197197
driver.get(promptPage(null));
198198

@@ -366,9 +366,9 @@ public void testPromptShouldHaveNullValueIfDismissed() {
366366

367367
@JavascriptEnabled
368368
@Test
369-
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/607")
370-
@NotYetImplemented(value = HTMLUNIT,
371-
reason = "HtmlUnit: click()/prompt need to run in different threads.")
369+
@NotYetImplemented(value = {HTMLUNIT, MARIONETTE},
370+
reason = "HtmlUnit: click()/prompt need to run in different threads." +
371+
"Marionette: https://github.com/mozilla/geckodriver/issues/607")
372372
public void testHandlesTwoAlertsFromOneInteraction() {
373373
driver.get(appServer.create(new Page()
374374
.withScripts(

0 commit comments

Comments
 (0)