我有一个完美的描述与相匹配的问题,我不能够识别角2应用程序中使用量角器元素 ,但对我来说,问题不是由id的值之前添加#固定
这是下面的代码:
When('I select my input box', (callback) => {
let inputbox = element(by.css('#roomWidthInput'));
console.log('inputBox promise set');
var scrpt = "return document.getElementById('roomWidthInput');";
browser.executeScript(scrpt).then(function (text) {
console.log('info', 'Script is: ' + scrpt);
});
inputbox.isPresent().then(function(isElementVisible) {
console.log('hello!');
expect(isElementVisible).to.be.true;
callback();
});
});
控制台日志:
- 输入框承诺集
- 信息脚本是:返回的document.getElementById( 'roomWidthInput');
然后它抛出错误:后5000毫秒功能超时。
我一直在使用也试图by.id
定位完全相同的结果。
任何帮助将不胜感激,谢谢。
你的问题是与不管protractor can't find element
,这是由于你的步骤定义函数的执行持续时间超过默认的超时时间:5秒。
您应该更改如下默认的超时时间:
黄瓜3及以上
// supports/timeout.js
var { setDefaultTimeout } = require("cucumber");
setDefaultTimeout(60 * 1000);
上述黄瓜2,但比黄瓜3下
// supports/timeout.js
var {defineSupportCode} = require('cucumber');
defineSupportCode(function({setDefaultTimeout}) {
setDefaultTimeout(60 * 1000);
});
黄瓜1根,下
// supports/timeout.js
module.exports = function() {
this.setDefaultTimeout(60 * 1000);
};
在量角器conf.js
,添加timeout.js到cucumberOpts.require:
// set allScriptsTimeout to fix asynchronous Angular tasks to finish after 11 seconds
allScriptsTimeout: 600 * 1000,
cucumberOpts: {
require: [
"supports/timeout.js",
]
},
onPrepare: function() {
// add this when page opened by browser.get() is not angular page
browser.ignoreSynchronization = true;
}
文章来源: Cucumber Protractor times out after using then() on elements selected using Protractors element function