public class OperaDriverService
extends org.openqa.selenium.remote.service.DriverService
| Modifier and Type | Class and Description |
|---|---|
static class |
OperaDriverService.Builder
Builder used to configure new
OperaDriverService instances. |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
OPERA_DRIVER_EXE_PROPERTY
System property that defines the location of the operadriver executable that will be used by
the
default service. |
static java.lang.String |
OPERA_DRIVER_LOG_PROPERTY
System property that defines the location of the log that will be written by
the
default service. |
static java.lang.String |
OPERA_DRIVER_SILENT_OUTPUT_PROPERTY
Boolean system property that defines whether the OperaDriver executable should be started
in silent mode.
|
static java.lang.String |
OPERA_DRIVER_VERBOSE_LOG_PROPERTY
Boolean system property that defines whether the OperaDriver executable should be started
with verbose logging.
|
| Constructor and Description |
|---|
OperaDriverService(java.io.File executable,
int port,
com.google.common.collect.ImmutableList<java.lang.String> args,
com.google.common.collect.ImmutableMap<java.lang.String,java.lang.String> environment) |
| Modifier and Type | Method and Description |
|---|---|
static OperaDriverService |
createDefaultService()
Configures and returns a new
OperaDriverService using the default configuration. |
public static final java.lang.String OPERA_DRIVER_EXE_PROPERTY
default service.public static final java.lang.String OPERA_DRIVER_LOG_PROPERTY
default service.public static final java.lang.String OPERA_DRIVER_VERBOSE_LOG_PROPERTY
public static final java.lang.String OPERA_DRIVER_SILENT_OUTPUT_PROPERTY
public OperaDriverService(java.io.File executable,
int port,
com.google.common.collect.ImmutableList<java.lang.String> args,
com.google.common.collect.ImmutableMap<java.lang.String,java.lang.String> environment)
throws java.io.IOException
executable - The operadriver executable.port - Which port to start the operadriver on.args - The arguments to the launched server.environment - The environment for the launched server.java.io.IOException - If an I/O error occurs.public static OperaDriverService createDefaultService()
OperaDriverService using the default configuration. In
this configuration, the service will use the operadriver executable identified by the
OPERA_DRIVER_EXE_PROPERTY system property. Each service created by this method will
be configured to use a free port on the current system.