fix: refs #6891 fix invoiceInBasicData test test
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-05-13 16:46:28 +02:00
parent 6a6d5b6d23
commit 364367d2f1
1 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,8 @@
/// <reference types="cypress" /> /// <reference types="cypress" />
describe('InvoiceInBasicData', () => { describe('InvoiceInBasicData', () => {
const selects = '.q-form .q-card>:nth-child(1) > :nth-child(1) > .q-field'; const formInputs = '.q-form > .q-card input';
const appendBtns = 'label button'; const firstFormSelect = '.q-card > .vn-row:nth-child(1) > .q-select';
const appendBtns = '.q-form label button';
const dialogAppendBtns = '.q-dialog label button'; const dialogAppendBtns = '.q-dialog label button';
const dialogInputs = '.q-dialog input'; const dialogInputs = '.q-dialog input';
const dialogActionBtns = '.q-card__actions button'; const dialogActionBtns = '.q-card__actions button';
@ -12,15 +13,14 @@ describe('InvoiceInBasicData', () => {
}); });
it('should edit the provideer and supplier ref', () => { it('should edit the provideer and supplier ref', () => {
cy.selectOption(selects, 'Bros'); cy.selectOption(firstFormSelect, 'Bros');
cy.get('[title="Reset"]').click(); 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(formInputs).eq(1).type(4739);
cy.saveCard(); cy.saveCard();
cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Plants nick'); cy.get(`${firstFormSelect} input`).invoke('val').should('eq', 'Plants nick');
cy.get('input').eq(2).invoke('val').should('eq', '4739'); cy.get(formInputs).eq(1).invoke('val').should('eq', '4739');
}); });
it('should edit the dms data', () => { it('should edit the dms data', () => {