跳至主要内容

custom$$

customs$$ 允许您使用通过 browser.addLocatorStrategy 声明的自定义策略。在选择器文档中阅读有关自定义选择器策略的更多信息。

用法
$(selector).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('myStrat', (selector) => {
return document.querySelectorAll(selector)
})

const pluginRowBlock = await browser.custom$('myStrat', '.pluginRowBlock')
const pluginWrapper = await pluginRowBlock.custom$$('myStrat', '.pluginWrapper')

console.log(pluginWrapper.length) // 4
})

欢迎!我怎样才能帮助您?

WebdriverIO AI Copilot