@vibe/testkit
Version:
Vibe e2e testing toolkit
21 lines • 683 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Text = void 0;
const BaseElement_1 = require("./BaseElement");
/**
* Class representing a Text element.
* Extends the BaseElement class.
*/
class Text extends BaseElement_1.BaseElement {
/**
* Create a Text element.
* @param {Page} page - The Playwright page object.
* @param {Locator} locator - The locator for the Text element.
* @param {string} elementReportName - The name for reporting purposes.
*/
constructor(page, locator, elementReportName) {
super(page, locator, elementReportName);
}
}
exports.Text = Text;
//# sourceMappingURL=Text.js.map