custom$$
customs$$
允许您使用通过 browser.addLocatorStrategy
声明的自定义策略。在选择器文档中阅读有关自定义选择器策略的更多信息。
用法
browser.custom$$(strategyName, strategyArguments)
参数
名称 | 类型 | 详情 |
---|---|---|
strategyName | 字符串 | |
strategyArguments | 参数 |
示例
example.js
it('should get all the plugin wrapper buttons', async () => {
await browser.url('https://webdriverio.node.org.cn')
await browser.addLocatorStrategy('myStrategy', (selector) => {
return document.querySelectorAll(selector)
})
const pluginWrapper = await browser.custom$$('myStrategy', '.pluginWrapper')
console.log(await pluginWrapper.length) // 4
})