nl.hsac.fitnesse.junit.selenium.SeleniumDriverFactoryFactory 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;
/**
* Creates a Selenium driver factory to override the configuration in the wiki.
*/
public interface SeleniumDriverFactoryFactory {
/**
* @return true when getDriverFactory() will not return null.
*/
boolean willOverride();
/**
* Creates driver factory to be used.
* @return driver factory to use, null indicates wiki's configuration will be used (i.e. not overridden).
*/
DriverFactory getDriverFactory();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy