Skip to content

Commit

Permalink
firefox: Ignore tests for not throwing on clicking overlapping element
Browse files Browse the repository at this point in the history
Signed-off-by: Alexei Barantsev <barancev@gmail.com>
  • Loading branch information
p0deje authored and barancev committed Nov 18, 2015
1 parent 839f73a commit a98f672
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import static org.openqa.selenium.WaitingConditions.elementValueToEqual;
import static org.openqa.selenium.support.ui.ExpectedConditions.visibilityOfElementLocated;
import static org.openqa.selenium.testing.Ignore.Driver.CHROME;
import static org.openqa.selenium.testing.Ignore.Driver.FIREFOX;
import static org.openqa.selenium.testing.Ignore.Driver.HTMLUNIT;
import static org.openqa.selenium.testing.Ignore.Driver.IE;
import static org.openqa.selenium.testing.Ignore.Driver.MARIONETTE;
Expand Down Expand Up @@ -429,7 +430,7 @@ public void testClickOverlappingElements() {
}

@JavascriptEnabled
@Ignore(value = {CHROME, MARIONETTE, SAFARI, HTMLUNIT})
@Ignore(value = {CHROME, FIREFOX, MARIONETTE, SAFARI, HTMLUNIT})
@Test
public void testNativelyClickOverlappingElements() {
assumeFalse(isOldIe(driver));
Expand Down

0 comments on commit a98f672

Please sign in to comment.