133 lines
3.1 KiB
JavaScript
133 lines
3.1 KiB
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
const baseUrl = process.env.WP_BASE_URL;
|
|
|
|
const WP_ADMIN_NEW_COUPON = baseUrl + '/wp-admin/post-new.php?post_type=shop_coupon';
|
|
const WP_ADMIN_NEW_ORDER = baseUrl + '/wp-admin/post-new.php?post_type=shop_order';
|
|
const WP_ADMIN_NEW_PRODUCT = baseUrl + '/wp-admin/post-new.php?post_type=product';
|
|
const WP_ADMIN_WC_SETTINGS = baseUrl + '/wp-admin/admin.php?page=wc-settings&tab=';
|
|
|
|
const SHOP_PRODUCT = baseUrl + '/product/';
|
|
const SHOP_CART_PAGE = baseUrl + '/cart/';
|
|
|
|
const getProductColumnExpression = ( productTitle ) => (
|
|
'td[@class="product-name" and ' +
|
|
`a[contains(text(), "${ productTitle }")]` +
|
|
']'
|
|
);
|
|
|
|
const getQtyColumnExpression = ( args ) => (
|
|
'td[@class="product-quantity" and ' +
|
|
'.//' + getQtyInputExpression( args ) +
|
|
']'
|
|
);
|
|
|
|
const getQtyInputExpression = ( args = {} ) => {
|
|
let qtyValue = '';
|
|
|
|
if ( args.checkQty ) {
|
|
qtyValue = ` and @value="${ args.qty }"`;
|
|
}
|
|
|
|
return 'input[contains(@class, "input-text")' + qtyValue + ']';
|
|
};
|
|
|
|
const getCartItemExpression = ( productTitle, args ) => (
|
|
'//tr[contains(@class, "cart_item") and ' +
|
|
getProductColumnExpression( productTitle ) +
|
|
' and ' +
|
|
getQtyColumnExpression( args ) +
|
|
']'
|
|
);
|
|
|
|
const getRemoveExpression = () => (
|
|
'td[@class="product-remove"]//a[@class="remove"]'
|
|
);
|
|
|
|
|
|
const CustomerFlow = {
|
|
addToCart: async () => {
|
|
await Promise.all( [
|
|
page.waitForNavigation( { waitUntil: 'networkidle0' } ),
|
|
page.click( '.single_add_to_cart_button' ),
|
|
] );
|
|
},
|
|
|
|
removeFromCart: async ( productTitle ) => {
|
|
const cartItemXPath = getCartItemExpression( productTitle );
|
|
const removeItemXPath = cartItemXPath + '//' + getRemoveExpression();
|
|
|
|
const [ removeButton ] = await page.$x( removeItemXPath );
|
|
await removeButton.click();
|
|
},
|
|
|
|
goToProduct: async ( productSlug ) => {
|
|
await page.goto( SHOP_PRODUCT + productSlug, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
|
|
goToCart: async () => {
|
|
await page.goto( SHOP_CART_PAGE, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
|
|
productIsInCart: async ( productTitle, quantity = null ) => {
|
|
const cartItemArgs = quantity ? { qty: quantity } : {};
|
|
const cartItemXPath = getCartItemExpression( productTitle, cartItemArgs );
|
|
|
|
await expect( page.$x( cartItemXPath ) ).resolves.toHaveLength( 1 );
|
|
},
|
|
|
|
};
|
|
|
|
const StoreOwnerFlow = {
|
|
logout: async () => {
|
|
await page.goto(baseUrl + '/wp-login.php?action=logout', {
|
|
waitUntil: 'networkidle0',
|
|
});
|
|
|
|
await expect(page).toMatch('You are attempting to log out');
|
|
|
|
await Promise.all([
|
|
page.waitForNavigation({ waitUntil: 'networkidle0' }),
|
|
page.click('a'),
|
|
]);
|
|
},
|
|
|
|
openNewCoupon: async () => {
|
|
await page.goto( WP_ADMIN_NEW_COUPON, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
|
|
openNewOrder: async () => {
|
|
await page.goto( WP_ADMIN_NEW_ORDER, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
|
|
openNewProduct: async () => {
|
|
await page.goto( WP_ADMIN_NEW_PRODUCT, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
|
|
openSettings: async ( tab, section = null ) => {
|
|
let settingsUrl = WP_ADMIN_WC_SETTINGS + tab;
|
|
|
|
if ( section ) {
|
|
settingsUrl += `§ion=${ section }`;
|
|
}
|
|
|
|
await page.goto( settingsUrl, {
|
|
waitUntil: 'networkidle0',
|
|
} );
|
|
},
|
|
};
|
|
|
|
export { CustomerFlow, StoreOwnerFlow };
|