From 5315c0fd489b75df5b130123d290bd638b6f0932 Mon Sep 17 00:00:00 2001 From: Alexei Barantsev Date: Fri, 13 Jun 2014 00:32:38 +0400 Subject: [PATCH] Wrong test was ignored --- java/client/test/org/openqa/selenium/FormHandlingTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/client/test/org/openqa/selenium/FormHandlingTest.java b/java/client/test/org/openqa/selenium/FormHandlingTest.java index bf5d9c53d5c1b..a8a682f77154b 100644 --- a/java/client/test/org/openqa/selenium/FormHandlingTest.java +++ b/java/client/test/org/openqa/selenium/FormHandlingTest.java @@ -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() { @@ -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