Java 类org.openqa.selenium.opera.OperaDriverService 实例源码

项目:Java-Testing-Toolbox    文件:OperaConfiguration.java   
/**
 * {@inheritDoc}
 */
@Override
public String getPathProperty() {
    return OperaDriverService.OPERA_DRIVER_EXE_PROPERTY;
}
项目:easyium-java    文件:OperaDriver.java   
/**
 * Creates a new OperaDriver instance. The {@code service} will be started along with the driver,
 * and shutdown upon calling {@link #quit()}.
 *
 * @param service The service to use.
 * @see #OperaDriver(OperaDriverService, OperaOptions)
 */
public OperaDriver(OperaDriverService service) {
    super(new org.openqa.selenium.opera.OperaDriver(service));
}
项目:easyium-java    文件:OperaDriver.java   
/**
 * Creates a new OperaDriver instance with the specified options. The {@code service} will be
 * started along with the driver, and shutdown upon calling {@link #quit()}.
 *
 * @param service The service to use.
 * @param options The options to use.
 */
public OperaDriver(OperaDriverService service, OperaOptions options) {
    super(new org.openqa.selenium.opera.OperaDriver(service, options));
}
项目:easyium-java    文件:OperaDriver.java   
/**
 * Creates a new OperaDriver instance. The {@code service} will be started along with the
 * driver, and shutdown upon calling {@link #quit()}.
 *
 * @param service      The service to use.
 * @param capabilities The capabilities required from the OperaDriver.
 */
public OperaDriver(OperaDriverService service, Capabilities capabilities) {
    super(new org.openqa.selenium.opera.OperaDriver(service, capabilities));
}