/** * {@inheritDoc} */ @Override public String getPathProperty() { return OperaDriverService.OPERA_DRIVER_EXE_PROPERTY; }
/** * 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)); }
/** * 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)); }
/** * 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)); }