所有区域的保护模式设置都不相同。在Internet Explorer中使用量角器执行应用程序时,必须将“启用保护模式”设置为相同的错误。但是,我的公司不允许我们在IE浏览器中更改安全设置。请找到我的conf.js文件代码。 //一个示例配置文件。
exports.config = {
//directConnect: true,
// The address of a running selenium server.
// seleniumAddress: 'http://192.168.31.203:51845/wd/hub',
seleniumAddress: 'http://localhost:4444/wd/hub',
//'autoStartStopServer': true,
//'seleniumAddress' : 'http://hub.browserstack.com/wd/hub',
// Capabilities to be passed to the webdriver instance.
capabilities: {
'browserName': 'internet explorer',
INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS: true,
ensureCleanSession:'true',
ignoreProtectedModeSettings: 'true',
platform: 'ANY'
},
// Framework to use. Jasmine is recommended.
framework: 'jasmine',
// Spec patterns are relative to the current working directory when
// protractor is called.
specs: ['zoo_spec.js'],
// Options to be passed to Jasmine.
jasmineNodeOpts: {
//showColors: true,
//silent: true,
defaultTimeoutInterval: 60000,
//print: function () { }
},
};
我也尝试为FLAKINESS添加属性,但是它不接受它并给出错误。 让我知道是否有人可以提供帮助。