我尝试在IE11上运行量角器,我继续得到这个失败者:
E / launcher - 启动Internet Explorer时出现意外错误。保护模式设置对于所有区域都不相同。必须将启用保护模式设置为所有区域的相同值(启用或禁用)。
我确实为所有区域设置了资源管理器,但仍然出现此错误。
我的conf.js文件是:
exports.config = {
// The address of a running selenium server.
seleniumAddress: 'http://localhost:4444/wd/hub',
// Capabilities to be passed to the webdriver instance.
capabilities: {
browserName: 'internet explorer'
},
// Spec patterns are relative to the configuration file location passed
// to protractor (in this example conf.js).
// They may include glob patterns.
specs: ['todo-spec.js'],
// Options to be passed to Jasmine-node.
jasmineNodeOpts: {
showColors: true, // Use colors in the command line report.
}
};
请帮助。 振荡
答案 0 :(得分:0)
尝试包含以下功能:
capabilities: {
...
"ignoreProtectedModeSettings": true
}
答案 1 :(得分:0)
转到工具 - >互联网选项 - >安全选项卡并将所有区域设置为相同的保护模式(可以启用或禁用)。