Skip to content

Commit

Permalink
Fix WooCommerce tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeelia committed Feb 28, 2024
1 parent d49322c commit 7fddfe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cypress/integration/features/woocommerce.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('WooCommerce Feature', { tags: '@slow' }, () => {
cy.get('#billing-address_1, #billing_address_1').type(userData.address);
cy.get('#billing-city, #billing_city').type(userData.city);
cy.get('#billing-postcode, #billing_postcode').type(userData.postCode);
cy.get('#billing-phone, #billing_phone').type(userData.phoneNumber);
cy.get('#billing-phone, #billing_phone').type(userData.phoneNumber, { force: true }); // Label covers it
cy.get('#email, #billing_email').clearThenType(userData.email);

/**
Expand Down

0 comments on commit 7fddfe4

Please sign in to comment.