woocommerce/plugins/woocommerce-blocks/tests/utils/shopper.js

164 lines
3.9 KiB
JavaScript
Raw Normal View History

/**
* External dependencies
*/
import {
shopper as wcShopper,
uiUnblocked,
SHOP_CART_PAGE,
} from '@woocommerce/e2e-utils';
/**
* Internal dependencies
*/
import { getBlockPagePermalink } from './get-block-page-permalink';
import { SHOP_CART_BLOCK_PAGE, SHOP_CHECKOUT_BLOCK_PAGE } from './constants';
export const shopper = {
...wcShopper,
goToCheckoutBlock: async () => {
await page.goto( SHOP_CHECKOUT_BLOCK_PAGE, {
waitUntil: 'networkidle0',
} );
},
goToCartBlock: async () => {
await page.goto( SHOP_CART_BLOCK_PAGE, {
waitUntil: 'networkidle0',
} );
},
productIsInCheckoutBlock: async ( productTitle, quantity, total ) => {
// Make sure Order summary is expanded
const [ button ] = await page.$x(
`//button[contains(@aria-expanded, 'false')]//span[contains(text(), 'Order summary')]`
);
if ( button ) {
await button.click();
}
await expect( page ).toMatchElement( 'span', {
text: productTitle,
} );
await expect( page ).toMatchElement(
'div.wc-block-components-order-summary-item__quantity',
{
text: quantity,
}
);
await expect( page ).toMatchElement(
'span.wc-block-components-product-price__value',
{
text: total,
}
);
},
goToBlockPage: async ( title ) => {
await page.goto( await getBlockPagePermalink( title ), {
waitUntil: 'networkidle0',
} );
await expect( page ).toMatchElement( 'h1', { text: title } );
},
block: {
goToCart: async () => {
await page.goto( SHOP_CART_BLOCK_PAGE, {
waitUntil: 'networkidle0',
} );
},
goToCheckout: async () => {
await page.goto( SHOP_CHECKOUT_BLOCK_PAGE, {
waitUntil: 'networkidle0',
} );
},
/**
* For some reason "wcShopper.emptyCart" sometimes result in an error, but using the same
* implementation here fixes the problem.
*/
emptyCart: async () => {
await page.goto( SHOP_CART_PAGE, {
waitUntil: 'networkidle0',
} );
// Remove products if they exist
if ( ( await page.$( '.remove' ) ) !== null ) {
let products = await page.$$( '.remove' );
while ( products && products.length > 0 ) {
await page.click( '.remove' );
await uiUnblocked();
products = await page.$$( '.remove' );
}
}
// Remove coupons if they exist
if ( ( await page.$( '.woocommerce-remove-coupon' ) ) !== null ) {
await page.click( '.woocommerce-remove-coupon' );
await uiUnblocked();
}
await page.waitForSelector( '.woocommerce-info' );
// eslint-disable-next-line jest/no-standalone-expect
await expect( page ).toMatchElement( '.woocommerce-info', {
text: 'Your cart is currently empty.',
} );
},
placeOrder: async () => {
await Promise.all( [
page.waitForNavigation( {
waitUntil: 'networkidle0',
} ),
expect( page ).toClick( '.wc-block-components-button__text', {
text: 'Place Order',
} ),
] );
},
fillBillingDetails: async ( customerBillingDetails ) => {
await expect( page ).toFill(
'#billing-first_name',
customerBillingDetails.firstname
);
await expect( page ).toFill(
'#billing-last_name',
customerBillingDetails.lastname
);
await expect( page ).toFill(
'#components-form-token-input-0',
customerBillingDetails.country
);
await expect( page ).toFill(
'#billing-address_1',
customerBillingDetails.addressfirstline
);
await expect( page ).toFill(
'#billing-address_2',
customerBillingDetails.addresssecondline
);
await expect( page ).toFill(
'#billing-city',
customerBillingDetails.city
);
await expect( page ).toFill(
'#components-form-token-input-2',
customerBillingDetails.state
);
await expect( page ).toFill(
'#billing-postcode',
customerBillingDetails.postcode
);
await expect( page ).toFill(
'#phone',
customerBillingDetails.phone
);
await expect( page ).toFill(
'#email',
customerBillingDetails.email
);
},
},
};