UNPKG

systelab-components-wdio-test

Version:
13 lines (12 loc) 313 B
import { Widget } from './widget.js'; export class Button extends Widget { async click() { await this.elem.click(); } async isClickable() { return this.elem.isClickable(); } async waitUntilClickable(timeout = 500) { return this.elem.waitToBeClickable(timeout); } }