edge-selenium-tools icon indicating copy to clipboard operation
edge-selenium-tools copied to clipboard

IE Support Mode Not Navigating When Opening App As Administrator

Open KFKMan opened this issue 1 year ago • 0 comments

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.

KFKMan avatar Aug 13 '24 14:08 KFKMan