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()) {
localBrowser.getBrowserName()
+ localBrowser.getVersion());
}
+ if (properties.containsKey(FIREFOX_PATH)) {
+ System.setProperty(FIREFOX_PATH,
+ properties.getProperty(FIREFOX_PATH));
+ }
} catch (IOException e) {
throw new RuntimeException(e);
}