Skip to content

Commit

Permalink
NTR: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed Nov 13, 2024
1 parent f6e708b commit b7c8d92
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,12 @@ export default class CheckoutAction {
cy.wait(1000);
cy.get('select.country-select:eq(0)').select(billingCountry);
cy.get('.address-form-actions:eq(0) button').click();
cy.wait(1000);
cy.get('.js-pseudo-modal .modal-dialog .btn-close').click();

//since 6.6.8.0 the edit address modal does not close automatically
if(shopware.isVersionGreaterEqual('6.6.8.0')){
cy.wait(1000);
cy.get('.js-pseudo-modal .modal-dialog .btn-close').click();
}

}
}

0 comments on commit b7c8d92

Please sign in to comment.