кликабельно

const assert = require('assert')

describe('v5.webdriver.io', () => {

    it('should demonstrate if element is clickable', async () => {

        browser.url('https://v5.webdriver.io')

        const helpButton = await $('[href="/help.html"]')
        let clickable  = await helpButton.isClickable();
        
        console.log('IS CLICKABLE:' + clickable );  // false or true

        
    }) 

})
Vivacious Vicuña