为什么 webdriverio 找不到元素?
Why webdriverio can't find element?
await this.browser.url(url);
await this.browser.pause(5000);
const link = await $('a');
它打开 URL 但在暂停后出现以下错误:
TypeError: Cannot read property 'isDevTools' of undefined
如何解决这个问题?
只需要使用$作为浏览器对象函数
const link = await this.browser.$('a');
await this.browser.url(url);
await this.browser.pause(5000);
const link = await $('a');
它打开 URL 但在暂停后出现以下错误:
TypeError: Cannot read property 'isDevTools' of undefined
如何解决这个问题?
只需要使用$作为浏览器对象函数
const link = await this.browser.$('a');