Skip to content

Commit

Permalink
[java] Unignoring tests fixed in chromedriver 2.43
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 17, 2018
1 parent 47bb6dc commit f381d42
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions java/client/test/org/openqa/selenium/ChildrenFindingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
import static org.openqa.selenium.testing.Driver.CHROME;
import static org.openqa.selenium.testing.Driver.SAFARI;

import org.junit.Test;
Expand Down Expand Up @@ -180,7 +179,6 @@ public void testShouldFindChildElementsById() {
}

@Test
@NotYetImplemented(value = CHROME, reason = "Need to release atoms fix from #4351")
public void testShouldNotReturnRootElementWhenFindingChildrenById() {
driver.get(pages.nestedPage);
WebElement parent = driver.findElement(By.id("test_id"));
Expand Down
5 changes: 0 additions & 5 deletions java/client/test/org/openqa/selenium/ClearTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ public void shouldBeAbleToClearColorInput() {
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearDateInput() {
shouldBeAbleToClearInput(By.name("date_input"), "2017-11-22");
Expand All @@ -173,28 +172,24 @@ public void shouldBeAbleToClearDatetimeInput() {
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearDatetimeLocalInput() {
shouldBeAbleToClearInput(By.name("datetime_local_input"), "2017-11-22T11:22");
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearTimeInput() {
shouldBeAbleToClearInput(By.name("time_input"), "11:22");
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearMonthInput() {
shouldBeAbleToClearInput(By.name("month_input"), "2017-11");
}

@Test
@NotYetImplemented(CHROME)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearWeekInput() {
shouldBeAbleToClearInput(By.name("week_input"), "2017-W47");
Expand Down

0 comments on commit f381d42

Please sign in to comment.