mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-07 14:19:18 +00:00
15 lines
No EOL
333 B
TypeScript
15 lines
No EOL
333 B
TypeScript
import { Page } from '@playwright/test'
|
|
import { BaserowPage } from "./baserowPage"
|
|
import { Sidebar } from "../components/sidebar";
|
|
|
|
export class DashboardPage extends BaserowPage {
|
|
readonly pageUrl = `dashboard`
|
|
readonly sidebar: Sidebar
|
|
|
|
constructor(page: Page) {
|
|
super(page)
|
|
this.sidebar = new Sidebar(page)
|
|
}
|
|
|
|
|
|
} |