Playwright_Java_Web_Testing/page-objects/MyAccountPage.js

10 lines
194 B
JavaScript

export class MyAccountPage {
constructor(page) {
this.page = page
}
visit = async () => {
await this.page.goto("/my-account")
await this.page.pause()
}
}