UNPKG

systelab-components-wdio-test

Version:
10 lines (9 loc) 210 B
import { Widget } from './widget.js'; export class Checkbox extends Widget { async toggle() { return this.elem.click(); } async isSelected() { return this.elem.isSelected(); } }