2023-10-31 07:56:51 +00:00
|
|
|
/// <reference types="cypress" />
|
|
|
|
describe('InvoiceInList', () => {
|
|
|
|
const firstCard = '.q-card:nth-child(1)';
|
2023-12-18 14:39:26 +00:00
|
|
|
const firstChipId =
|
|
|
|
':nth-child(1) > :nth-child(1) > .justify-between > .flex > .q-chip > .q-chip__content';
|
2023-10-31 07:56:51 +00:00
|
|
|
const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)';
|
|
|
|
const summaryHeaders = '.summaryBody .header';
|
2024-02-19 09:56:47 +00:00
|
|
|
const screen = '.q-page-container > .q-drawer-container > .fullscreen';
|
2023-10-31 07:56:51 +00:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
cy.login('developer');
|
2024-02-06 14:11:59 +00:00
|
|
|
cy.visit(`/#/invoice-in/list`);
|
2024-02-19 09:56:47 +00:00
|
|
|
cy.get(screen).click();
|
2023-10-31 07:56:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect on clicking a invoice', () => {
|
2023-12-18 14:39:26 +00:00
|
|
|
cy.get(firstChipId)
|
2023-10-31 07:56:51 +00:00
|
|
|
.invoke('text')
|
2023-12-18 14:39:26 +00:00
|
|
|
.then((content) => {
|
|
|
|
const id = content.substring(4);
|
2023-10-31 07:56:51 +00:00
|
|
|
cy.get(firstCard).click();
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|