From 95f96d7ebdc001214728c9ae8f4edb7608b09074 Mon Sep 17 00:00:00 2001 From: provira Date: Wed, 29 Jan 2025 08:31:40 +0100 Subject: [PATCH] fix: refs #8423 removed data-cy usage --- test/cypress/integration/zone/zoneWarehouse.spec.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/cypress/integration/zone/zoneWarehouse.spec.js b/test/cypress/integration/zone/zoneWarehouse.spec.js index ac7a91926..6ace13715 100644 --- a/test/cypress/integration/zone/zoneWarehouse.spec.js +++ b/test/cypress/integration/zone/zoneWarehouse.spec.js @@ -14,7 +14,7 @@ describe('ZoneWarehouse', () => { it('should throw an error if the warehouse chosen is already put in the zone', () => { cy.addBtnClick(); - cy.get('[data-cy="Warehouse_select"]').type('Warehouse Two{enter}'); + cy.get('.vn-row > .q-field > .q-field__inner > .q-field__control').type('Warehouse Two{enter}'); cy.get(saveBtn).click(); cy.checkNotification(dataError); }); @@ -24,7 +24,6 @@ describe('ZoneWarehouse', () => { cy.fillInForm(data); cy.get(saveBtn).click(); cy.get('.q-mt-lg > .q-btn--standard').click(); - cy.get('tbody > :nth-child(2) > :nth-child(2) > .q-icon').click(); cy.get('[title="Confirm"]').click();