#6630 fix css vnLog #150

Merged
jorgep merged 13 commits from 6630-fixCssVnLog into dev 2024-01-12 07:28:45 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 14e6854881 - Show all commits

View File

@ -9,6 +9,7 @@ describe('InvoiceInList', () => {
beforeEach(() => {
cy.login('developer');
cy.visit(`/#/invoice-in`);
cy.clickFilterSearchBtn();
});
it('should redirect on clicking a invoice', () => {

View File

@ -183,4 +183,8 @@ Cypress.Commands.add('writeSearchbar', (value) => {
Cypress.Commands.add('validateContent', (selector, expectedValue) => {
cy.get(selector).should('have.text', expectedValue);
});
Cypress.Commands.add('clickFilterSearchBtn', () => {
cy.get('.q-item__section > .q-btn > .q-btn__content > .q-icon').click();
});
// registerCommands();