selenium.webdriver.chrome.service¶
Classes
|
A Service class that is responsible for the starting and stopping of chromedriver. |
- class selenium.webdriver.chrome.service.Service(executable_path: str = 'chromedriver', port: int = 0, service_args: Optional[List[str]] = None, log_path: Optional[str] = None, env: Optional[Mapping[str, str]] = None, **kwargs)[source]¶
A Service class that is responsible for the starting and stopping of chromedriver.
- Parameters:
executable_path – install path of the chromedriver executable, defaults to chromedriver.
port – Port for the service to run on, defaults to 0 where the operating system will decide.
service_args – (Optional) List of args to be passed to the subprocess when launching the executable.
log_path – (Optional) String to be passed to the executable as –log-path.
env – (Optional) Mapping of environment variables for the new process, defaults to os.environ.
- command_line_args() List[str] ¶
A List of program arguments (excluding the 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_url: str¶
Gets the url of the Service.