Skip to content

Commit

Permalink
AndreasTolfTolfsen: Opera does not support alert popups yet
Browse files Browse the repository at this point in the history
r15422
  • Loading branch information
Andreas Tolf Tolfsen committed Jan 6, 2012
1 parent 298cbab commit 5800eba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions java/client/test/org/openqa/selenium/ImplicitWaitTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import static org.openqa.selenium.testing.Ignore.Driver.IE;
import static org.openqa.selenium.testing.Ignore.Driver.IPHONE;
import static org.openqa.selenium.testing.Ignore.Driver.SELENESE;
import static org.openqa.selenium.testing.Ignore.Driver.OPERA;

import static java.util.concurrent.TimeUnit.MILLISECONDS;

Expand Down Expand Up @@ -142,7 +143,8 @@ public void testShouldImplicitlyWaitForAnElementToBeVisibleBeforeInteracting() {

@Test
@JavascriptEnabled
@Ignore({ANDROID, CHROME, HTMLUNIT, IPHONE, SELENESE})
@Ignore({ANDROID, CHROME, HTMLUNIT, IPHONE, SELENESE, OPERA})
// OPERA: Does not support alerts yet
public void testShouldImplicitlyWaitForAnAlert() {
driver.get(pages.alertsPage);

Expand All @@ -159,7 +161,8 @@ public void testShouldImplicitlyWaitForAnAlert() {

@Test
@JavascriptEnabled
@Ignore({ANDROID, CHROME, HTMLUNIT, IPHONE, SELENESE})
@Ignore({ANDROID, CHROME, HTMLUNIT, IPHONE, SELENESE, OPERA})
// OPERA: Does not support alerts yet
public void testShouldCheckAlertImmediatelyIfNoImplicitWaitSpecified() {
driver.get(pages.alertsPage);

Expand Down

0 comments on commit 5800eba

Please sign in to comment.