0
0
Fork 0

refs #6677 fix e2e

This commit is contained in:
Carlos Satorres 2024-01-29 13:54:41 +01:00
parent a89748827f
commit 5c87cfc671
1 changed files with 2 additions and 1 deletions

View File

@ -16,11 +16,12 @@ describe('InvoiceInBasicData', () => {
cy.get(selects).eq(0).type('Bros'); cy.get(selects).eq(0).type('Bros');
cy.get(selects).eq(0).type('{enter}'); cy.get(selects).eq(0).type('{enter}');
cy.get('[title="Reset"]').click();
cy.get(appendBtns).eq(0).click(); cy.get(appendBtns).eq(0).click();
cy.get('input').eq(2).type(4739); cy.get('input').eq(2).type(4739);
cy.saveCard(); cy.saveCard();
cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Bros nick'); cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Plants nick');
cy.get('input').eq(2).invoke('val').should('eq', '4739'); cy.get('input').eq(2).invoke('val').should('eq', '4739');
}); });