You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.6 KiB
Python

# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import typing
import warnings
from selenium.webdriver.chromium import service
DEFAULT_EXECUTABLE_PATH = "msedgedriver"
class Service(service.ChromiumService):
"""A Service class that is responsible for the starting and stopping
of `msedgedriver`.
:param executable_path: install path of the msedgedriver executable, defaults to `msedgedriver`.
:param port: Port for the service to run on, defaults to 0 where the operating system will decide.
:param verbose: (Deprecated) Whether to make the webdriver more verbose (passes the --verbose option to the binary).
Defaults to False.
:param log_path: (Optional) String to be passed to the executable as `--log-path`.
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
"""
def __init__(
self,
executable_path: str = DEFAULT_EXECUTABLE_PATH,
port: int = 0,
verbose: bool = False,
log_path: typing.Optional[str] = None,
service_args: typing.Optional[typing.List[str]] = None,
env: typing.Optional[typing.Mapping[str, str]] = None,
):
self.service_args = service_args or []
if verbose:
warnings.warn(
"verbose=True is deprecated. Use `service_args=['--verbose', ...]` instead.",
DeprecationWarning,
stacklevel=2,
)
self.service_args.append("--verbose")
super().__init__(
executable_path=executable_path,
port=port,
service_args=service_args,
log_path=log_path,
env=env,
start_error_message="Please download from https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/",
)