Then('I click on link {string} the async way', function async (selector) {
    let promise = browser.click(selector)
    assert.equal(typeof promise.then, 'function')
    return promise
})