Playwright_Java_Web_Testing/page-objects/MyAccountPage.js

14 lines
329 B
JavaScript

export class MyAccountPage {
constructor(page) {
this.page = page
this.myAccountHeader = page.getByRole('heading', { name: 'My Account' })
}
visit = async () => {
await this.page.goto("/my-account")
}
checkForLogin = async () => {
await this.myAccountHeader.waitFor()
}
}