1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/tests/cypress/integration/invoices.cy.js

55 lines
1.8 KiB
JavaScript
Raw Normal View History

2023-03-12 02:47:21 +01:00
describe('Test Invoices', () => {
it('Show Invoice List.', () => {
cy.visit('/client/login');
cy.contains('Client Portal');
cy.get('input[name=email]').type('cypress@example.com');
cy.get('input[name=password]').type('password{enter}');
cy.url().should('include', '/invoices');
cy.get('[dusk="pay-now"]').first().click();
cy.url().should('include', '/invoices/payment');
cy.get('[dusk="pay-now-dropdown"]').first().click();
cy.get('[dusk="pay-with-0"]').first().click();
cy.url().should('include', '/payments/process');
cy.get('input[name=client_address_line_1]').clear().type('5 Wallaby Way');
cy.get('input[name=client_city]').clear().type('Perth');
cy.get('input[name=client_state]').clear().type('WA');
2023-03-12 05:51:26 +01:00
cy.get('#client_country').select("840");
2023-03-12 02:47:21 +01:00
cy.get('input[name=client_shipping_address_line_1]').clear().type('5 Wallaby Way');
cy.get('input[name=client_shipping_city]').clear().type('Perth');
cy.get('input[name=client_shipping_state]').clear().type('WA');
2023-03-12 05:51:26 +01:00
cy.get('#client_country').select("840");
2023-03-12 02:47:21 +01:00
cy.contains('Continue').click();
2023-03-12 05:51:26 +01:00
cy.get('#cardholder-name').type('Cypress Test');
cy.get("iframe").then($iframe => {
const $body = $iframe.contents().find("body");
cy.wrap($body)
.find("input[placeholder='Card number']")
.type("4242424242424242");
cy.wrap($body)
.find("input[placeholder='MM / YY']")
.type("1225");
cy.wrap($body)
.find("input[placeholder='CVC']")
.type("100");
});
cy.get('#pay-now').click();
2023-03-12 05:57:20 +01:00
cy.url().should('include', '/payments');
2023-03-12 02:47:21 +01:00
});
});