Forum Discussion
Chromium Edge automation with selenium (best practice)
- Jul 18, 2019
johnjansen actually it do not open with the edge:
i installed Edge dev Version 77.0.211.3, and Edge Canary Version 77.0.218.4 too. And I use the Version: 77.0.219.0 driver. My test open chrome, not edge. I tried with chromeoption, with System.setProperty, but still. Can you help me what I do wrong? Thanks!
This problem is very probably related to the Microsoft Chromium Edge's version, before version 80, you can treat it like a chrome browser; but from version 80 you have to use EdgeDriver and EdgeOptions to handle it.
See my detail explanation at stackoverflow
https://stackoverflow.com/questions/59299282/how-to-remove-the-infobar-microsoft-edge-is-being-controlled-by-automated-test/60111307#60111307
thank u so much. I'm able to do navigate browser is there any possibility to use selenium 2.53 version or what are the versions support for selenium for this please give your solution
- johnjansenApr 06, 2020Iron Contributor
PraveenRaj13 did you try this?
options.AddUserProfilePreference("credentials_enable_service", false); options.AddUserProfilePreference("profile.password_manager_enabled", false);
-John
- PraveenRaj13Apr 06, 2020Copper ContributorHi dude
Any update on this issue - PraveenRaj13Apr 01, 2020Copper Contributor
Thank u john
we are getting struck with disable save password POP up .unable to disable this pop i tryed with below capabilities but its not working so kindly help us
edgeOptions.setExperimentalOption("credentials_enable_service", false);
edgeOptions.setExperimentalOption("profile.password_manager_enabled", false); - johnjansenMar 19, 2020Iron Contributor
PraveenRaj13 this article should be able to help you. It has information for different versions of Selenium and WebDriver, though 2.53 is too old - it does not have any knowledge of Microsoft Edge, unfortunately.
https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium
-John