summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2014-03-27 14:29:24 +0200
committerVaadin Code Review <review@vaadin.com>2014-03-28 10:53:29 +0000
commit3869b27779a1a4f88c94b06503cf0ceeee7c7a70 (patch)
treef3c9d3a6b255ef2388251750ecabd480ea936eb5 /uitest/src/com/vaadin/tests
parent3775a7ff907bdf59a1007ba61c97d8548b6e4535 (diff)
downloadvaadin-framework-3869b27779a1a4f88c94b06503cf0ceeee7c7a70.tar.gz
vaadin-framework-3869b27779a1a4f88c94b06503cf0ceeee7c7a70.zip
Add nativeEvents false capability to LayoutTesterApplicationTest
Change-Id: Ice1081dc0d5e6fd49c246ca4a4bfbf27dbbbace4
Diffstat (limited to 'uitest/src/com/vaadin/tests')
-rw-r--r--uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java b/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java
index 33197613dc..8996e62503 100644
--- a/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java
+++ b/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java
@@ -24,6 +24,7 @@ import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebElement;
+import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.support.ui.Select;
import com.vaadin.tests.tb3.MultiBrowserTest;
@@ -32,6 +33,15 @@ import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.VerticalLayout;
public class LayoutTesterApplicationTest extends MultiBrowserTest {
+
+ @Override
+ protected DesiredCapabilities getDesiredCapabilities() {
+ DesiredCapabilities cap = new DesiredCapabilities(
+ super.getDesiredCapabilities());
+ cap.setCapability("nativeEvents", false);
+ return cap;
+ }
+
Map<String, Integer> numberOfSubTests = new HashMap<String, Integer>();
private Set<String> tableOrIconsTests = new HashSet<String>();