No Selenium.WebDriver.MSEdgeDriver for Edge browser version 137 and 138
Dear Owners,
The driver versions for Edge browser version 137 and 138 are not existing yet, however these versions are already on the market. Our company policy automatically updates the browsers on our test machine to the latest version, and that's why all tests fail until the driver of proper version is existing.
Could you launch the drivers of new versions, please?
Thanks in advance, [email protected]
Hi @michasanyi , you may find the latest version of msedgedriver in this link: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/?form=MA13LH
Hi guangyuexu, Thanks for your quick answer. In our continuous integration the web drivers are downloaded with NuGet restore step. I'm afraid of that the location you adviced is not eligible for that purpose.
Guangyue Xu @.***> ezt írta (időpont: 2025. jún. 27., P 20:14):
guangyuexu left a comment (MicrosoftEdge/EdgeWebDriver#199) https://github.com/MicrosoftEdge/EdgeWebDriver/issues/199#issuecomment-3013992015
Hi @michasanyi https://github.com/michasanyi , you may find the latest version of msedgedriver in this link: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/?form=MA13LH
— Reply to this email directly, view it on GitHub https://github.com/MicrosoftEdge/EdgeWebDriver/issues/199#issuecomment-3013992015, or unsubscribe https://github.com/notifications/unsubscribe-auth/AE6MRRLZRINQMH5AUGYQ2WT3FWCYRAVCNFSM6AAAAACAIR3G2KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTAMJTHE4TEMBRGU . You are receiving this because you were mentioned.Message ID: @.***>
Hi @michasanyi , Selenium.WebDriver.MSEdgeDriver is not maintained by Microsoft. You may reach out to the owner of the package to update the binaries.
I am getting a similar error.
jul 18, 2025 9:41:18 A. M. org.openqa.selenium.manager.SeleniumManager lambda$runCommand$1
ADVERTENCIA: There was an error managing msedgedriver (error sending request for url (https://msedgedriver.azureedge.net/LATEST_RELEASE_138_WINDOWS)); using driver found in the cache
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created: This version of Microsoft Edge WebDriver only supports Microsoft Edge version 135
Current browser version is 138.0.3351.95 with binary path C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe
Host info: host: 'DUMMY', ip: '0.0.0.0'
Build info: version: '4.34.0', revision: '707dcb4246*'
System info: os.name: 'Windows 11', os.arch: 'amd64', os.version: '10.0', java.version: '22.0.1'
Driver info: org.openqa.selenium.edge.EdgeDriver
Command: [null, newSession {capabilities=[Capabilities {browserName: MicrosoftEdge, ms:edgeOptions: {args: [], binary: C:\Program Files (x86)\Micr..., extensions: []}}]}]
I had a similar issue where my Selenium.WebDriver only supported Edge 134. I was able to work around it by downloading the edge driver from Microsoft. I placed the exe in a local directory to test. The Selenium.WebDriver is able to load Chrome 138 now.
You can specify the folder to load the edge driver:
var options = new EdgeOptions();
var service = EdgeDriverService.CreateDefaultService(@"C:\EdgeDriver");
using(var driver = new EdgeDriver(service, options))
I had a similar issue where my Selenium.WebDriver only supported Edge 134. I was able to work around it by downloading the edge driver from Microsoft. I placed the exe in a local directory to test. The Selenium.WebDriver is able to load Chrome 138 now.
You can specify the folder to load the edge driver:
var options = new EdgeOptions(); var service = EdgeDriverService.CreateDefaultService(@"C:\EdgeDriver"); using(var driver = new EdgeDriver(service, options))
Yes, this is a good workaround, but I think Selenium.WebDriver should support the latest version of Edge.
I am facing this is issue where I am running the code in AWS server the edge is in 139 version by I am not able to find where to update the Can anyone help please Mail - [email protected]