Package org.openqa.selenium.edge
Class ChromiumEdgeDriverService
- java.lang.Object
-
- org.openqa.selenium.remote.service.DriverService
-
- org.openqa.selenium.edge.EdgeDriverService
-
- org.openqa.selenium.edge.ChromiumEdgeDriverService
-
public class ChromiumEdgeDriverService extends EdgeDriverService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChromiumEdgeDriverService.Builder
Builder used to configure newChromiumEdgeDriverService
instances.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
EDGE_DRIVER_ALLOWED_IPS_PROPERTY
System property that defines comma-separated list of remote IPv4 addresses which are allowed to connect to MSEdgeDriver.static java.lang.String
EDGE_DRIVER_SILENT_OUTPUT_PROPERTY
Boolean system property that defines whether the MSEdgeDriver executable should be started in silent mode.-
Fields inherited from class org.openqa.selenium.edge.EdgeDriverService
EDGE_DRIVER_EXE_PROPERTY, EDGE_DRIVER_LOG_PROPERTY, EDGE_DRIVER_VERBOSE_LOG_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description ChromiumEdgeDriverService(java.io.File executable, int port, java.util.List<java.lang.String> args, java.util.Map<java.lang.String,java.lang.String> environment)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChromiumEdgeDriverService
createDefaultService()
Configures and returns a newChromiumEdgeDriverService
using the default configuration.
-
-
-
Field Detail
-
EDGE_DRIVER_SILENT_OUTPUT_PROPERTY
public static final java.lang.String EDGE_DRIVER_SILENT_OUTPUT_PROPERTY
Boolean system property that defines whether the MSEdgeDriver executable should be started in silent mode.- See Also:
- Constant Field Values
-
EDGE_DRIVER_ALLOWED_IPS_PROPERTY
public static final java.lang.String EDGE_DRIVER_ALLOWED_IPS_PROPERTY
System property that defines comma-separated list of remote IPv4 addresses which are allowed to connect to MSEdgeDriver.- See Also:
- Constant Field Values
-
-
Method Detail
-
createDefaultService
public static ChromiumEdgeDriverService createDefaultService()
Configures and returns a newChromiumEdgeDriverService
using the default configuration. In this configuration, the service will use the MSEdgeDriver executable identified by theEdgeDriverService.EDGE_DRIVER_EXE_PROPERTY
system property. Each service created by this method will be configured to use a free port on the current system.- Returns:
- A new ChromiumEdgeDriverService using the default configuration.
-
-