You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A clear and concise description of what you expected to happen.
Test script or set of commands reproducing this issue
edgeOptions.AddAdditionalCapability(CapabilityType.EnableProfiling, true);
edgeOptions.AddAdditionalCapability("BrowserExecutableLocation", "C:\Program Files (x86)\Microsoft\Edge\Application\81.0.416.64\msedge.exe");
edgeOptions.AddAdditionalCapability("UseChromium", "true");
Please provide a test script to reproduce the issue you are reporting, if the
setup is more complex, GitHub repo links with are also OK.
Issues without a reproduction script are likely to stall and eventually be closed.
Environment
OS: Windoe 10
Browser: MS Edge
Browser version: 81.0.416.64
Browser Driver version: 81.0.416.64
Language Bindings version: jdk-14
Selenium Grid version (if applicable): checked both selenium-server-standalone-3.14.0, selenium-server-standalone-3.141.59
The text was updated successfully, but these errors were encountered:
MsEdge v80 and higher do not support ChromeOptions() anymore, you have to use EdgeOptions(). For java I do not know, but for python you need to use selenium 4.0.0a5 or newer.
In a comment from April 2020 [1], the Selenium maintainers said that
they would not support Chromium-based Edge in Selenium 3. They
instead suggested waiting for a stable version of Selenium 4.
However, as of December 2020, there is no release date in sight for
Selenium 4, Chromium-based Edge is the only version of Edge actively
supported by Microsoft since August 2020, and legacy Edge will reach
end-of-life status in March 2021 [2].
Thankfully, Generic WebDriver Server is generic enough to handle this
case. We can use it to configure Selenium 3 to respond to Edge and
use Microsoft's `msedgedriver.exe` as a backend executable.
See also SeleniumHQ/selenium#8993
[1]: SeleniumHQ/selenium#8237 (comment)
[2]: https://techcommunity.microsoft.com/t5/microsoft-365-blog/microsoft-365-apps-say-farewell-to-internet-explorer-11-and/ba-p/1591666
🐛 Bug Report
Unable to create new service: EdgeDriverService
To Reproduce
Detailed steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Test script or set of commands reproducing this issue
edgeOptions.AddAdditionalCapability(CapabilityType.EnableProfiling, true);
edgeOptions.AddAdditionalCapability("BrowserExecutableLocation", "C:\Program Files (x86)\Microsoft\Edge\Application\81.0.416.64\msedge.exe");
edgeOptions.AddAdditionalCapability("UseChromium", "true");
Please provide a test script to reproduce the issue you are reporting, if the
setup is more complex, GitHub repo links with are also OK.
Issues without a reproduction script are likely to stall and eventually be closed.
Environment
OS: Windoe 10
Browser: MS Edge
Browser version: 81.0.416.64
Browser Driver version: 81.0.416.64
Language Bindings version: jdk-14
Selenium Grid version (if applicable): checked both selenium-server-standalone-3.14.0, selenium-server-standalone-3.141.59
The text was updated successfully, but these errors were encountered: