跳至主要内容

暂停

暂停执行一段时间。建议不要使用此命令来等待元素出现。为了避免测试结果不稳定,最好使用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
});

欢迎!我怎样才能帮助您?

WebdriverIO AI Copilot