systelab-components-wdio-test
Version:
Widgets to be use in the E2E Tests based in WDIO
14 lines (13 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Label = void 0;
const widget_js_1 = require("./widget.js");
class Label extends widget_js_1.Widget {
async getText() {
return this.elem.getText();
}
async click() {
await this.elem.click();
}
}
exports.Label = Label;