selenium.webdriver.firefox.serviceΒΆ
Classes
|
A Service class that is responsible for the starting and stopping of geckodriver. |
- class selenium.webdriver.firefox.service.Service(executable_path: str | None = None, port: int = 0, service_args: Sequence[str] | None = None, log_output: int | str | IO[Any] | None = None, env: Mapping[str, str] | None = None, driver_path_env_key: str | None = None, **kwargs)[source]ΒΆ
A Service class that is responsible for the starting and stopping of geckodriver.
- Parameters:
executable_path β install path of the geckodriver executable, defaults to geckodriver.
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) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
env β (Optional) Mapping of environment variables for the new process, defaults to os.environ.
driver_path_env_key β (Optional) Environment variable to use to get the path to the driver executable.
- 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.