woocommerce-paypal-payments/tests/qa/utils/frontend/shop.ts

23 lines
390 B
TypeScript

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