el.xwx.moe/e2e/fixtures/base/dashboard-page.ts

11 lines
264 B
TypeScript
Raw Normal View History

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");
}
}