mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
23 lines
396 B
TypeScript
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
|
|
}
|