summaryrefslogtreecommitdiffstats
path: root/uitest-common
diff options
context:
space:
mode:
authorArtur <artur@vaadin.com>2017-02-03 09:41:35 +0200
committerDenis <denis@vaadin.com>2017-02-03 09:41:35 +0200
commit641351ed72a4469f9bd092b178b9e45468e7ab6b (patch)
treef6805a14a2008ff5172351bea999622f94697773 /uitest-common
parent6456428004199f7f4d887579b460df96530c42b0 (diff)
downloadvaadin-framework-641351ed72a4469f9bd092b178b9e45468e7ab6b.tar.gz
vaadin-framework-641351ed72a4469f9bd092b178b9e45468e7ab6b.zip
Run tests on Firefox 45 (#8428)
* Run tests on Firefox 45
Diffstat (limited to 'uitest-common')
-rw-r--r--uitest-common/src/main/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/uitest-common/src/main/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java b/uitest-common/src/main/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
index 6b1fe5d55f..05d9614129 100644
--- a/uitest-common/src/main/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
+++ b/uitest-common/src/main/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
@@ -63,7 +63,10 @@ public class VaadinBrowserFactory extends DefaultBrowserFactory {
return create(browser, "40", Platform.VISTA);
case FIREFOX:
default:
- return create(browser, "24", Platform.XP);
+ DesiredCapabilities dc = create(Browser.FIREFOX, "45",
+ Platform.WINDOWS);
+ dc.setCapability("marionette", "false");
+ return dc;
}
}