调用
您可以使用call
在测试规范中执行任何异步操作。它接受 Promise 并停止执行,直到 Promise 已解决。
信息
随着 WebdriverIO 不推荐使用同步用法(请参阅RFC),此命令不再非常有用。
用法
browser.call(callback)
参数
名称 | 类型 | 详情 |
---|---|---|
回调 | 函数 | 要调用的函数 |
示例
call.js
it('some testing here', async () => {
await browser.url('http://google.com')
// make an asynchronous call using any 3rd party library supporting promises
// e.g. call to backend or db to inject fixture data
await browser.call(() => {
return somePromiseLibrary.someMethod().then(() => {
// ...
})
})
// example for async call to 3rd party library that doesn't support promises
const result = await browser.call(() => {
return new Promise((resolve, reject) => {
someOtherNodeLibrary.someMethod(param1, (err, res) => {
if (err) {
return reject(err)
}
resolve(res)
})
})
})
});