woocommerce-paypal-payments/tests/qa/utils/frontend/customer-account.ts
Sedat a956444602
Initial commit for QA folder
POM files created.
Visual tests moved to PCP repo.
Irrelevant files removed.
2025-02-05 16:40:30 +03:00

23 lines
396 B
TypeScript

/**
* External dependencies
*/
import { CustomerAccount as CustomerAccountBase } from '@inpsyde/playwright-utils/build';
/**
* Internal dependencies
*/
import { PayPalUI } from './paypal-ui';
export class CustomerAccount extends CustomerAccountBase {
ppui: PayPalUI;
constructor( { page, ppui } ) {
super( { page } );
this.ppui = ppui;
}
// Locators
// Actions
// Assertions
}