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

E2E adjustments: Payment method translations #1008

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/e2e/ps8/03_mollie.ps8.PaymentTestsOrdersAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ it('C339374: 37 Belfius Order Shipping, Refunding [Orders API]', () => {
it('C339375: 38 Bank Transfer Checkouting [Orders API]', () => {
cy.navigatingToThePaymentPS8()
//Payment method choosing
cy.contains('Überweisung').click({force:true})
cy.contains('Bank transfer').click({force:true})
cy.get('.condition-label > .js-terms').click({force:true})
cy.contains('Place order').click()
cy.get('[value="paid"]').click()
Expand Down
8 changes: 4 additions & 4 deletions cypress/e2e/ps8/05_mollie.ps8.PaymentTestsPaymentsAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ it('C339382: 47 iDEAL Order BO Refunding, Partial Refunding [Payments API]', ()
it('C339383: 48 Credit Card Checkouting [Payments API]', () => {
cy.navigatingToThePaymentPS8()
//Payment method choosing
cy.contains('Karte').click({force:true})
cy.contains('Card').click({force:true})
//Credit card inputing
cy.CreditCardFillingIframe()
cy.get('.condition-label > .js-terms').click({force:true})
Expand Down Expand Up @@ -90,7 +90,7 @@ it.skip('C339385: 50 Credit Card Guest Checkouting [Payments API]', () => { // p
cy.get(':nth-child(13) > .col-md-6 > .form-control').type('+370 000',{delay:0}).as('telephone')
cy.get('.form-footer > .continue').click()
cy.get('#js-delivery > .continue').click()
cy.contains('Karte').click({force:true})
cy.contains('Card').click({force:true})
//Credit card inputing
cy.CreditCardFillingIframe()
cy.get('.condition-label > .js-terms').click({force:true})
Expand Down Expand Up @@ -128,7 +128,7 @@ it.skip('C339386: 51 Credit Card Guest Checkouting with not 3DS secure card [Pay
cy.get(':nth-child(13) > .col-md-6 > .form-control').type('+370 000',{delay:0}).as('telephone')
cy.get('.form-footer > .continue').click()
cy.get('#js-delivery > .continue').click()
cy.contains('Karte').click({force:true})
cy.contains('Card').click({force:true})
//Credit card inputing
cy.NotSecureCreditCardFillingIframe()
cy.get('.condition-label > .js-terms').click({force:true})
Expand Down Expand Up @@ -211,7 +211,7 @@ it('C339400: 65 Belfius BO Refunding, Partial Refunding [Payments API]', () => {
it('C339401: 66 Bank Transfer Checkouting [Payments API]', () => {
cy.navigatingToThePaymentPS8()
//Payment method choosing
cy.contains('Überweisung').click({force:true})
cy.contains('Bank Transfer').click({force:true})
cy.get('.condition-label > .js-terms').click({force:true})
cy.contains('Place order').click()
cy.get('[value="paid"]').click()
Expand Down
Loading