-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Closed
Labels
C-nodejsJavaScript BindingsJavaScript BindingsD-edgeI-defectSomething is not working as intendedSomething is not working as intendedOS-windows
Description
Description
Trying to run Selenium with Edge using Selenium Manager.
Works with Chrome but fails on Microsoft Edge and when I have the version set to 140.
So its failing on downloading version 139.
On checking the logs, I think its trying to download the driver from the wrong location. It should be:
https://msedgedriver.microsoft.com/139.0.3405.125/edgedriver_win64.zip
Reproducible Code
driver = await new Builder()
.forBrowser('MicrosoftEdge')
.withCapabilities({
browserName: 'MicrosoftEdge',
browserVersion: '139' // replace with your desired version
})
.build();
Debugging Logs
Error: Unable to obtain browser driver.
For more information on how to install drivers see
https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location/. Error: Error executing command for C:\Users\______\VS_Code\selenium-automation\node_modules\selenium-webdriver\bin\windows\selenium-manager.exe with --browser,MicrosoftEdge,--language-binding,javascript,--output,json,--browser-version,139: MicrosoftEdge 139 cannot be downloaded
Metadata
Metadata
Assignees
Labels
C-nodejsJavaScript BindingsJavaScript BindingsD-edgeI-defectSomething is not working as intendedSomething is not working as intendedOS-windows