This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
playwright-demo/tests/mgj/fixture/customerFixture.js
2024-10-21 11:49:04 +08:00

13 lines
300 B
JavaScript

import { test as base } from './base';
import { CustomerPage } from '../pom/customerPage';
export const test = base.extend({
/**
* @type {CustomerPage}
*/
customerPage: async ({ mgjPage }, use) => {
const customerPage = new CustomerPage(mgjPage);
await use(customerPage);
},
});