如何以非管理员身份打开IE webdriver实例?

时间:2018-03-03 02:47:19

标签: selenium-webdriver

我使用工具调用以下方法来启动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);

该工具必须使用管理员打开,因此在此方法运行后,浏览器也会以管理员身份打开,但是如果以管理员身份打开浏览器,我需要访问的网站无效。

有没有办法以非管理员身份启动浏览器?

0 个答案:

没有答案