From 0fa9f3de8daeef2204d8673564ee7aa595e54574 Mon Sep 17 00:00:00 2001 From: Miguel Lehmann Date: Tue, 14 Jan 2025 12:16:25 +0100 Subject: [PATCH] add a visability check to e2e objective test --- frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts b/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts index 68a806b995..41eb885b9c 100644 --- a/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts +++ b/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts @@ -181,6 +181,7 @@ export default class CyOverviewPage extends Page { .as('keyResults'); this.getObjectiveByName(objectiveName) .findByTestId('three-dot-menu') + .should('be.visible') .click(); this.selectFromThreeDotMenu('Objective duplizieren'); cy.wait('@keyResults');