跳至主要内容

custom$

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

用法
browser.custom$(strategyName, strategyArguments)
参数
名称类型详情
strategyName字符串
strategyArguments参数
示例
customStrategy.js
loading...
example.html
loading...
customStrategy.js
loading...
example.js
it('should fetch the project title', async () => {
await browser.url('https://webdriverio.node.org.cn')
browser.addLocatorStrategy('myStrat', (selector) => {
return document.querySelectorAll(selector)
})

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

console.log(await projectTitle.getText()) // WEBDRIVER I/O
})

欢迎!我如何帮助您?

WebdriverIO AI Copilot