8 lines
229 B
TypeScript
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();
|
|
}
|
|
}
|