diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-09-18 08:10:20 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-09-19 08:01:26 +0000 |
commit | 0c6829673d1b51cce136c47beb4a080a4d82f7be (patch) | |
tree | c17d0b390081be005b8dc75916fc911f16d321e9 /uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java | |
parent | 588b52dfbe4823ac6d752bafece7e2aa0870960c (diff) | |
download | vaadin-framework-0c6829673d1b51cce136c47beb4a080a4d82f7be.tar.gz vaadin-framework-0c6829673d1b51cce136c47beb4a080a4d82f7be.zip |
Make CalendarNotificationsTestIE work on IE8.
Change-Id: I395a03fe2c1815004a72e2bb3ecde937d504e969
Diffstat (limited to 'uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java index 414aebbd33..72fb2c18d1 100644 --- a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java +++ b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java @@ -58,6 +58,16 @@ public abstract class MultiBrowserTest extends PrivateTB3Configuration { browsers.remove(Browser.FIREFOX.getDesiredCapabilities()); browsers.remove(Browser.PHANTOMJS.getDesiredCapabilities()); + return browsers; + } + + protected List<DesiredCapabilities> getIEBrowsersOnly() { + List<DesiredCapabilities> browsers = new ArrayList<DesiredCapabilities>(); + browsers.add(Browser.IE8.getDesiredCapabilities()); + browsers.add(Browser.IE9.getDesiredCapabilities()); + browsers.add(Browser.IE10.getDesiredCapabilities()); + browsers.add(Browser.IE11.getDesiredCapabilities()); + return browsers; } |