woocommerce/plugins/woocommerce-admin/tests/e2e/specs/activate-and-setup/complete-theme-selection-se...

18 lines
334 B
JavaScript

/**
* @format
*/
/**
* Internal dependencies
*/
import { clickContinue } from './utils';
export async function completeThemeSelectionSection() {
// Make sure we're on the theme selection page before clicking continue
await page.waitForSelector(
'.woocommerce-profile-wizard__themes-tab-panel'
);
await clickContinue();
}