mirror of
https://github.com/jcreek/AutomatedAssessmentFeedbackAgent.git
synced 2026-07-12 18:43:49 +00:00
13 lines
230 B
TypeScript
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/');
|
|
}
|
|
}
|