diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-28 16:21:41 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-28 16:21:46 +0200 |
commit | 2ea5ad5279af4259232082c219c0e2e14524b15f (patch) | |
tree | 3c9d03961787c6dd831c15de661cde7c9a3f3022 /uitest | |
parent | 5f7b5ec70edfc781ac2a3623d2d8f49833bd8662 (diff) | |
parent | c9eb8566b6671abe8d87f09a7541e7ddeb656c44 (diff) | |
download | vaadin-framework-2ea5ad5279af4259232082c219c0e2e14524b15f.tar.gz vaadin-framework-2ea5ad5279af4259232082c219c0e2e14524b15f.zip |
Merge commit 'c9eb856'
Conflicts:
uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java
Change-Id: I0b2b253cae1ddba0f17721786019171e1678d7e2
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/table/AddSelectionToRemovedRange.java | 2 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplicationTest.java | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/table/AddSelectionToRemovedRange.java b/uitest/src/com/vaadin/tests/components/table/AddSelectionToRemovedRange.java index d54a8b467a..104380c96c 100644 --- a/uitest/src/com/vaadin/tests/components/table/AddSelectionToRemovedRange.java +++ b/uitest/src/com/vaadin/tests/components/table/AddSelectionToRemovedRange.java @@ -19,7 +19,6 @@ import java.util.Set; import com.vaadin.server.VaadinRequest; import com.vaadin.tests.components.AbstractTestUI; -import com.vaadin.tests.tb3.AbstractTB3Test.RunLocally; import com.vaadin.ui.Button; import com.vaadin.ui.Notification; import com.vaadin.ui.Notification.Type; @@ -34,7 +33,6 @@ import com.vaadin.ui.VerticalLayout; * @author Vaadin Ltd */ @SuppressWarnings("serial") -@RunLocally() public class AddSelectionToRemovedRange extends AbstractTestUI { @Override 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>(); |