mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-30 10:46:35 +02:00
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import type { Page } from "@playwright/test";
|
|
|
|
export class EditOptionsPage {
|
|
constructor(public readonly page: Page) {}
|
|
|
|
async switchToSpecifyTimes() {
|
|
await this.page.click("[data-testid='specify-times-switch']");
|
|
}
|
|
}
|