refs #6384 test: e2e
This commit is contained in:
parent
d139d670f1
commit
762daa620b
|
@ -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')
|
||||
});
|
||||
|
||||
|
||||
});
|
Loading…
Reference in New Issue