selenium.webdriver.webkitgtk.service

Classes

Service([executable_path, port, log_path, ...])

A Service class that is responsible for the starting and stopping of WebKitWebDriver.

class selenium.webdriver.webkitgtk.service.Service(executable_path: str | None = None, port: int = 0, log_path: str | None = None, log_output: str | None = None, service_args: Sequence[str] | None = None, env: Mapping[str, str] | None = None, **kwargs)[source]

A Service class that is responsible for the starting and stopping of WebKitWebDriver.

Args:
executable_path: Install path of the WebKitWebDriver executable,

defaults to the first WebKitWebDriver in $PATH.

port: Port for the service to run on, defaults to 0 where the

operating system will decide.

service_args: (Optional) Sequence 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.

command_line_args() list[str][source]

A List of program arguments (excluding the executable).

assert_process_still_running() None[source]

Check if the underlying process is still running.

env_path() str | None[source]
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_args: Sequence[str]
property service_url: str

Gets the url of the Service.

start() None[source]

Starts the Service.

Exceptions:
  • WebDriverException : Raised either when it can’t start the service or when it can’t connect to the service

stop() None[source]

Stops the service.