• Bug#1033787: marked as done (unblock: python-selenium/4.8.3+dfsg-1) (2/

    From Debian Bug Tracking System@21:1/5 to All on Wed Apr 12 21:30:01 2023
    [continued from previous message]

    +++ python-selenium-4.8.3+dfsg/selenium/webdriver/edge/service.py 2023-03-24 19:05:50.000000000 +0100
    @@ -43,6 +43,7 @@
    log_path: typing.Optional[str] = None,
    service_args: typing.Optional[typing.List[str]] = None,
    env: typing.Optional[typing.Mapping[str, str]] = None,
    + **kwargs,
    ) -> None:
    self.service_args = service_args or []

    @@ -61,4 +62,5 @@
    log_path=log_path,
    env=env,
    start_error_message="Please download from https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/",
    + **kwargs,
    )
    diff -Nru python-selenium-4.8.2+dfsg/selenium/webdriver/edge/webdriver.py python-selenium-4.8.3+dfsg/selenium/webdriver/edge/webdriver.py
    --- python-selenium-4.8.2+dfsg/selenium/webdriver/edge/webdriver.py 2023-02-18 00:17:10.000000000 +0100
    +++ python-selenium-4.8.3+dfsg/selenium/webdriver/edge/webdriver.py 2023-03-24 19:05:50.000000000 +0100
    @@ -30,9 +30,8 @@
    class WebDriver(ChromiumDriver):
    """Controls the Microsoft Edge driver and allows you to drive the browser.

    - You will need to download the MSEdgeDriver (Chromium) executable
    - from https://developer.microsoft.com/en-us/microsoft-
    - edge/tools/webdriver/
    + You will need to download the MSEdgeDriver executable from
    + https://developer.microsoft.com/microsoft-edge/tools/webdriver/
    """

    def __init__(
    diff -Nru python-selenium-4.8.2+dfsg/selenium/webdriver/firefox/service.py python-selenium-4.8.3+dfsg/selenium/webdriver/firefox/service.py
    --- python-selenium-4.8.2+dfsg/selenium/webdriver/firefox/service.py 2023-02-18 00:17:10.000000000 +0100
    +++ python-selenium-4.8.3+dfsg/selenium/webdriver/firefox/service.py 2023-03-24 19:05:50.000000000 +0100