17 lines
576 B
JavaScript
17 lines
576 B
JavaScript
/// <reference types="cypress" />
|
|
describe('InvoiceOut negative bases', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1920, 1080);
|
|
cy.login('developer');
|
|
cy.visit(`/#/invoice-out/negative-bases`);
|
|
});
|
|
|
|
it('should filter and download as CSV', () => {
|
|
cy.get(
|
|
':nth-child(7) > .full-width > :nth-child(1) > .column > div.q-px-xs > .q-field > .q-field__inner > .q-field__control'
|
|
).type('23{enter}');
|
|
cy.get('#subToolbar > .q-btn').click();
|
|
cy.checkNotification('CSV downloaded successfully');
|
|
});
|
|
});
|