From fcea5b7bbe9ccbdbba91a229b2f47ab5b4527c91 Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 21 Feb 2025 17:37:58 +0100 Subject: [PATCH] feat: refs #8581 validateVnTableRows --- test/cypress/support/commands.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 1fb5f7be0..008de0760 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -445,11 +445,10 @@ Cypress.Commands.add('validateVnTableRows', (opts = {}) => { let { cols = [], rows = [] } = opts; if (!Array.isArray(cols)) cols = [cols]; const rowSelector = rows.length - ? rows.map((row) => `:nth-child(${row})`).join(', ') + ? rows.map((row) => `> :nth-child(${row})`).join(', ') : '> *'; - - cy.get(`[data-cy="vnTable"] .q-virtual-scroll__content ${rowSelector}`).each( - ($el) => { + cy.get(`[data-cy="vnTable"] .q-virtual-scroll__content`).within(() => { + cy.get(`${rowSelector}`).each(($el) => { for (const { name, type = 'string', val, operation = 'equal' } of cols) { cy.wrap($el) .find(`[data-cy="vnTableCell_${name}"]`) @@ -457,7 +456,7 @@ Cypress.Commands.add('validateVnTableRows', (opts = {}) => { .then((text) => { if (type === 'string') expect(text.trim()).to.equal(val); if (type === 'number') { - const num = parseFloat(text.trim()); + const num = parseFloat(text.trim().replace(/[^\d.-]/g, '')); switch (operation) { case 'equal': expect(num).to.equal(val); @@ -486,6 +485,6 @@ Cypress.Commands.add('validateVnTableRows', (opts = {}) => { } }); } - }, - ); + }); + }); });