Skip to content

Commit

Permalink
Wrong test was ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jun 12, 2014
1 parent 727ebe4 commit 5315c0f
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 @@ -244,7 +244,7 @@ public void testSendingKeyboardEventsShouldAppendTextInInputs() {
assertThat(value, is("some text"));
}

@Ignore(value = {ANDROID, IPHONE, OPERA, OPERA_MOBILE},
@Ignore(value = {ANDROID, HTMLUNIT, IPHONE, OPERA, OPERA_MOBILE},
reason = "iPhone: sendKeys implemented incorrectly")
@Test
public void testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue() {
Expand All @@ -256,7 +256,7 @@ public void testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue()
assertThat(value, is("Example text. Some text"));
}

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

0 comments on commit 5315c0f

Please sign in to comment.