feat(e2e): add fixtures and data seeding
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user