From 4c7653d77d6b390f79087568ded48795fbe6a258 Mon Sep 17 00:00:00 2001 From: carlossa Date: Fri, 7 Mar 2025 07:32:53 +0100 Subject: [PATCH] fix: refs #8583 dataCy operator --- .../cypress/integration/worker/workerOperator.spec.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/test/cypress/integration/worker/workerOperator.spec.js b/test/cypress/integration/worker/workerOperator.spec.js index 93961072b..95839aeba 100644 --- a/test/cypress/integration/worker/workerOperator.spec.js +++ b/test/cypress/integration/worker/workerOperator.spec.js @@ -1,11 +1,6 @@ /// describe('WorkerOperator', () => { const userId = 1106; - const nWagons = '4'; - const numberOfWagons = '[data-cy="numberOfWagons"]'; - const linesLimit = '[data-cy="linesLimit"]'; - const volumeLimit = '[data-cy="volumeLimit"]'; - const sizeLimit = '[data-cy="sizeLimit"]'; beforeEach(() => { cy.viewport(1280, 720); cy.login('hr'); @@ -13,10 +8,10 @@ describe('WorkerOperator', () => { }); it('should fill the operator form', () => { - cy.dataCy('numberOfWagons').type(nWagons); + cy.dataCy('numberOfWagons').type('4'); cy.dataCy('linesLimit').type('6'); - cy.get('volumeLimit').type('3'); - cy.get('sizeLimit').type('3'); + cy.dataCy('volumeLimit').type('3'); + cy.dataCy('sizeLimit').type('3'); cy.saveCard(); cy.checkNotification('Data saved');