Skip to content

Commit

Permalink
[Java] Reenable clicking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Jan 14, 2016
1 parent cc07382 commit 86c963d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions java/client/test/org/openqa/selenium/ClickTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public void testCanClickOnALinkThatOverflowsAndFollowIt() {

@JavascriptEnabled
@Test
@Ignore(MARIONETTE)
public void testCanClickOnAnAnchorAndNotReloadThePage() {
((JavascriptExecutor) driver).executeScript("document.latch = true");

Expand Down Expand Up @@ -113,7 +112,7 @@ public void testElementsFoundByJsCanLoadUpdatesInAnotherFrame() {

@JavascriptEnabled
@Test
@Ignore(value = {MARIONETTE}, reason = "getPageSource issue")
@Ignore(value = {MARIONETTE})
public void testJsLocatedElementsCanUpdateFramesIfFoundSomehowElse() {
driver.switchTo().frame("source");

Expand Down Expand Up @@ -152,7 +151,7 @@ public void testShouldClickOnFirstBoundingClientRectWithNonZeroSize() {
}

@JavascriptEnabled
@Ignore(value = {CHROME, MARIONETTE}, reason = "Not implemented")
@Ignore(value = {CHROME}, reason = "Not implemented")
@Test
public void testShouldSetRelatedTargetForMouseOver() {
driver.get(pages.javascriptPage);
Expand All @@ -166,7 +165,7 @@ public void testShouldSetRelatedTargetForMouseOver() {

@JavascriptEnabled
@NoDriverAfterTest
@Ignore(value = {SAFARI}, reason = "Safari: issue 3693")
@Ignore(value = {SAFARI, MARIONETTE}, reason = "Safari: issue 3693")
@Test
public void testShouldOnlyFollowHrefOnce() {
driver.get(pages.clicksPage);
Expand Down Expand Up @@ -221,7 +220,6 @@ public void testCanClickOnALinkThatContainsTextWrappedInASpan() {
}

@Test
@Ignore(MARIONETTE)
public void testCanClickOnALinkThatContainsEmbeddedBlockElements() {
assumeFalse(
"Fails on Android phones: https://code.google.com/p/chromedriver/issues/detail?id=1022",
Expand Down Expand Up @@ -350,7 +348,6 @@ public void testShouldBeAbleToClickOnLinksWithNoHrefAttribute() {

@JavascriptEnabled
@Test
@Ignore(value = {MARIONETTE})
public void testShouldBeAbleToClickOnALinkThatWrapsToTheNextLine() {
driver.get(appServer.whereIs("click_tests/link_that_wraps.html"));

Expand All @@ -361,7 +358,6 @@ public void testShouldBeAbleToClickOnALinkThatWrapsToTheNextLine() {

@JavascriptEnabled
@Test
@Ignore(value = {MARIONETTE})
public void testShouldBeAbleToClickOnASpanThatWrapsToTheNextLine() {
driver.get(appServer.whereIs("click_tests/span_that_wraps.html"));

Expand Down

0 comments on commit 86c963d

Please sign in to comment.