2023-10-31 07:56:51 +00:00
|
|
|
/// <reference types="cypress" />
|
|
|
|
describe('InvoiceInList', () => {
|
2024-08-09 08:47:15 +00:00
|
|
|
const firstRow = 'tbody.q-virtual-scroll__content tr:nth-child(1)';
|
|
|
|
const firstId = `${firstRow} > td:nth-child(1) span`;
|
|
|
|
const firstDetailBtn = `${firstRow} .q-btn:nth-child(1)`;
|
2024-03-20 07:03:25 +00:00
|
|
|
const summaryHeaders = '.summaryBody .header-link';
|
2023-10-31 07:56:51 +00:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2024-07-02 06:29:55 +00:00
|
|
|
cy.viewport(1920, 1080);
|
2023-10-31 07:56:51 +00:00
|
|
|
cy.login('developer');
|
2024-02-06 14:11:59 +00:00
|
|
|
cy.visit(`/#/invoice-in/list`);
|
2024-08-09 08:47:15 +00:00
|
|
|
cy.get('#searchbar input').type('{enter}');
|
2023-10-31 07:56:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect on clicking a invoice', () => {
|
2024-08-09 08:47:15 +00:00
|
|
|
cy.get(firstId)
|
2023-10-31 07:56:51 +00:00
|
|
|
.invoke('text')
|
2023-12-18 14:39:26 +00:00
|
|
|
.then((content) => {
|
2024-03-20 07:03:25 +00:00
|
|
|
const id = content.replace(/\D/g, '');
|
2024-08-09 08:47:15 +00:00
|
|
|
cy.get(firstRow).click();
|
2023-10-31 07:56:51 +00:00
|
|
|
cy.url().should('include', `/invoice-in/${id}/summary`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should open the details', () => {
|
|
|
|
cy.get(firstDetailBtn).click();
|
2023-11-09 12:26:03 +00:00
|
|
|
cy.get(summaryHeaders).eq(1).contains('Basic data');
|
|
|
|
cy.get(summaryHeaders).eq(4).contains('Vat');
|
2023-10-31 07:56:51 +00:00
|
|
|
});
|
|
|
|
});
|