如何以编程方式关闭IE's保护模式
本文关键字:保护 模式 IE 编程 方式关 | 更新日期: 2023-09-27 18:16:13
我是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"
};