FlaNium.WinAPI.webdriver.FlaNiumOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FlaNium.WinAPI Show documentation
Show all versions of FlaNium.WinAPI Show documentation
Library extending the capabilities of the FlaNium driver.
The newest version!
package FlaNium.WinAPI.webdriver;
import org.openqa.selenium.Capabilities;
/**
* Defines the interface to manage options specific to {@link FlaNiumDriver}
*/
public interface FlaNiumOptions {
/**
* Convert options to DesiredCapabilities for one of FlaNium Drivers
* @return The DesiredCapabilities for FlaNium Driver with these options.
*/
Capabilities toCapabilities();
}