* feat: video recorder on failures * feat: fixture for sample page class * feat: video recorder on failures * feat: fixture for sample page class * feat: video recorder on failures * feat: fixture for sample page class * feat: Apply Screenshot on failures * feat: set timeout by default * chore: clean up import * feat: video recorder on failures * feat: fixture for sample page class * feat: add wait for app update * chore: correct timeout * chore: correct timeout * chore: test timeout * chore: test timeout * chore: test timeout * chore: browser context config * chore: temporally disable the video recorder to bypass issue
16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
import { Page } from '@playwright/test'
|
|
import { BasePage } from './basePage'
|
|
import { CommonActions } from './commonActions'
|
|
|
|
export class HubPage extends BasePage {
|
|
readonly menuId: string = 'Hub'
|
|
static readonly containerId: string = 'hub-container-test-id'
|
|
|
|
constructor(
|
|
public page: Page,
|
|
readonly action: CommonActions
|
|
) {
|
|
super(page, action, HubPage.containerId)
|
|
}
|
|
}
|