我是C#的新手,我正在使用Selenium Webdriver创建自动化工具。我想以编程方式使用c#更改IE中的保护模式设置。
任何人都可以根据您的建议帮助我。
还可以以编程方式更新注册表以实现此目的。
答案 0 :(得分:0)
var options = new InternetExplorerOptions
{
IntroduceInstabilityByIgnoringProtectedModeSettings = true
};
driver = new InternetExplorerDriver(path to the driver.exe", options)
{
/*
* open the supplied URL on the opened instance of the browser
*/
Url = "your url to open"
};