2026-06-24 21:10:34 +05:00

8 lines
229 B
TypeScript

import {ElementPO} from './ElementPO';
export class RadioGroupElementPO extends ElementPO {
async selectByName(name: string) {
await this.page.locator(`${this.getSelector()} input[value="${name}"]`).click();
}
}