diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js index a0d7ddcd381..3e5d4f0c4e4 100644 --- a/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js +++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js @@ -221,12 +221,13 @@ test.describe( 'Add New Variable Product Page', () => { test( 'can create product, attributes and variations', async ( { page, } ) => { - await test.step( - 'Go to "Products > Add new" page, and reset the variable product tour.', - async () => { - await resetVariableProductTour( page ); - } - ); + await test.step( 'Reset the variable product tour.', async () => { + await resetVariableProductTour( page ); + } ); + + await test.step( 'Go to "Products > Add new" page.', async () => { + await page.goto( productPageURL ); + } ); await test.step( `Type "${ variableProductName }" into the "Product name" input field.`,