diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-07-18 13:04:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 13:04:05 +0300 |
commit | fa03b98014d25918f3c2f1476ae11df610605676 (patch) | |
tree | 85ceddde329c4c5842aa709f60f79c506e4ea69a /uitest | |
parent | 131dfca872c1761525085c4e69e4a67348add683 (diff) | |
download | vaadin-framework-fa03b98014d25918f3c2f1476ae11df610605676.tar.gz vaadin-framework-fa03b98014d25918f3c2f1476ae11df610605676.zip |
Remove obsolete workaround for Firefox (#9687)
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/components/combobox/ComboBoxSelectingWithNewItemsAllowedTest.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/components/combobox/ComboBoxSelectingWithNewItemsAllowedTest.java b/uitest/src/test/java/com/vaadin/tests/components/combobox/ComboBoxSelectingWithNewItemsAllowedTest.java index d61bb26dad..533b651cb7 100644 --- a/uitest/src/test/java/com/vaadin/tests/components/combobox/ComboBoxSelectingWithNewItemsAllowedTest.java +++ b/uitest/src/test/java/com/vaadin/tests/components/combobox/ComboBoxSelectingWithNewItemsAllowedTest.java @@ -248,11 +248,7 @@ public class ComboBoxSelectingWithNewItemsAllowedTest extends MultiBrowserTest { } private void cancelSelection() { - if (BrowserUtil.isFirefox(getDesiredCapabilities())) { - findElement(By.className("v-app")).click(); - } else { - sendKeysToInput(Keys.ESCAPE); - } + sendKeysToInput(Keys.ESCAPE); } private void assertThatSelectedValueIs(final String value) { |