From 62682237e4a9f88e2d9afd055852a0be7f66764f Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 6 Feb 2025 08:30:46 +0100 Subject: [PATCH] test: refs #6695 better stockBought --- src/pages/Entry/EntryStockBought.vue | 1 + test/cypress/integration/entry/stockBought.spec.js | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/Entry/EntryStockBought.vue b/src/pages/Entry/EntryStockBought.vue index fa0bdc12e..6f5aafdfd 100644 --- a/src/pages/Entry/EntryStockBought.vue +++ b/src/pages/Entry/EntryStockBought.vue @@ -179,6 +179,7 @@ function round(value) { @click="openDialog()" :title="t('entryStockBought.editTravel')" color="primary" + data-cy="editTravelBtn" /> diff --git a/test/cypress/integration/entry/stockBought.spec.js b/test/cypress/integration/entry/stockBought.spec.js index 078ad19cc..6d7030f93 100644 --- a/test/cypress/integration/entry/stockBought.spec.js +++ b/test/cypress/integration/entry/stockBought.spec.js @@ -26,11 +26,12 @@ describe('EntryStockBought', () => { cy.get(':nth-child(2) > .sticky > .q-btn > .q-btn__content > .q-icon').click(); cy.get('.q-table__bottom.row.items-center.q-table__bottom--nodata').should( 'have.text', - 'warningNo data available' + 'warningNo data available', ); }); it('Should edit travel m3 and refresh', () => { - cy.get('.vn-row > div > .q-btn > .q-btn__content > .q-icon').click(); + cy.waitForElement('[data-cy="editTravelBtn"]'); + cy.get('[data-cy="editTravelBtn"]').click(); cy.get('input[aria-label="m3"]').clear(); cy.get('input[aria-label="m3"]').type('60'); cy.get('.q-mt-lg > .q-btn--standard > .q-btn__content > .block').click();