From 71c91c295cf43554fc980dc8f4c131adda9a9e97 Mon Sep 17 00:00:00 2001 From: alexm Date: Sun, 23 Mar 2025 07:22:30 +0100 Subject: [PATCH] test(WorkerPda): refs #5926 replace confirmButton function with cy.clickConfirm for consistency --- test/cypress/integration/worker/workerPda.spec.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/test/cypress/integration/worker/workerPda.spec.js b/test/cypress/integration/worker/workerPda.spec.js index 8c539cf70..5d4496f18 100644 --- a/test/cypress/integration/worker/workerPda.spec.js +++ b/test/cypress/integration/worker/workerPda.spec.js @@ -25,7 +25,7 @@ describe('WorkerPda', () => { creatNewPDA(); cy.dataCy('workerPda-send').click(); - confirmButton(); + cy.clickConfirm(); cy.checkNotification('PDF sended to signed'); //Download @@ -63,7 +63,7 @@ describe('WorkerPda', () => { cy.selectRows([1, 2]); cy.get('#st-actions').contains('Send').click(); - confirmButton(); + cy.clickConfirm(); cy.checkNotification('PDF sended to signed'); removeNewPDA(); @@ -77,12 +77,6 @@ describe('WorkerPda', () => { function removeNewPDA() { cy.dataCy('workerPda-remove').first().click(); - confirmButton(); - } - - function confirmButton() { - cy.get( - '.q-card__actions > .q-btn--unelevated > .q-btn__content > .block', - ).click(); + cy.clickConfirm(); } });