selenium.webdriver.wpewebkit.service¶
Classes
|
A Service class that is responsible for the starting and stopping of WPEWebDriver. |
- class selenium.webdriver.wpewebkit.service.Service(executable_path: str | None = None, port: int = 0, log_output: str | None = None, service_args: List[str] | None = None, env: Mapping[str, str] | None = None, **kwargs)[source]¶
A Service class that is responsible for the starting and stopping of WPEWebDriver.
- Parameters:
executable_path – install path of the WPEWebDriver executable, defaults to the first WPEWebDriver in $PATH.
port – Port for the service to run on, defaults to 0 where the operating system will decide.
service_args – (Optional) List of args to be passed to the subprocess when launching the executable.
log_output – (Optional) File path for the file to be opened and passed as the subprocess stdout/stderr handler.
env – (Optional) Mapping of environment variables for the new process, defaults to os.environ.
- is_connectable() bool [source]¶
Establishes a socket connection to determine if the service running on the port is accessible.
- property path: str¶
- send_remote_shutdown_command() None [source]¶
Dispatch an HTTP request to the shutdown endpoint for the service in an attempt to stop it.
- property service_url: str¶
Gets the url of the Service.