From 86c963dcd44b359b877c0dd03042b5d050e17770 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Thu, 14 Jan 2016 21:57:45 +0000 Subject: [PATCH] [Java] Reenable clicking tests --- java/client/test/org/openqa/selenium/ClickTest.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/java/client/test/org/openqa/selenium/ClickTest.java b/java/client/test/org/openqa/selenium/ClickTest.java index f43dac7c62de4..f54b2ffbdc0be 100644 --- a/java/client/test/org/openqa/selenium/ClickTest.java +++ b/java/client/test/org/openqa/selenium/ClickTest.java @@ -71,7 +71,6 @@ public void testCanClickOnALinkThatOverflowsAndFollowIt() { @JavascriptEnabled @Test - @Ignore(MARIONETTE) public void testCanClickOnAnAnchorAndNotReloadThePage() { ((JavascriptExecutor) driver).executeScript("document.latch = true"); @@ -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"); @@ -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); @@ -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); @@ -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", @@ -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")); @@ -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"));