Philipp
Philipp
I have the same effect. Hangfire.Console 1.4.2 and Hangfire 1.7.28
Sorry I am not at this issue anymore (it was ignored in the end), but what I noticed was that it has something todo with certificates. On some systems (client/and...
The Edge browser is getting an update like every week, the driver should be more tolerant and accept all version until a breaking change happened - or add a "ignoreVersion"...
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 created a project in dotnet 9 with "dotnet new webapi" and tried to add webjobs and failed with 'WebApplicationBuilder' does not contain a definition for 'ConfigureWebJobs' Is there a...
I have the same/similar issue, client machine is connected via ZScaler Proxy, I created a ".npmrc" file with "proxy", "http-proxy" and "https-proxy" values pointing to the proxy, I used "scrict-ssl=false"....
Thanks for the reply, yes I can open the link in the browser because the browser is working with the proxy settings from windows, the page opens but the certificate...
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...
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...