0

测试文件.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)
}

有什么建议么?

4

1 回答 1

2

延迟队列执行使用pause而不是timeouts

http://webdriver.io/api/utility/pause.html

于 2015-11-18T03:55:22.030 回答