diff options
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/components/textfield/InputPromptAndCursorPositionTest.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/components/textfield/InputPromptAndCursorPositionTest.java b/uitest/src/test/java/com/vaadin/tests/components/textfield/InputPromptAndCursorPositionTest.java index 8a036787f0..b1a8ad6f94 100644 --- a/uitest/src/test/java/com/vaadin/tests/components/textfield/InputPromptAndCursorPositionTest.java +++ b/uitest/src/test/java/com/vaadin/tests/components/textfield/InputPromptAndCursorPositionTest.java @@ -2,7 +2,10 @@ package com.vaadin.tests.components.textfield; import static org.junit.Assert.assertEquals; +import java.util.List; + import org.junit.Test; +import org.openqa.selenium.remote.DesiredCapabilities; import com.vaadin.testbench.elements.ButtonElement; import com.vaadin.testbench.elements.LabelElement; @@ -11,6 +14,13 @@ import com.vaadin.tests.tb3.MultiBrowserTest; public class InputPromptAndCursorPositionTest extends MultiBrowserTest { + @Override + public List<DesiredCapabilities> getBrowsersToTest() { + // IE11 has a known bug with placeholders: + // https://connect.microsoft.com/IE/feedback/details/811408 + return getBrowsersExcludingIE(); + } + @Test public void verifyDatePattern() { openTestURL(); |