暂停
暂停执行一段时间。建议不要使用此命令来等待元素出现。为了避免测试结果不稳定,最好使用waitForExist
或其他 waitFor* 命令。
用法
browser.pause(milliseconds)
参数
名称 | 类型 | 详情 |
---|---|---|
毫秒 | 数字 | 以毫秒为单位的时间 |
示例
pause.js
it('should pause the execution', async () => {
const starttime = new Date().getTime()
await browser.pause(3000)
const endtime = new Date().getTime()
console.log(endtime - starttime) // outputs: 3000
});