Summary
The current implementation of webdriver-manager fails to download the Edge driver because it still tries to access the outdated CDN:
https://msedgedriver.azureedge.net/
This domain is no longer available. Microsoft has officially migrated to:
https://msedgedriver.microsoft.com/
Steps to Reproduce
- Use
EdgeChromiumDriverManager().install() in any script.
- Run the script.
- The request to
azureedge.net fails with a ConnectionError.
Environment
- OS: Windows 10 / 11
- webdriver-manager version: 4.0.2
- Edge version: 138.0.x.x
- Python version: 3.x
Expected Behavior
The manager should automatically use the new Microsoft CDN:
https://msedgedriver.microsoft.com/
Suggested Fix
Update the internal references to point to the new domain, as recommended by Microsoft:
https://learn.microsoft.com/en-us/microsoft-edge/webdriver-chromium/#download-and-install
Additional Notes
Microsoft support has confirmed this is expected behavior due to the CDN migration. Please update the download logic to reflect this change.
Thanks!
Summary
The current implementation of
webdriver-managerfails to download the Edge driver because it still tries to access the outdated CDN:https://msedgedriver.azureedge.net/
This domain is no longer available. Microsoft has officially migrated to:
https://msedgedriver.microsoft.com/
Steps to Reproduce
EdgeChromiumDriverManager().install()in any script.azureedge.netfails with aConnectionError.Environment
Expected Behavior
The manager should automatically use the new Microsoft CDN:
https://msedgedriver.microsoft.com/
Suggested Fix
Update the internal references to point to the new domain, as recommended by Microsoft:
https://learn.microsoft.com/en-us/microsoft-edge/webdriver-chromium/#download-and-install
Additional Notes
Microsoft support has confirmed this is expected behavior due to the CDN migration. Please update the download logic to reflect this change.
Thanks!