Skip to content

Commit

Permalink
Status of these tests is not defined, they work for me locally, they …
Browse files Browse the repository at this point in the history
…work on travis, but the issue is still open.
  • Loading branch information
barancev committed Apr 22, 2017
1 parent 6e88496 commit 81b484d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions java/client/test/org/openqa/selenium/ClickScrollingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import org.openqa.selenium.interactions.MoveTargetOutOfBoundsException;
import org.openqa.selenium.testing.Ignore;
import org.openqa.selenium.testing.JUnit4TestBase;
import org.openqa.selenium.testing.NotYetImplemented;
import org.openqa.selenium.testing.SwitchToTopAfterTest;

@Ignore(value = HTMLUNIT, reason = "Scrolling requires rendering")
Expand Down Expand Up @@ -87,7 +86,7 @@ public void testShouldBeAbleToClickOnAnElementHiddenByOverflow() {

@Test
@Ignore(value = CHROME, reason = "failed")
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/662")
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/662")
public void testShouldBeAbleToClickOnAnElementHiddenByDoubleOverflow() {
driver.get(appServer.whereIs("scrolling_tests/page_with_double_overflow_auto.html"));

Expand Down Expand Up @@ -194,7 +193,7 @@ public void testShouldBeAbleToClickElementThatIsOutOfViewInAFrameThatIsOutOfView
@SwitchToTopAfterTest
@Test
@Ignore(SAFARI)
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/651")
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/651")
public void testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrame() {
driver.get(appServer.whereIs("scrolling_tests/page_with_nested_scrolling_frames.html"));
driver.switchTo().frame("scrolling_frame");
Expand All @@ -207,7 +206,7 @@ public void testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrame() {
@SwitchToTopAfterTest
@Test
@Ignore(SAFARI)
@NotYetImplemented(value = MARIONETTE, reason = "https://github.com/mozilla/geckodriver/issues/651")
@Ignore(value = MARIONETTE, issue = "https://github.com/mozilla/geckodriver/issues/651")
public void testShouldBeAbleToClickElementThatIsOutOfViewInANestedFrameThatIsOutOfView() {
driver.get(appServer.whereIs("scrolling_tests/page_with_nested_scrolling_frames_out_of_view.html"));
driver.switchTo().frame("scrolling_frame");
Expand Down

0 comments on commit 81b484d

Please sign in to comment.