Skip to content

Commit

Permalink
[java] Test actualization for the current state of IE driver
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed May 2, 2019
1 parent 0bf27fe commit 7904d5c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion java/client/test/org/openqa/selenium/ClearTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ public void shouldBeAbleToClearUrlInput() {
}

@Test
@NotYetImplemented(IE)
@NotYetImplemented(HTMLUNIT)
public void shouldBeAbleToClearRangeInput() {
shouldBeAbleToClearInput(By.name("range_input"), "42", "50");
Expand All @@ -150,6 +149,7 @@ public void shouldBeAbleToClearCheckboxInput() {

@Test
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(IE)
public void shouldBeAbleToClearColorInput() {
shouldBeAbleToClearInput(By.name("color_input"), "#00ffff", "#000000");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ public void testSendingKeysToAFocusedElementShouldNotBlurThatElement() {

@Test
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(IE)
public void testClickingAnUnfocusableChildShouldNotBlurTheParent() {
assumeFalse(isOldIe(driver));
driver.get(pages.javascriptPage);
Expand Down
2 changes: 2 additions & 0 deletions java/client/test/org/openqa/selenium/FormHandlingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ public void testShouldSubmitAFormWhenAnyElementWithinThatFormIsSubmitted() {
@NotYetImplemented(
value = MARIONETTE, reason = "Delegates to JS and so the wrong exception is returned")
@NotYetImplemented(EDGE)
@NotYetImplemented(value = IE,
reason = "Throws JavascriptException: Error from JavaScript: Unable to find owning document")
public void testShouldNotBeAbleToSubmitAFormThatDoesNotExist() {
driver.get(pages.formPage);
WebElement element = driver.findElement(By.name("SearchableText"));
Expand Down
2 changes: 2 additions & 0 deletions java/client/test/org/openqa/selenium/PositionAndSizeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public void testShouldGetCoordinatesOfAnElementInAFrame() {
@NotYetImplemented(SAFARI)
@Ignore(MARIONETTE)
@NotYetImplemented(EDGE)
@NotYetImplemented(IE)
public void testShouldGetCoordinatesInViewPortOfAnElementInAFrame() {
driver.get(appServer.whereIs("coordinates_tests/element_in_frame.html"));
driver.switchTo().frame("ifr");
Expand All @@ -125,6 +126,7 @@ public void testShouldGetCoordinatesInViewPortOfAnElementInAFrame() {
@NotYetImplemented(SAFARI)
@Ignore(MARIONETTE)
@NotYetImplemented(EDGE)
@NotYetImplemented(IE)
public void testShouldGetCoordinatesInViewPortOfAnElementInANestedFrame() {
driver.get(appServer.whereIs("coordinates_tests/element_in_nested_frame.html"));
driver.switchTo().frame("ifr");
Expand Down

0 comments on commit 7904d5c

Please sign in to comment.