2026-06-24 20:31:05 +05:00

8 lines
199 B
TypeScript

import {ElementPO} from './ElementPO';
export class CheckboxElementPO extends ElementPO {
async toggle(enabled?: boolean) {
await this.getLocator().setChecked(Boolean(enabled));
}
}