Skip to main content

custom$

The custom$ allows you to use a custom strategy declared by using browser.addLocatorStrategy

Usage
$(selector).custom$(strategyName, strategyArguments)
Parameters
NameTypeDetails
strategyNamestring
strategyArgumentsparam
Example
example.js
it('should fetch the project title', async () => {
await browser.url('https://webdriver.io')
await browser.addLocatorStrategy('myStrat', (selector) => {
return document.querySelectorAll(selector)
})

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

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