UNPKG

systelab-components-wdio-test

Version:
16 lines (15 loc) 344 B
import { Widget } from './widget.js'; export class InputField extends Widget { async clear() { return this.elem.clear(); } async setText(text) { return this.elem.write(text); } async getText() { return this.elem.getValue(); } async isEnabled() { return this.elem.isEnabled(); } }