rallly/apps/web/tests/edit-options-page.ts
Luke Vella c22b3abc4d
⬆️ v3.0.0 (#704)
2023-06-19 17:17:00 +01:00

9 lines
225 B
TypeScript

import { Page } from "@playwright/test";
export class EditOptionsPage {
constructor(public readonly page: Page) {}
async switchToSpecifyTimes() {
await this.page.click("[data-testid='specify-times-switch']");
}
}