From 2ead484026c2ed48fea357c742ca9dcbe745983c Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 25 Nov 2024 14:59:26 +0100 Subject: [PATCH] test: refs #8231 fix VnLocation --- test/cypress/integration/vnComponent/vnLocation.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/vnComponent/vnLocation.spec.js b/test/cypress/integration/vnComponent/vnLocation.spec.js index aeb938c6f..06c23f4ee 100644 --- a/test/cypress/integration/vnComponent/vnLocation.spec.js +++ b/test/cypress/integration/vnComponent/vnLocation.spec.js @@ -103,12 +103,12 @@ describe('VnLocation', () => { const province = 'Valencia'; cy.get(createLocationButton).click(); cy.get('.q-card > h1').should('have.text', 'New postcode'); - cy.get(dialogInputs).eq(0).clear(); - cy.get(dialogInputs).eq(0).type(postCode); cy.selectOption( `${createForm.prefix} > :nth-child(4) > .q-select > ${createForm.sufix}`, province ); + cy.get(dialogInputs).eq(0).clear(); + cy.get(dialogInputs).eq(0).type(postCode); cy.get('.q-mt-lg > .q-btn--standard').click(); cy.get(`${createForm.prefix}`).should('not.exist'); cy.waitForElement('.q-form');