Playwright_TS/Craft_Docs_Playwright/page-objects/HomePage.ts

16 lines
285 B
TypeScript
Raw Permalink Normal View History

2023-10-10 14:07:49 +00:00
import { Locator, Page, expect
} from "@playwright/test";
export class HomePage{
page: Page;
constructor(page: Page) {
this.page = page;
}
async gotoHome() {
await this.page.goto('https://www.craft.me/s/Gx2Rhh07iMKxyh');
return this;
}
}