microsoft / edge-selenium-tools

An updated EdgeDriver implementation for Selenium 3 with newly-added support for Microsoft Edge (Chromium).
https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
Apache License 2.0
88 stars 24 forks source link

IE Support Mode Not Navigating When Opening App As Administrator #70

Open KFKMan opened 1 month ago

KFKMan commented 1 month ago
InternetExplorerOptions edgeOptions = new();
edgeOptions.EnsureCleanSession = true;

InternetExplorerDriver Driver = new(edgeOptions);
Driver.Manage().Window.Maximize();
Console.WriteLine($"Target => {configuration.GetTargetURL()}");
Driver.Navigate().GoToUrl(configuration.GetTargetURL());
Driver.WaitTillPageLoad(15);
..........

it's opening browser but not navigating or other tasks. There is no problem when not opening app as administrator.