使用selenium时,如果选中某些选项(保护模式设置..)并且某些选项未选中,则可以在selenium中运行脚本。 或者是否有任何替代方法可以破坏保护模式安全性,以使运行在使用selenium的IE浏览器中运行。 在我的情况下,保护模式设置处于禁用模式i,我们无法改变已经完成的设置??
答案 0 :(得分:0)
您尚未提及 Internet Explorer
版本信息。文档明确提到:
<强>
"Enhanced Protected Mode" must be disabled for IE 10 and higher. This option is found in the Advanced tab of the Internet Options dialog.
强>
此外,您需要将 InternetExplorerDriver
与 ignoreProtectedModeSettings
设置为 1
进行配置或 0
至 DesiredCapabilities 类如下:
cap.setCapability("ignoreProtectedModeSettings",1);
OR
cap.setCapability("ignoreProtectedModeSettings",0);