selenium.webdriver.edge.service¶
Classes
Service (executable_path, port, verbose, …) |
A Service class that is responsible for the starting and stopping of msedgedriver. |
-
class
selenium.webdriver.edge.service.
Service
(executable_path: str = 'msedgedriver', port: int = 0, verbose: bool = False, log_path: Optional[str] = None, service_args: Optional[List[str]] = None, env: Optional[Mapping[str, str]] = None)[source]¶ A Service class that is responsible for the starting and stopping of msedgedriver.
Parameters: - executable_path – install path of the msedgedriver executable, defaults to msedgedriver.
- port – Port for the service to run on, defaults to 0 where the operating system will decide.
- verbose – (Deprecated) Whether to make the webdriver more verbose (passes the –verbose option to the binary). Defaults to False.
- log_path – (Optional) String to be passed to the executable as –log-path.
- 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.