2020-10-14 06:10:50 +00:00
|
|
|
import { waitForSelector } from '../../utils/lib';
|
2020-09-04 02:31:09 +00:00
|
|
|
/**
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { clickContinue } from './utils';
|
|
|
|
|
|
|
|
export async function completeThemeSelectionSection() {
|
2020-10-14 06:10:50 +00:00
|
|
|
// Make sure we're on the theme selection page before clicking continue
|
|
|
|
await waitForSelector(
|
|
|
|
page,
|
|
|
|
'.woocommerce-profile-wizard__themes-tab-panel'
|
|
|
|
);
|
|
|
|
|
2020-09-04 02:31:09 +00:00
|
|
|
await clickContinue();
|
|
|
|
}
|