Skip to content

Commit

Permalink
NTR: fix cypress for 6.4 (#796)
Browse files Browse the repository at this point in the history
Co-authored-by: Vitalij Mik <[email protected]>
  • Loading branch information
BlackScorp and Vitalij Mik committed Jul 30, 2024
1 parent 5668b08 commit 9fbf487
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ export default class CheckoutAction {

changeBillingCountry(billingCountry){

cy.get('.confirm-shipping-address a[data-address-editor]').click();
cy.get('.js-confirm-overview-addresses .card:eq(0) .card-actions a[data-address-editor]').click();
cy.wait(2000);
cy.get('.address-editor-edit').click();
cy.wait(1000);
cy.get('select#shipping-addressAddressCountry.country-select').eq(0).select(billingCountry);
cy.get('.address-form-actions button').eq(0).click();
cy.get('select.country-select:eq(0)').select(billingCountry);
cy.get('.address-form-actions:eq(0) button').click();
}
}

0 comments on commit 9fbf487

Please sign in to comment.