edge-selenium-tools
edge-selenium-tools copied to clipboard
IE Support Mode Not Navigating When Opening App As Administrator
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.