Files
2025-04-24 10:02:33 +01:00

13 lines
230 B
TypeScript

import type { Page } from '@playwright/test';
export class HomePage {
readonly page: Page;
constructor(page: Page) {
this.page = page;
}
async navigateTo() {
await this.page.goto('http://localhost:5173/');
}
}