at.willhaben.willtest.config.FirefoxBinaryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core classes with as few dependencies as possible
package at.willhaben.willtest.config;
import org.openqa.selenium.firefox.FirefoxBinary;
/**
* You might want to run tests with different versions of Firefox. The implementations of this interface should
* return a {@link FirefoxBinary} instance.
*/
@Deprecated
public interface FirefoxBinaryProvider {
/**
* Creates a firefox binary (executable of firefox)
*
* @return firefox binary instance
*/
FirefoxBinary getFirefoxBinary();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy