aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests')
-rw-r--r--uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java1
-rw-r--r--uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java4
2 files changed, 3 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
index f9df2f0a71..44cf069402 100644
--- a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
+++ b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
@@ -650,6 +650,7 @@ public abstract class AbstractTB3Test extends TestBenchTestCase {
*/
public static DesiredCapabilities safari(int version) {
DesiredCapabilities c = DesiredCapabilities.safari();
+ c.setPlatform(Platform.MAC);
c.setVersion("" + version);
return c;
}
diff --git a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java
index 040d0156a3..e8a974343b 100644
--- a/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java
+++ b/uitest/src/com/vaadin/tests/tb3/MultiBrowserTest.java
@@ -40,7 +40,7 @@ import org.openqa.selenium.remote.DesiredCapabilities;
*/
public abstract class MultiBrowserTest extends PrivateTB3Configuration {
- public static final int TESTED_SAFARI_VERSION = 6;
+ public static final int TESTED_SAFARI_VERSION = 7;
public static final int TESTED_CHROME_VERSION = 29;
public static final int TESTED_FIREFOX_VERSION = 24;
@@ -52,7 +52,7 @@ public abstract class MultiBrowserTest extends PrivateTB3Configuration {
allBrowsers.add(BrowserUtil.ie(11));
allBrowsers.add(BrowserUtil.firefox(TESTED_FIREFOX_VERSION));
// Uncomment once we have the capability to run on Safari 6
- // allBrowsers.add(safari(TESTED_SAFARI_VERSION));
+ // allBrowsers.add(BrowserUtil.safari(TESTED_SAFARI_VERSION));
allBrowsers.add(BrowserUtil.chrome(TESTED_CHROME_VERSION));
// Re-enable this when it is possible to run on a modern Opera version
// (15+)