refs #6384 test: e2e

This commit is contained in:
Javier Segarra 2024-01-09 12:06:17 +01:00
parent d139d670f1
commit 762daa620b
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/// <reference types="cypress" />
describe('VnSearchBar', () => {
beforeEach(() => {
cy.login('developer');
cy.visit('/');
});
it('should redirect to new customer', () => {
cy.visit('#/customer/1112/basic-data')
cy.get('.q-toolbar > .q-btn--round.q-btn--dense > .q-btn__content > .q-icon').click();
cy.get('.q-item > .q-item__label').should('have.text',' #1112')
cy.get('.fullscreen').click();
cy.get('#searchbar > form > label > div:nth-child(1) input').clear();
cy.get('#searchbar > form > label > div:nth-child(1) input').type('1{enter}');
cy.get('.q-toolbar > .q-btn--round.q-btn--dense > .q-btn__content > .q-icon').click();
cy.get('.q-item > .q-item__label').should('have.text',' #1')
});
});