我使用工具调用以下方法来启动IE实例。
string driverPath = path
InternetExplorerDriverService service =
InternetExplorerDriverService.CreateDefaultService(@driverPath);
service.HideCommandPromptWindow = true;
InternetExplorerOptions options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
options.EnablePersistentHover = false;
driver = new InternetExplorerDriver(service, options);
该工具必须使用管理员打开,因此在此方法运行后,浏览器也会以管理员身份打开,但是如果以管理员身份打开浏览器,我需要访问的网站无效。
有没有办法以非管理员身份启动浏览器?