Skip to content

Commit

Permalink
Ignoring tests failed by HtmlUnitDriver (regression in 2.15?)
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jun 12, 2014
1 parent 5cff71c commit 727ebe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/client/test/org/openqa/selenium/FormHandlingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public void testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue()
assertThat(value, is("Example text. Some text"));
}

@Ignore(value = {IPHONE, ANDROID, OPERA_MOBILE},
@Ignore(value = {IPHONE, ANDROID, HTMLUNIT, OPERA_MOBILE},
reason = "Not implemented going to the end of the line first;\n" +
"iPhone: sendKeys not implemented correctly")
@Test
Expand Down Expand Up @@ -298,7 +298,7 @@ public void testCanClickOnASubmitButton() {
checkSubmitButton("internal_explicit_submit");
}

@Ignore(value = {ANDROID, IPHONE, SAFARI, OPERA_MOBILE}, reason = "untested")
@Ignore(value = {ANDROID, HTMLUNIT, IPHONE, SAFARI, OPERA_MOBILE}, reason = "untested")
@Test
public void testCanClickOnAnImplicitSubmitButton() {
assumeFalse(isIe6(driver) || isIe7(driver) );
Expand Down

0 comments on commit 727ebe4

Please sign in to comment.