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

26 lines
413 B
TypeScript

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