aboutsummaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-03-28 20:17:08 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2014-03-29 21:38:24 +0000
commitca5d053e20700f36db97874c3698e6d365c8cedb (patch)
tree17e90909095253ac8580a0248e82ea8122a5d651 /uitest
parent8077db8d513396f451c0d8772b683faa83ceccc3 (diff)
downloadvaadin-framework-ca5d053e20700f36db97874c3698e6d365c8cedb.tar.gz
vaadin-framework-ca5d053e20700f36db97874c3698e6d365c8cedb.zip
Make test work with IE
Change-Id: I17b3c5221c68c0bc78d675368dc56616e9bdfc6b
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java b/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java
index 25aa621e32..f7cb306100 100644
--- a/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java
+++ b/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java
@@ -37,6 +37,14 @@ public class SelectAllRowsTest extends MultiBrowserTest {
private final static String TABLE_ROW = "v-table-row";
@Override
+ protected DesiredCapabilities getDesiredCapabilities() {
+ DesiredCapabilities cap = new DesiredCapabilities(
+ super.getDesiredCapabilities());
+ cap.setCapability("requireWindowFocus", true);
+ return cap;
+ }
+
+ @Override
public List<DesiredCapabilities> getBrowsersToTest() {
// Pressing Shift modifier key does not work with TestBench and IE
// (#8621)