首页 > 代码库 > 自动化测试:IE保护模式问题
自动化测试:IE保护模式问题
问题报错信息:
Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled) for all zones. (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 1.17 seconds
可在IE选项中修改,如图:
或可以修改代码,在代码中加入
DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS,true);
很多人测试IE的时候 总是把那个勾选取消 ie不停的提示 取消本来就不合理的 应该通过代码的方式解决。
以上问题及解决方案转自讨论群。
自动化测试:IE保护模式问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。