Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incompatibility Between Microsoft Edge WebDriver and Browser Version #145

Open
helderbrito opened this issue May 24, 2024 · 2 comments
Open
Labels
bug Something isn't working

Comments

@helderbrito
Copy link

Description:
I am experiencing an incompatibility issue between the version of Microsoft Edge WebDriver and the version of the Microsoft Edge browser.

Error Details:
This error occurs because the version of Microsoft Edge WebDriver that my application is using only supports Microsoft Edge version 123, but the current browser version is 125.0.2535.51.

@helderbrito helderbrito added the bug Something isn't working label May 24, 2024
@pruembeli
Copy link

I have the same issue, the system where the automated Test is running is offline and the msedgedriver.exe is deployed with a C# project. When MSEdge gets updated (not under my control) the Driver and Browser are not matching anymore and the Tests will fail.
We need a "disableVersionCheck" flag to stay for longer time with the same driver.

@pruembeli
Copy link

The Flag exists and I got it running without version check exception like this:

`var service = EdgeDriverService.CreateDefaultService(localPath);
service.DisableBuildCheck = true;

var options = new EdgeOptions();
options.AddArgument("--allow-running-insecure-content");
options.AddArgument("--ignore-certificate-errors");

var driver = new EdgeDriver(service, options);`

I tried it before with option "--disable-build-check" but that didn't work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants