我是C#的新手,正在使用Selenium Webdriver创建自动化工具。我想使用c#以编程方式更改IE中的保护模式设置。
任何人都可以通过您的建议帮助我。
也可以通过编程方式更新注册表以实现此目的。
最佳答案
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"
};
关于c# - 如何以编程方式关闭IE的保护模式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32976142/