测试文件.js
var webdriverio = require('webdriverio');
var options = {
desiredCapabilities: {
browserName: 'firefox'
}
};
webdriverio
.remote(options)
.init()
.url('http://localhost/proj/index.php')
.moveToObject('div.media') // Move to DIV
.timeouts('implicit',6000) // Wait...
.saveScreenshot('./snapshot1.png') // Take Screenshot
.end();
.timeouts
没有效果。屏幕截图几乎是在 moveToObject 之后立即拍摄的,无论我选择使用哪个参数调用.timeouts(['scrip'|'implicit'|'page load'], ms).
。
我也得到与回调函数相同的结果:
.timeouts('implicit',6000).then(function(){
this.timeouts('implicit',6000)
}
有什么建议么?