Merge branch 'master' into fix/26847-rest-api-auth
This commit is contained in:
commit
b84080c67e
|
@ -93,7 +93,7 @@ const completeOnboardingWizard = async () => {
|
||||||
expect( industryCheckboxes ).toHaveLength( 9 );
|
expect( industryCheckboxes ).toHaveLength( 9 );
|
||||||
|
|
||||||
// Select all industries including "Other"
|
// Select all industries including "Other"
|
||||||
for ( let i = 0; i < 10; i++ ) {
|
for ( let i = 0; i < 9; i++ ) {
|
||||||
await industryCheckboxes[i].click();
|
await industryCheckboxes[i].click();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,9 +149,14 @@ const completeOnboardingWizard = async () => {
|
||||||
await page.waitForSelector( '.woocommerce-select-control__control' );
|
await page.waitForSelector( '.woocommerce-select-control__control' );
|
||||||
await expect( page ).toClick( '.woocommerce-select-control__option', { text: config.get( 'onboardingwizard.sellingelsewhere' ) } );
|
await expect( page ).toClick( '.woocommerce-select-control__option', { text: config.get( 'onboardingwizard.sellingelsewhere' ) } );
|
||||||
|
|
||||||
// Disable business extension downloads
|
// Query for the extensions toggles
|
||||||
const pluginToggle = await page.$( '.woocommerce-business-extensions .components-checkbox-control__input-container' );
|
const extensionsToggles = await page.$$( '.components-form-toggle__input' );
|
||||||
pluginToggle.click();
|
expect( extensionsToggles ).toHaveLength( 3 );
|
||||||
|
|
||||||
|
// Disable download of the 3 extensions
|
||||||
|
for ( let i = 0; i < 3; i++ ) {
|
||||||
|
await extensionsToggles[i].click();
|
||||||
|
}
|
||||||
|
|
||||||
// Wait for "Continue" button to become active
|
// Wait for "Continue" button to become active
|
||||||
await page.waitForSelector( 'button.is-primary:not(:disabled)' );
|
await page.waitForSelector( 'button.is-primary:not(:disabled)' );
|
||||||
|
|
Loading…
Reference in New Issue