Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial packages update #3959

Merged
merged 15 commits into from
Aug 9, 2024
Prev Previous commit
Next Next commit
Try to inspect the element
  • Loading branch information
felipeelia committed Aug 8, 2024
commit 05bd1f3043ff7204636c271f98667f13d9d0b64e
8 changes: 7 additions & 1 deletion tests/cypress/integration/features/woocommerce.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,14 @@ describe('WooCommerce Feature', { tags: '@slow' }, () => {
if (wcVersion === '6.4.0') {
cy.get('#place_order').click();
} else {
cy.get('.wc-block-components-checkout-place-order-button').then(($el) => {
cy.log($el[0].outerHTML);
});
cy.get('.wc-block-components-checkout-place-order-button').click();
cy.get('.wc-block-components-checkout-place-order-button').then(($el) => {
cy.log($el[0].outerHTML);
});
cy.get('.wc-block-components-checkout-place-order-button').click();
cy.get('.wc-block-checkout__billing-fields').scrollIntoView();
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(5000);
}
Expand Down
Loading