From 5a410c02a623829b2f4e113edfccf931710d383d Mon Sep 17 00:00:00 2001 From: Tam Mullen Date: Wed, 5 Aug 2020 12:49:42 +0100 Subject: [PATCH] Fix e2e OBW test to not untick physical products in product type list --- tests/e2e/utils/components.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/utils/components.js b/tests/e2e/utils/components.js index 0e6e721c4b0..a9bb6602d6e 100644 --- a/tests/e2e/utils/components.js +++ b/tests/e2e/utils/components.js @@ -116,7 +116,7 @@ const completeOnboardingWizard = async () => { expect( productTypesCheckboxes ).toHaveLength( 8 ); // Select Physical and Downloadable products - for ( let i = 0; i < 2; i++ ) { + for ( let i = 1; i < 2; i++ ) { await productTypesCheckboxes[i].click(); }