From 5d4feb34d76cbae55142a088fb51333f692028ab Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 26 Feb 2025 16:29:20 +0100 Subject: [PATCH] fix: refs #8484 rollback --- .../integration/claim/claimPhoto.spec.js | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/test/cypress/integration/claim/claimPhoto.spec.js b/test/cypress/integration/claim/claimPhoto.spec.js index 8e216cb3d..c3522cbfe 100755 --- a/test/cypress/integration/claim/claimPhoto.spec.js +++ b/test/cypress/integration/claim/claimPhoto.spec.js @@ -1,6 +1,6 @@ /// - -describe('ClaimPhoto', () => { +// redmine.verdnatura.es/issues/8417 +describe.skip('ClaimPhoto', () => { beforeEach(() => { const claimId = 1; cy.login('developer'); @@ -21,21 +21,18 @@ describe('ClaimPhoto', () => { }); cy.get('.q-notification__message').should('have.text', 'Data saved'); }); - // redmine.verdnatura.es/issues/8417 - it.skip('should open first image dialog change to second and close', () => { - cy.get( - ':nth-child(1) > .q-card > .q-img > .q-img__container > .q-img__image', - ).click(); + + it('should open first image dialog change to second and close', () => { + cy.get(':nth-last-child(1) > .q-card').click(); cy.get('.q-carousel__slide > .q-img > .q-img__container > .q-img__image').should( 'be.visible', ); - cy.get('.q-carousel__control > button').as('nextButton').click(); + cy.get('.q-carousel__control > button').click(); cy.get( '.q-dialog__inner > .q-toolbar > .q-btn > .q-btn__content > .q-icon', ).click(); - cy.get('.q-carousel__slide > .q-img > .q-img__container > .q-img__image').should( 'not.be.visible', ); @@ -43,7 +40,7 @@ describe('ClaimPhoto', () => { it('should remove third and fourth file', () => { cy.get( - '.multimediaParent > :nth-child(3) > .q-btn > .q-btn__content > .q-icon', + '.multimediaParent > :nth-last-child(1) > .q-btn > .q-btn__content > .q-icon', ).click(); cy.get( '.q-card__actions > .q-btn--unelevated > .q-btn__content > .block', @@ -51,7 +48,7 @@ describe('ClaimPhoto', () => { cy.get('.q-notification__message').should('have.text', 'Data deleted'); cy.get( - '.multimediaParent > :nth-child(3) > .q-btn > .q-btn__content > .q-icon', + '.multimediaParent > :nth-last-child(1) > .q-btn > .q-btn__content > .q-icon', ).click(); cy.get( '.q-card__actions > .q-btn--unelevated > .q-btn__content > .block',