nl.hsac.fitnesse.junit.selenium.SeleniumDriverFactoryFactoryBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hsac-fitnesse-fixtures Show documentation
Show all versions of hsac-fitnesse-fixtures Show documentation
Fixtures to assist in testing via FitNesse
package nl.hsac.fitnesse.junit.selenium;
import nl.hsac.fitnesse.fixture.util.selenium.SeleniumHelper;
import org.apache.commons.lang3.StringUtils;
/**
* Base class for Selenium driver factory factories.
*/
public abstract class SeleniumDriverFactoryFactoryBase implements SeleniumDriverFactoryFactory {
public final static String SELENIUM_GRID_URL = "seleniumGridUrl";
public final static String SELENIUM_BROWSER = "seleniumBrowser";
public final static String SELENIUM_DRIVER_CLASS = "seleniumDriverClass";
public final static String SELENIUM_CAPABILITIES = "seleniumCapabilities";
@Override
public abstract boolean willOverride();
@Override
public abstract SeleniumHelper.DriverFactory getDriverFactory();
protected boolean isPropertySet(String propertyName) {
String value = getProperty(propertyName);
return !StringUtils.isEmpty(value);
}
protected String getProperty(String propertyName) {
String value = System.getProperty(propertyName);
if (value != null && value.startsWith("\"") && value.endsWith("\"")) {
value = value.substring(1, value.length() - 1);
}
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy