nl.hsac.fitnesse.junit.selenium.LocalSeleniumDriverClassFactoryFactory 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.driverfactory.DriverFactory;
import nl.hsac.fitnesse.fixture.util.selenium.driverfactory.LocalDriverFactory;
import java.util.Map;
/**
* Creates a Selenium driver factory to override the configuration in the wiki.
* This factory is configured by setting the system property 'seleniumDriverClass' and
* not setting 'seleniumGridUrl' or 'seleniumBrowser'.
*/
public class LocalSeleniumDriverClassFactoryFactory extends SeleniumDriverFactoryFactoryBase {
@Override
public boolean willOverride() {
return !isPropertySet(SELENIUM_GRID_URL)
&& !isPropertySet(SELENIUM_BROWSER)
&& isPropertySet(SELENIUM_DRIVER_CLASS);
}
@Override
public DriverFactory getDriverFactory() {
final String driverClass = getProperty(SELENIUM_DRIVER_CLASS);
final Map profile = getProfile();
return new LocalDriverFactory(driverClass, profile);
}
protected Map getProfile() {
return parseJsonProperty(SELENIUM_JSONPROFILE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy