selenium.webdriver.safari.service¶
Classes
Service (executable_path, port, quiet, …) |
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 = '/usr/bin/safaridriver', port: int = 0, quiet: bool = False, service_args: Optional[List[str]] = None, env: Optional[Mapping[str, str]] = None, **kwargs)[source]¶ A Service class that is responsible for the starting and stopping of safaridriver This is only supported on MAC OSX.
Parameters: - 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.
- quiet – Suppress driver stdout & stderr, redirects to os.devnull if enabled.
- service_args – (Optional) List 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.
-
is_connectable
() → bool[source]¶ Establishes a socket connection to determine if the service running on the port is accessible.
-
send_remote_shutdown_command
() → None[source]¶ Dispatch an HTTP request to the shutdown endpoint for the service in an attempt to stop it.
-
service_url
¶ Gets the url of the SafariDriver Service.