feat(e2e): add fixtures and data seeding

This commit is contained in:
QAComet
2024-04-21 17:16:30 -06:00
parent cd09843b99
commit ce7a94e492
8 changed files with 179 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Locator, Page } from "playwright";
import { BasePage } from "./page";
export class DashboardPage extends BasePage {
container: Locator;
constructor(page: Page) {
super(page);
this.container = this.page.getByTestId("dashboard-wrapper");
}
}