selenium.webdriver.chromium.service¶
Classes
ChromiumService (executable_path, port, …) |
A Service class that is responsible for the starting and stopping the WebDriver instance of the ChromiumDriver. |
-
class
selenium.webdriver.chromium.service.
ChromiumService
(executable_path: str, port: int = 0, service_args: Optional[List[str]] = None, log_path: Optional[str] = None, env: Optional[Mapping[str, str]] = None, start_error_message: Optional[str] = None)[source]¶ A Service class that is responsible for the starting and stopping the WebDriver instance of the ChromiumDriver.
Parameters: - executable_path – install path of the executable.
- 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.
- start_error_message – (Optional) Error message that forms part of the error when problems occur
launching the subprocess.