Skip to content

Commit

Permalink
[java] Unignoring several chrome tests passed for me locally
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 5, 2018
1 parent bdc37ee commit f4494da
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion java/client/test/org/openqa/selenium/AlertsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@ public void testShouldHandleAlertOnPageLoad() {
}

@Test
@Ignore(CHROME)
public void testShouldHandleAlertOnPageLoadUsingGet() {
driver.get(appServer.create(new Page()
.withOnLoad("javascript:alert(\"onload\")")
Expand Down
5 changes: 0 additions & 5 deletions java/client/test/org/openqa/selenium/ChildrenFindingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import static org.openqa.selenium.testing.Driver.SAFARI;

import org.junit.Test;
import org.openqa.selenium.testing.Ignore;
import org.openqa.selenium.testing.JUnit4TestBase;

import java.util.List;
Expand Down Expand Up @@ -116,8 +115,6 @@ public void testFindElementByIdWhenMultipleMatchesExist() {
}

@Test
@Ignore(value = CHROME,
reason = "Need to recompile drivers with atoms from 6c55320d3f0eb23de56270a55c74602fc8d63c8a")
public void testFindElementByIdWhenIdContainsNonAlphanumericCharacters() {
driver.get(pages.nestedPage);
WebElement element = driver.findElement(By.id("test_special_chars"));
Expand All @@ -144,8 +141,6 @@ public void testFindElementsById() {
}

@Test
@Ignore(value = CHROME,
reason = "Need to recompile drivers with atoms from 6c55320d3f0eb23de56270a55c74602fc8d63c8a")
public void testFindElementsByIdWithNonAlphanumericCharacters() {
driver.get(pages.nestedPage);
WebElement element = driver.findElement(By.id("test_special_chars"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public void testShouldBeAbleToClickOnAnElementHiddenByOverflow() {
}

@Test
@Ignore(value = CHROME, reason = "failed")
public void testShouldBeAbleToClickOnAnElementHiddenByDoubleOverflow() {
driver.get(appServer.whereIs("scrolling_tests/page_with_double_overflow_auto.html"));

Expand Down
4 changes: 0 additions & 4 deletions java/client/test/org/openqa/selenium/ElementFindingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ public void testShouldBeAbleToFindASingleElementByNumericId() {
}

@Test
@Ignore(value = CHROME,
reason = "Need to recompile drivers with atoms from 6c55320d3f0eb23de56270a55c74602fc8d63c8a")
public void testShouldBeAbleToFindASingleElementByIdWithNonAlphanumericCharacters() {
driver.get(pages.nestedPage);
WebElement element = driver.findElement(By.id("white space"));
Expand All @@ -80,8 +78,6 @@ public void testShouldBeAbleToFindMultipleElementsByNumericId() {
}

@Test
@Ignore(value = CHROME,
reason = "Need to recompile drivers with atoms from 6c55320d3f0eb23de56270a55c74602fc8d63c8a")
public void testShouldBeAbleToFindMultipleElementsByIdWithNonAlphanumericCharacters() {
driver.get(pages.nestedPage);
List<WebElement> elements = driver.findElements(By.id("white space"));
Expand Down

0 comments on commit f4494da

Please sign in to comment.