Browse Source

Re-enable support for the firefox.path property

Change-Id: I14d4ca1a2ef51ff77404cd6577cbe7cb35a2f75d
tags/7.5.0.alpha1
Leif Åstrand 9 years ago
parent
commit
989203a680
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java

+ 5
- 0
uitest/src/com/vaadin/tests/tb3/PrivateTB3Configuration.java View File

@@ -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);
}

Loading…
Cancel
Save