![JAR search and dependency download from the Maven repository](/logo.png)
com.github.mike10004.seleniumhelp.WebDriverFactory Maven / Gradle / Ivy
package com.github.mike10004.seleniumhelp;
import java.io.IOException;
/**
* Interface defining methods that produce webdriver instances.
*/
public interface WebDriverFactory {
/**
* Creates a webdriving session with the given configuration.
* @param config the configuration
* @return the session
* @throws IOException on I/O error
*/
WebdrivingSession startWebdriving(WebdrivingConfig config) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy