2021-04-14 14:50:27 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2022-03-01 11:25:13 +00:00
|
|
|
import {
|
|
|
|
shopper as wcShopper,
|
|
|
|
uiUnblocked,
|
|
|
|
SHOP_CART_PAGE,
|
2022-10-28 12:41:28 +00:00
|
|
|
SHOP_PAGE,
|
2022-03-01 11:25:13 +00:00
|
|
|
} from '@woocommerce/e2e-utils';
|
2022-03-23 12:51:56 +00:00
|
|
|
import { pressKeyWithModifier } from '@wordpress/e2e-test-utils';
|
2021-04-14 14:50:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2022-03-09 10:16:24 +00:00
|
|
|
import { BASE_URL } from '../e2e/utils';
|
2022-03-23 12:51:56 +00:00
|
|
|
import {
|
|
|
|
getCartItemPathExpression,
|
|
|
|
getQtyInputPathExpression,
|
|
|
|
getQtyPlusButtonPathExpression,
|
|
|
|
getQtyMinusButtonPathExpression,
|
|
|
|
} from './path-expressions';
|
2021-04-14 14:50:27 +00:00
|
|
|
|
2023-02-24 14:27:56 +00:00
|
|
|
const checkCustomerPushCompleted = async (
|
|
|
|
shippingOrBilling,
|
|
|
|
addressToCheck
|
|
|
|
) => {
|
|
|
|
// Blur active field to trigger customer information update, then wait for requests to finish.
|
|
|
|
await page.evaluate( 'document.activeElement.blur()' );
|
|
|
|
|
|
|
|
await page.waitForResponse( async ( response ) => {
|
|
|
|
const isBatch = response.url().includes( '/wp-json/wc/store/v1/batch' );
|
|
|
|
const responseJson = await response.text();
|
|
|
|
const parsedResponse = JSON.parse( responseJson );
|
|
|
|
if ( ! Array.isArray( parsedResponse?.responses ) || ! isBatch ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const keyToCheck =
|
|
|
|
shippingOrBilling === 'shipping'
|
|
|
|
? 'shipping_address'
|
|
|
|
: 'billing_address';
|
|
|
|
|
|
|
|
return parsedResponse.responses.some( ( singleResponse ) => {
|
|
|
|
const firstname =
|
|
|
|
singleResponse.body[ keyToCheck ].first_name ===
|
|
|
|
addressToCheck.firstname;
|
|
|
|
const lastname =
|
|
|
|
singleResponse.body[ keyToCheck ].last_name ===
|
|
|
|
addressToCheck.lastname;
|
|
|
|
const address1 =
|
|
|
|
singleResponse.body[ keyToCheck ].address_1 ===
|
|
|
|
addressToCheck.addressfirstline;
|
|
|
|
const address2 =
|
|
|
|
singleResponse.body[ keyToCheck ].address_2 ===
|
|
|
|
addressToCheck.addresssecondline;
|
|
|
|
const postcode =
|
|
|
|
singleResponse.body[ keyToCheck ].postcode ===
|
|
|
|
addressToCheck.postcode;
|
|
|
|
const city =
|
|
|
|
singleResponse.body[ keyToCheck ].city === addressToCheck.city;
|
|
|
|
const phone =
|
|
|
|
singleResponse.body[ keyToCheck ].phone ===
|
|
|
|
addressToCheck.phone;
|
|
|
|
const email =
|
|
|
|
shippingOrBilling === 'billing'
|
|
|
|
? singleResponse.body[ keyToCheck ].email ===
|
|
|
|
addressToCheck.email
|
|
|
|
: true;
|
|
|
|
|
|
|
|
// Note, we skip checking State and Country here because the value returned by the server is not the same as
|
|
|
|
// what gets input into the form. The server returns the code, but the form accepts the full name.
|
|
|
|
return (
|
|
|
|
firstname &&
|
|
|
|
lastname &&
|
|
|
|
address1 &&
|
|
|
|
address2 &&
|
|
|
|
postcode &&
|
|
|
|
city &&
|
|
|
|
phone &&
|
|
|
|
email
|
|
|
|
);
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
await page.waitForTimeout( 1500 );
|
|
|
|
};
|
|
|
|
|
2021-04-14 14:50:27 +00:00
|
|
|
export const shopper = {
|
|
|
|
...wcShopper,
|
|
|
|
|
2022-03-09 10:16:24 +00:00
|
|
|
// We use the .block property to avoid overriding any wcShopper functionality
|
|
|
|
// This is important as we might one day merge this into core WC.
|
2022-03-07 15:23:31 +00:00
|
|
|
block: {
|
2022-03-09 10:16:24 +00:00
|
|
|
// All block pages have a title composed of the block name followed by "Block".
|
|
|
|
// E.g. "Checkout Block or Mini Cart Block". The permalinks are generated from
|
|
|
|
// the page title so we can derive them directly
|
|
|
|
goToBlockPage: async ( blockName ) => {
|
|
|
|
const pageTitle = `${ blockName } Block`;
|
|
|
|
const url = BASE_URL + pageTitle.toLowerCase().replace( / /g, '-' );
|
|
|
|
await page.goto( url, {
|
2022-03-07 15:23:31 +00:00
|
|
|
waitUntil: 'networkidle0',
|
|
|
|
} );
|
2022-03-09 10:16:24 +00:00
|
|
|
},
|
|
|
|
|
2022-10-28 12:41:28 +00:00
|
|
|
goToShop: async () => {
|
|
|
|
await page.goto( SHOP_PAGE );
|
|
|
|
// Wait for Shop block to finish loading, otherwise we get flakey tests
|
|
|
|
await page.waitForSelector( '.add_to_cart_button' );
|
|
|
|
},
|
|
|
|
|
2022-03-09 10:16:24 +00:00
|
|
|
goToCart: async () => {
|
|
|
|
await shopper.block.goToBlockPage( 'Cart' );
|
2022-05-01 11:33:58 +00:00
|
|
|
// Wait for Cart block to finish loading, otherwise we get flakey tests
|
|
|
|
await page.waitForSelector(
|
2022-10-28 12:41:28 +00:00
|
|
|
'.wp-block-woocommerce-cart:not(.is-loading)'
|
2022-05-01 11:33:58 +00:00
|
|
|
);
|
2022-03-07 15:23:31 +00:00
|
|
|
},
|
2022-03-01 11:25:13 +00:00
|
|
|
|
2022-03-08 13:52:40 +00:00
|
|
|
goToCheckout: async () => {
|
2022-03-09 10:16:24 +00:00
|
|
|
await shopper.block.goToBlockPage( 'Checkout' );
|
2022-05-01 11:33:58 +00:00
|
|
|
// Wait for Checkout block to finish loading, otherwise we get flakey tests
|
|
|
|
await page.waitForSelector(
|
2022-10-28 12:41:28 +00:00
|
|
|
'.wp-block-woocommerce-checkout:not(.is-loading)'
|
2022-05-01 11:33:58 +00:00
|
|
|
);
|
2022-03-09 10:16:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
productIsInCheckout: 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,
|
2022-03-08 13:52:40 +00:00
|
|
|
} );
|
2022-06-15 09:56:52 +00:00
|
|
|
await expect( page ).toMatchElement(
|
2022-03-09 10:16:24 +00:00
|
|
|
'div.wc-block-components-order-summary-item__quantity',
|
|
|
|
{ text: quantity }
|
|
|
|
);
|
|
|
|
await expect( page ).toMatchElement(
|
|
|
|
'span.wc-block-components-product-price__value',
|
|
|
|
{
|
|
|
|
text: total,
|
|
|
|
}
|
|
|
|
);
|
2022-03-08 13:52:40 +00:00
|
|
|
},
|
|
|
|
|
2022-03-07 15:23:31 +00:00
|
|
|
/**
|
|
|
|
* 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' );
|
|
|
|
}
|
2022-03-01 11:25:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 15:23:31 +00:00
|
|
|
// Remove coupons if they exist
|
|
|
|
if ( ( await page.$( '.woocommerce-remove-coupon' ) ) !== null ) {
|
|
|
|
await page.click( '.woocommerce-remove-coupon' );
|
|
|
|
await uiUnblocked();
|
|
|
|
}
|
2022-03-01 11:25:13 +00:00
|
|
|
|
2022-03-07 15:23:31 +00:00
|
|
|
await page.waitForSelector( '.woocommerce-info' );
|
|
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
2022-04-13 11:51:13 +00:00
|
|
|
await expect( page ).toMatchElement(
|
|
|
|
'.woocommerce-info.cart-empty'
|
|
|
|
);
|
2022-03-07 15:23:31 +00:00
|
|
|
},
|
2022-03-08 13:52:40 +00:00
|
|
|
|
|
|
|
placeOrder: async () => {
|
2022-10-28 12:41:28 +00:00
|
|
|
// Wait for payment methods to be shown, otherwise we get flakey tests
|
|
|
|
await page.waitForSelector(
|
|
|
|
'.wc-block-components-payment-method-label'
|
|
|
|
);
|
|
|
|
// Wait for place order button to be clickable, otherwise we get flakey tests
|
|
|
|
await page.waitForSelector(
|
|
|
|
'.wc-block-components-checkout-place-order-button:not([disabled])'
|
|
|
|
);
|
2022-03-08 13:52:40 +00:00
|
|
|
await Promise.all( [
|
2022-05-01 11:33:58 +00:00
|
|
|
page.click(
|
|
|
|
'.wc-block-components-checkout-place-order-button'
|
2022-03-08 14:50:16 +00:00
|
|
|
),
|
|
|
|
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
|
2022-03-08 13:52:40 +00:00
|
|
|
] );
|
|
|
|
},
|
|
|
|
|
2022-03-08 14:50:16 +00:00
|
|
|
/* We need to overwrite this function from wcShopper because clicking through to the
|
|
|
|
product doesn't work. There is a fix in https://github.com/woocommerce/woocommerce/pull/31915
|
|
|
|
We can delete this function once the PR is merged
|
|
|
|
*/
|
|
|
|
searchForProduct: async ( productname ) => {
|
|
|
|
const searchFieldSelector = '.wp-block-search__input';
|
|
|
|
await expect( page ).toMatchElement( searchFieldSelector );
|
|
|
|
// await page.waitForSelector( searchFieldSelector, { timeout: 5000 } );
|
|
|
|
await expect( page ).toFill( searchFieldSelector, productname );
|
|
|
|
await expect( page ).toClick( '.wp-block-search__button' );
|
|
|
|
// Single search results may go directly to product page
|
|
|
|
if ( await page.waitForSelector( 'h2.entry-title' ) ) {
|
|
|
|
await expect( page ).toMatchElement( 'h2.entry-title', {
|
|
|
|
text: productname,
|
|
|
|
} );
|
|
|
|
await expect( page ).toClick( 'h2.entry-title > a', {
|
|
|
|
text: productname,
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
await page.waitForSelector( 'h1.entry-title' );
|
|
|
|
await expect( page.title() ).resolves.toMatch( productname );
|
|
|
|
await expect( page ).toMatchElement(
|
|
|
|
'h1.entry-title',
|
|
|
|
productname
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
addCoupon: async ( couponCode ) => {
|
|
|
|
const title = await page.title();
|
|
|
|
if ( ! title.includes( 'Cart Block' ) ) {
|
2022-03-09 10:16:24 +00:00
|
|
|
await shopper.block.goToCart();
|
2022-03-08 14:50:16 +00:00
|
|
|
}
|
|
|
|
// Make sure the coupon panel is open
|
|
|
|
const applyButton = await page.$(
|
|
|
|
'.wc-block-components-totals-coupon__button'
|
|
|
|
);
|
|
|
|
if ( ! applyButton ) {
|
|
|
|
await page.click( '.wc-block-components-panel__button' );
|
|
|
|
}
|
|
|
|
await page.type(
|
|
|
|
'.wc-block-components-totals-coupon__input input',
|
|
|
|
couponCode
|
|
|
|
);
|
|
|
|
await page.click( '.wc-block-components-totals-coupon__button' );
|
|
|
|
await expect( page ).toMatchElement(
|
|
|
|
'.wc-block-components-chip__text',
|
|
|
|
{
|
|
|
|
text: couponCode,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2023-02-24 14:27:56 +00:00
|
|
|
fillInCheckoutWithTestData: async ( overrideData = {} ) => {
|
2022-03-08 14:50:16 +00:00
|
|
|
const shippingOrBilling = ( await page.$( '#shipping-first_name' ) )
|
|
|
|
? 'shipping'
|
|
|
|
: 'billing';
|
|
|
|
const testData = {
|
2023-02-24 14:27:56 +00:00
|
|
|
...{
|
|
|
|
firstname: 'John',
|
|
|
|
lastname: 'Doe',
|
|
|
|
addressfirstline: '123 Easy Street',
|
|
|
|
addresssecondline: 'Testville',
|
|
|
|
country: 'United States (US)',
|
|
|
|
city: 'New York',
|
|
|
|
state: 'New York',
|
|
|
|
postcode: '90210',
|
|
|
|
email: 'john.doe@test.com',
|
|
|
|
phone: '01234567890',
|
|
|
|
},
|
|
|
|
...overrideData,
|
2022-03-08 14:50:16 +00:00
|
|
|
};
|
2022-05-01 11:33:58 +00:00
|
|
|
await expect( page ).toFill( `#email`, testData.email );
|
2023-02-24 14:27:56 +00:00
|
|
|
if ( shippingOrBilling === 'shipping' ) {
|
|
|
|
await shopper.block.fillShippingDetails( testData );
|
|
|
|
} else {
|
|
|
|
await shopper.block.fillBillingDetails( testData );
|
|
|
|
}
|
|
|
|
// Blur active field to trigger shipping rates update, then wait for requests to finish.
|
|
|
|
await page.evaluate( 'document.activeElement.blur()' );
|
2022-03-08 14:50:16 +00:00
|
|
|
},
|
2022-03-31 11:10:50 +00:00
|
|
|
// prettier-ignore
|
2022-03-08 13:52:40 +00:00
|
|
|
fillBillingDetails: async ( customerBillingDetails ) => {
|
2023-02-24 14:27:56 +00:00
|
|
|
await page.waitForSelector( '#billing-fields' );
|
2022-03-31 11:10:50 +00:00
|
|
|
const companyInputField = await page.$( '#billing-company' );
|
|
|
|
|
|
|
|
if ( companyInputField ) {
|
|
|
|
await expect( page ).toFill( '#billing-company', customerBillingDetails.company );
|
|
|
|
}
|
|
|
|
|
|
|
|
await expect( page ).toFill( '#billing-first_name', customerBillingDetails.firstname );
|
|
|
|
await expect( page ).toFill( '#billing-last_name', customerBillingDetails.lastname );
|
|
|
|
await expect( page ).toFill( '#billing-country input', 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( '#billing-state input', customerBillingDetails.state );
|
|
|
|
await expect( page ).toFill( '#billing-postcode', customerBillingDetails.postcode );
|
2023-01-27 19:52:10 +00:00
|
|
|
await expect( page ).toFill( '#billing-phone', customerBillingDetails.phone );
|
2022-03-31 11:10:50 +00:00
|
|
|
await expect( page ).toFill( '#email', customerBillingDetails.email );
|
2023-02-24 14:27:56 +00:00
|
|
|
// Blur active field to trigger customer address update, then wait for requests to finish.
|
|
|
|
await page.evaluate( 'document.activeElement.blur()' );
|
|
|
|
await checkCustomerPushCompleted( 'billing', customerBillingDetails );
|
2022-03-31 11:10:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
fillShippingDetails: async ( customerShippingDetails ) => {
|
|
|
|
const companyInputField = await page.$( '#shipping-company' );
|
|
|
|
|
|
|
|
if ( companyInputField ) {
|
|
|
|
await expect( page ).toFill( '#shipping-company', customerShippingDetails.company );
|
|
|
|
}
|
|
|
|
|
|
|
|
await expect( page ).toFill( '#shipping-first_name', customerShippingDetails.firstname );
|
|
|
|
await expect( page ).toFill( '#shipping-last_name', customerShippingDetails.lastname );
|
|
|
|
await expect( page ).toFill( '#shipping-country input', customerShippingDetails.country );
|
|
|
|
await expect( page ).toFill( '#shipping-address_1', customerShippingDetails.addressfirstline );
|
|
|
|
await expect( page ).toFill( '#shipping-address_2', customerShippingDetails.addresssecondline );
|
|
|
|
await expect( page ).toFill( '#shipping-city', customerShippingDetails.city );
|
|
|
|
await expect( page ).toFill( '#shipping-state input', customerShippingDetails.state );
|
|
|
|
await expect( page ).toFill( '#shipping-postcode', customerShippingDetails.postcode );
|
|
|
|
await expect( page ).toFill( '#shipping-phone', customerShippingDetails.phone );
|
2023-02-24 14:27:56 +00:00
|
|
|
// Blur active field to customer address update, then wait for requests to finish.
|
|
|
|
await page.evaluate( 'document.activeElement.blur()' );
|
|
|
|
await checkCustomerPushCompleted( 'shipping', customerShippingDetails );
|
2022-03-31 11:10:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// prettier-ignore
|
2023-03-17 14:15:13 +00:00
|
|
|
verifyBillingDetails: async ( customerBillingDetails, selector = '.woocommerce-column--billing-address' ) => {
|
|
|
|
await page.waitForSelector( selector );
|
2022-03-31 11:10:50 +00:00
|
|
|
await Promise.all( [
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch(
|
|
|
|
customerBillingDetails.firstname
|
|
|
|
),
|
|
|
|
expect( page ).toMatch( customerBillingDetails.lastname),
|
2023-01-27 19:52:10 +00:00
|
|
|
// expect( page ).toMatch( customerBillingDetails.company),
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch(
|
|
|
|
customerBillingDetails.addressfirstline
|
|
|
|
),
|
|
|
|
expect( page ).toMatch(
|
|
|
|
customerBillingDetails.addresssecondline
|
|
|
|
),
|
2022-03-31 11:10:50 +00:00
|
|
|
// expect( page ).toMatch( customerBillingDetails.country ),
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch( customerBillingDetails.city),
|
|
|
|
expect( page ).toMatch( customerBillingDetails.state),
|
|
|
|
expect( page ).toMatch( customerBillingDetails.postcode),
|
|
|
|
expect( page ).toMatch( customerBillingDetails.phone),
|
2022-03-31 11:10:50 +00:00
|
|
|
] );
|
|
|
|
},
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
verifyShippingDetails: async ( customerShippingDetails ) => {
|
2022-04-19 07:56:52 +00:00
|
|
|
await page.waitForSelector(
|
|
|
|
'.woocommerce-column--shipping-address'
|
|
|
|
);
|
2022-03-31 11:10:50 +00:00
|
|
|
await Promise.all( [
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch(
|
|
|
|
customerShippingDetails.firstname
|
|
|
|
),
|
|
|
|
expect( page ).toMatch(
|
|
|
|
customerShippingDetails.lastname
|
|
|
|
),
|
2023-01-27 19:52:10 +00:00
|
|
|
// expect( page ).toMatch( customerShippingDetails.company),
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch(
|
|
|
|
customerShippingDetails.addressfirstline
|
|
|
|
),
|
|
|
|
expect( page ).toMatch(
|
|
|
|
customerShippingDetails.addresssecondline
|
|
|
|
),
|
2022-03-31 11:10:50 +00:00
|
|
|
// expect( page ).toMatch( customerShippingDetails.country ),
|
2022-04-19 07:56:52 +00:00
|
|
|
expect( page ).toMatch( customerShippingDetails.city),
|
|
|
|
expect( page ).toMatch( customerShippingDetails.state),
|
|
|
|
expect( page ).toMatch(
|
|
|
|
customerShippingDetails.postcode
|
|
|
|
),
|
|
|
|
expect( page ).toMatch( customerShippingDetails.phone),
|
2022-03-31 11:10:50 +00:00
|
|
|
] );
|
2022-03-08 13:52:40 +00:00
|
|
|
},
|
2022-03-09 10:16:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Instead of using the permalink to go to checkout (e.g. "shopper.block.goToCheckout"),
|
|
|
|
* with this method we actually click on the "Proceed to Checkout" button
|
|
|
|
*/
|
|
|
|
proceedToCheckout: async () => {
|
|
|
|
await Promise.all( [
|
|
|
|
expect( page ).toClick( 'a.wc-block-cart__submit-button', {
|
|
|
|
text: 'Proceed to Checkout',
|
|
|
|
} ),
|
|
|
|
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
|
|
|
|
] );
|
|
|
|
},
|
2022-03-09 12:23:52 +00:00
|
|
|
|
2022-09-21 06:29:16 +00:00
|
|
|
addCrossSellsProductToCart: async () => {
|
|
|
|
await page.waitForSelector(
|
|
|
|
'.wc-block-components-product-add-to-cart-button'
|
|
|
|
);
|
|
|
|
expect( page ).toClick(
|
|
|
|
'.wc-block-components-product-add-to-cart-button'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2022-03-09 12:23:52 +00:00
|
|
|
selectAndVerifyShippingOption: async (
|
|
|
|
shippingName,
|
|
|
|
shippingPrice
|
|
|
|
) => {
|
2023-02-24 14:27:56 +00:00
|
|
|
await page.waitForNetworkIdle( { idleTime: 1000 } );
|
2022-10-28 12:41:28 +00:00
|
|
|
await page.waitForSelector(
|
|
|
|
'.wc-block-components-radio-control__label'
|
|
|
|
);
|
2022-03-09 12:23:52 +00:00
|
|
|
await expect( page ).toClick(
|
|
|
|
'.wc-block-components-radio-control__label',
|
|
|
|
{
|
|
|
|
text: shippingName,
|
|
|
|
}
|
|
|
|
);
|
2022-05-01 11:33:58 +00:00
|
|
|
//eslint-disable-next-line no-shadow
|
|
|
|
const checkIfShippingHasChanged = ( el, shippingName ) => {
|
|
|
|
const checkShippingTotal = () => {
|
|
|
|
if ( el.textContent === `via ${ shippingName }` ) {
|
|
|
|
clearInterval( intervalId );
|
|
|
|
clearTimeout( timeoutId );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const intervalId = setInterval( checkShippingTotal, 500 );
|
|
|
|
const timeoutId = setInterval( () => {
|
|
|
|
clearInterval( intervalId );
|
|
|
|
}, 30000 );
|
|
|
|
};
|
|
|
|
|
|
|
|
// We need to wait for the shipping total to update before we assert.
|
|
|
|
// As no dom elements are being added or removed, we cannot use `await page.waitForSelectot()`
|
|
|
|
// so instead we check when the `via <Shipping Method>` text changes
|
|
|
|
await page.$eval(
|
|
|
|
'.wc-block-components-totals-shipping .wc-block-components-totals-shipping__via',
|
|
|
|
checkIfShippingHasChanged,
|
|
|
|
shippingName
|
|
|
|
);
|
|
|
|
|
2022-03-09 12:23:52 +00:00
|
|
|
await expect( page ).toMatchElement(
|
|
|
|
'.wc-block-components-totals-shipping .wc-block-formatted-money-amount',
|
|
|
|
{
|
|
|
|
text: shippingPrice,
|
2022-05-01 11:33:58 +00:00
|
|
|
timeout: 30000,
|
2022-03-09 12:23:52 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
2022-03-23 11:01:33 +00:00
|
|
|
|
2022-03-28 13:48:21 +00:00
|
|
|
/* The express payment button added by Woo Pay or WC Stripe Gateway needs HTTPS and a logged in
|
|
|
|
account on Google Pay or other express payment methods. This is impossible in this env,
|
|
|
|
so instead we mock an express payment method using the `registerExpressPaymentMethod()` function
|
|
|
|
from the wc.wcBlocksRegistry global. This function needs to be run for each page navigation as the
|
|
|
|
update to the block resgistry is not persisted.
|
|
|
|
|
|
|
|
eslint-disable because we use global vars within the page context
|
|
|
|
*/
|
|
|
|
mockExpressPaymentMethod: async () => {
|
|
|
|
await page.evaluate( () => {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
const { registerExpressPaymentMethod } = wc.wcBlocksRegistry;
|
|
|
|
registerExpressPaymentMethod( {
|
|
|
|
name: 'mock_express_payment',
|
|
|
|
// eslint-disable-next-line
|
|
|
|
content: React.createElement(
|
|
|
|
'div',
|
|
|
|
[],
|
|
|
|
[ 'Mock Express Payment' ]
|
|
|
|
),
|
|
|
|
// eslint-disable-next-line
|
|
|
|
edit: React.createElement(
|
|
|
|
'div',
|
|
|
|
[],
|
|
|
|
[ 'Mock Express Payment' ]
|
|
|
|
),
|
|
|
|
canMakePayment: () => true,
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
|
2022-03-23 11:01:33 +00:00
|
|
|
selectPayment: async ( payment ) => {
|
|
|
|
await expect( page ).toClick(
|
|
|
|
'.wc-block-components-payment-method-label',
|
|
|
|
{
|
|
|
|
text: payment,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
2022-03-23 12:51:56 +00:00
|
|
|
|
|
|
|
setCartQuantity: async ( productTitle, quantityValue ) => {
|
|
|
|
const cartItemXPath = getCartItemPathExpression( productTitle );
|
|
|
|
const quantityInputXPath =
|
|
|
|
cartItemXPath + '//' + getQtyInputPathExpression();
|
|
|
|
|
|
|
|
const [ quantityInput ] = await page.$x( quantityInputXPath );
|
|
|
|
await quantityInput.focus();
|
|
|
|
await pressKeyWithModifier( 'primary', 'a' );
|
|
|
|
await quantityInput.type( quantityValue.toString() );
|
|
|
|
await quantityInput.evaluate( ( e ) => e.blur() );
|
|
|
|
},
|
|
|
|
|
|
|
|
increaseCartQuantityByOne: async ( productTitle ) => {
|
|
|
|
const cartItemXPath = getCartItemPathExpression( productTitle );
|
|
|
|
|
|
|
|
const quantityPlusButtonXPath =
|
|
|
|
cartItemXPath + '//' + getQtyPlusButtonPathExpression();
|
|
|
|
|
|
|
|
const [ quantityPlusButton ] = await page.$x(
|
|
|
|
quantityPlusButtonXPath
|
|
|
|
);
|
|
|
|
await quantityPlusButton.click();
|
|
|
|
},
|
|
|
|
|
|
|
|
decreaseCartQuantityByOne: async ( productTitle ) => {
|
|
|
|
const cartItemXPath = getCartItemPathExpression( productTitle );
|
|
|
|
const quantityMinusButtonXPath =
|
|
|
|
cartItemXPath + '//' + getQtyMinusButtonPathExpression();
|
|
|
|
|
|
|
|
const [ quantityMinusButton ] = await page.$x(
|
|
|
|
quantityMinusButtonXPath
|
|
|
|
);
|
|
|
|
await quantityMinusButton.click();
|
|
|
|
},
|
|
|
|
|
|
|
|
productIsInCart: async ( productTitle, quantity = null ) => {
|
|
|
|
const cartItemArgs = quantity ? { qty: quantity } : {};
|
|
|
|
const cartItemXPath = getCartItemPathExpression(
|
|
|
|
productTitle,
|
|
|
|
cartItemArgs
|
|
|
|
);
|
|
|
|
|
|
|
|
await expect( page.$x( cartItemXPath ) ).resolves.toHaveLength( 1 );
|
|
|
|
},
|
2022-04-01 23:09:54 +00:00
|
|
|
|
|
|
|
applyCouponFromCheckout: async ( couponCode ) => {
|
|
|
|
const couponInputSelector =
|
|
|
|
'#wc-block-components-totals-coupon__input-0';
|
|
|
|
const couponApplyButtonSelector =
|
|
|
|
'.wc-block-components-totals-coupon__button';
|
2023-01-17 09:10:50 +00:00
|
|
|
const addCouponLinkSelector =
|
|
|
|
'.wc-block-components-totals-coupon-link';
|
2022-04-01 23:09:54 +00:00
|
|
|
|
2023-01-17 09:10:50 +00:00
|
|
|
await expect( page ).toClick( addCouponLinkSelector );
|
2022-04-01 23:09:54 +00:00
|
|
|
await expect( page ).toFill( couponInputSelector, couponCode );
|
|
|
|
await expect( page ).toClick( couponApplyButtonSelector );
|
|
|
|
},
|
2022-03-01 11:25:13 +00:00
|
|
|
},
|
2022-03-25 17:34:17 +00:00
|
|
|
|
|
|
|
isLoggedIn: async () => {
|
|
|
|
await shopper.gotoMyAccount();
|
|
|
|
|
|
|
|
await expect( page.title() ).resolves.toMatch( 'My account' );
|
|
|
|
const loginForm = await page.$( 'form.woocommerce-form-login' );
|
|
|
|
|
|
|
|
return ! loginForm;
|
|
|
|
},
|
|
|
|
|
|
|
|
loginFromMyAccountPage: async ( username, password ) => {
|
|
|
|
await page.type( '#username', username );
|
|
|
|
await page.type( '#password', password );
|
|
|
|
|
|
|
|
await Promise.all( [
|
|
|
|
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
|
|
|
|
page.click( 'button[name="login"]' ),
|
|
|
|
] );
|
|
|
|
},
|
2022-07-18 09:38:49 +00:00
|
|
|
|
|
|
|
addToCartFromShopPage: async ( productIdOrTitle ) => {
|
|
|
|
if ( Number.isInteger( productIdOrTitle ) ) {
|
|
|
|
const addToCart = `a[data-product_id="${ productIdOrTitle }"]`;
|
|
|
|
await page.click( addToCart );
|
|
|
|
await expect( page ).toMatchElement( addToCart + '.added' );
|
|
|
|
} else {
|
|
|
|
const addToCartXPath =
|
|
|
|
`//li[contains(@class, "type-product") and a/h2[contains(text(), "${ productIdOrTitle }")]]` +
|
|
|
|
'//a[contains(@class, "add_to_cart_button") and contains(@class, "ajax_add_to_cart")';
|
|
|
|
|
|
|
|
const [ addToCartButton ] = await page.$x( addToCartXPath + ']' );
|
|
|
|
await addToCartButton.click();
|
|
|
|
|
|
|
|
await page.waitForXPath(
|
|
|
|
addToCartXPath + ' and contains(@class, "added")]'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
2021-04-14 14:50:27 +00:00
|
|
|
};
|