From 989203a680dce14b5dde4abf0291a480cace56cd Mon Sep 17 00:00:00 2001 From: Leif Åstrand Date: Sat, 14 Mar 2015 15:48:52 +0200 Subject: Re-enable support for the firefox.path property Change-Id: I14d4ca1a2ef51ff77404cd6577cbe7cb35a2f75d --- uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java b/uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java index 05ffa99511..d0134a4feb 100644 --- a/uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java +++ b/uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java @@ -53,6 +53,7 @@ public abstract class PrivateTB3Configuration extends ScreenshotTB3Test { private static final Properties properties = new Properties(); private static final File propertiesFile = new File("work", "eclipse-run-selected-test.properties"); + private static final String FIREFOX_PATH = "firefox.path"; static { if (propertiesFile.exists()) { @@ -66,6 +67,10 @@ public abstract class PrivateTB3Configuration extends ScreenshotTB3Test { localBrowser.getBrowserName() + localBrowser.getVersion()); } + if (properties.containsKey(FIREFOX_PATH)) { + System.setProperty(FIREFOX_PATH, + properties.getProperty(FIREFOX_PATH)); + } } catch (IOException e) { throw new RuntimeException(e); } -- cgit v1.2.3