datalens-ui/tests/page-objects/common/abstract/TextInputElementPO.ts
2026-06-24 20:31:05 +05:00

8 lines
198 B
TypeScript

import {ElementPO} from './ElementPO';
export class TextInputElementPO extends ElementPO {
async fill(text: string) {
await this.page.fill(`${this.getSelector()} input`, text);
}
}