selenium.webdriver.safari.service

Classes

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

A Service class that is responsible for the starting and stopping of safaridriver This is only supported on MAC OSX.

class selenium.webdriver.safari.service.Service(executable_path: str | None = None, port: int = 0, service_args: Sequence[str] | None = None, env: Mapping[str, str] | None = None, reuse_service=False, enable_logging: bool = False, driver_path_env_key: str | None = None, **kwargs)[source]

A Service class that is responsible for the starting and stopping of safaridriver This is only supported on MAC OSX.

Args:

executable_path: install path of the safaridriver executable, defaults to /usr/bin/safaridriver. 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. env: (Optional) Mapping of environment variables for the new process, defaults to os.environ. enable_logging: (Optional) Enable logging of the service. Logs can be located at

~/Library/Logs/com.apple.WebDriver/

driver_path_env_key: (Optional) Environment variable to use to get the path to the driver executable.

command_line_args() list[str][source]

A List of program arguments (excluding the executable).

property service_url: str

Gets the url of the SafariDriver Service.

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
property reuse_service: bool
send_remote_shutdown_command() None[source]

Dispatch an HTTP request to the shutdown endpoint for the service in an attempt to stop it.

start() None[source]

Starts the Service.

Raises:
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.

property service_args: Sequence[str]