Some checks are pending
Playwright Tests / test (push) Waiting to run
init test test test 划分美管加、慧来客、智荟宝项目 新增美管加demo 新增npm命令 测试智荟宝 test test ii csv test init test test init init
13 lines
300 B
JavaScript
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);
|
|
},
|
|
});
|