5db4e9a491
A basic test for each of the menu areas fixes TLD-2251 - [x] `tests` — Changes to any test code only[^2] ### Release Notes - Add a brief release note for your PR here. --------- Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { Locator, Page } from '@playwright/test'
|
|
|
|
export class PageMenu {
|
|
readonly pagemenuButton: Locator
|
|
readonly header: Locator
|
|
|
|
constructor(public readonly page: Page) {
|
|
this.page = page
|
|
this.pagemenuButton = this.page.getByTestId('page-menu.button')
|
|
this.header = this.page.getByRole('dialog').getByText('Pages')
|
|
}
|
|
}
|