custom$
The custom$ allows you to use a custom strategy declared by using browser.addLocatorStrategy
Usage
browser.custom$(strategyName, strategyArguments)
Parameters
| Name | Type | Details | 
|---|---|---|
| strategyName | String | |
| strategyArguments | Any | 
Example
it('should fetch the project title', () => {
    browser.url('https://webdriver.io')
    browser.addLocatorStrategy('myStrat', (selector) => {
        return document.querySelectorAll(selector)
    })
    const projectTitle = browser.custom$('myStrat', '.projectTitle')
    console.log(projectTitle.getText()) // WEBDRIVER I/O
})