跳至主要内容

清空

重置存储在mock.calls数组中的所有信息。

用法
mock.clear()
示例
clear.js
it('should clear mock', async () => {
const mock = await browser.mock('https://google.com/')
await browser.url('https://google.com')

console.log(mock.calls.length) // returns 1
mock.clear()
console.log(mock.calls.length) // returns 0
})

欢迎!我如何帮助您?

WebdriverIO AI Copilot