mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
14 lines
218 B
TypeScript
14 lines
218 B
TypeScript
import { Page } from '@playwright/test';
|
|
|
|
export class AbstractPage {
|
|
readonly page: Page;
|
|
|
|
constructor(page: Page) {
|
|
this.page = page;
|
|
}
|
|
|
|
async wait(time) {
|
|
await this.page.waitForTimeout(time);
|
|
}
|
|
}
|