如何使用 webdriver-io 查找与多个数据属性匹配的元素?

How to find an element with webdriver-io that matches multiple data- attributes?

webdriverio docs for $ or findElement 没有那么广泛,我习惯于使用其他 e2e 工具,因此很困惑,要找到一个具有我想要实现的两个属性的元素:

const element = $('[title="HOW TO USE?", data-text="HOW TO USE?"]');

这是正确的语法吗?

WEBDRIVERIO 版本:5.6.6

请按以下方式尝试。

常量元素 = $('[title="如何使用?"][data-text="如何使用?"]');