0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/integration/vnSearchBar.spec.js

21 lines
850 B
JavaScript
Raw Normal View History

2024-01-09 11:06:17 +00:00
/// <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')
});
});