Webdriverio文档可以选择按文本查找元素,例如:
<a href="https://webdriver.io">WebdriverIO</a>
const link = $('=WebdriverIO')
但是,当我放入$('=WebdriverIO')
浏览器控制台时,我得到:
VM2375:1 Uncaught DOMException: Failed to execute '$' on 'CommandLineAPI': '=WebdriverIO' is not a valid selector.
at <anonymous>:1:1
为什么即使此选择器在我的 wdio 自动化测试中工作,我也会在控制台中收到错误?