-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Description
Description
I'm encountering a WebDriverException when using selenium version 4.34.2 with Microsoft Edge on Windows.
selenium.common.exceptions.WebDriverException: Message: Unsuccessful command executed: c:\Users\pariv\source\repos\GitLab\kinton\venv_tgm2_3.13\Lib\site-packages\selenium\webdriver\common\windows\selenium-manager.exe --browser MicrosoftEdge --language-binding python --output json; code: 65 {'code': 65, 'message': 'error sending request for url (https://msedgedriver.azureedge.net/LATEST_RELEASE_138_WINDOWS)', 'driver_path': '', 'browser_path': ''}
Context:
It appears that the Edge driver CDN has moved from:
https://msedgedriver.azureedge.net/
to:
https://msedgedriver.microsoft.com/
Please confirm if this is a known change and whether a fix is already planned. Thank you!
Reproducible Code
options = EdgeOptions()
options.page_load_strategy = "eager"
webdriver.Edge(service=EdgeService(EdgeChromiumDriverManager().install()), options=options)
return webdriver.Edge(options=options)