selenium.webdriver.ie.service#
Classes
|
Service class responsible for starting and stopping of IEDriver. |
- class Service(executable_path=None, port=0, host=None, service_args=None, log_level=None, log_output=None, driver_path_env_key=None, **kwargs)[source]#
Bases:
ServiceService class responsible for starting and stopping of IEDriver.
- Parameters:
executable_path (str | None) – (Optional) Install path of the executable.
port (int) – (Optional) Port for the service to run on, defaults to 0 where the operating system will decide.
host (str | None) – (Optional) IP address the service port is bound
service_args (Sequence[str] | None) – (Optional) Sequence of args to be passed to the subprocess when launching the executable.
log_level (str | None) – (Optional) Level of logging of service, may be “FATAL”, “ERROR”, “WARN”, “INFO”, “DEBUG”, “TRACE”. Default is “FATAL”.
log_output (int | str | IO[Any] | None) – (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
driver_path_env_key (str | None) – (Optional) Environment variable to use to get the path to the driver executable.
**kwargs – Additional keyword arguments to pass to the parent Service class.
- command_line_args()[source]#
A List of program arguments (excluding the executable).
- Return type:
list[str]
- assert_process_still_running()[source]#
Check if the underlying process is still running.
- Return type:
None
- is_connectable()[source]#
Check if the service is ready via the W3C WebDriver /status endpoint.
This makes an HTTP request to the /status endpoint and verifies if it is ready to accept new sessions.
- Returns:
True if the service is ready to accept new sessions, False otherwise.
- Return type:
bool
- property path: str#
- send_remote_shutdown_command()[source]#
Dispatch an HTTP request to the shutdown endpoint to stop the service.
- Return type:
None
- property service_url: str#
Gets the url of the Service.
- start()[source]#
Starts the Service.
- Raises:
WebDriverException – Raised either when it can’t start the service or when it can’t connect to the service
- Return type:
None
- property service_args: Sequence[str]#
Returns the sequence of service arguments.