woocommerce/plugins/woocommerce-blocks/tests/e2e-pw/utils/frontend/go-to-shop.ts

12 lines
209 B
TypeScript

/**
* External dependencies
*/
import { Page } from '@playwright/test';
// Navigate to the shop page.
export const goToShop = ( page: Page ) => {
page.goto( '/shop', {
waitUntil: 'networkidle',
} );
};