diff --git a/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts b/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts index a19e93f80c..831cce1ed1 100644 --- a/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts +++ b/frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts @@ -180,11 +180,12 @@ export default class CyOverviewPage extends Page { cy.contains(optionName) .should('exist'); - cy.get('.objective-three-dot-menu', { timeout: 1000 }) + cy.get('.objective-three-dot-menu') .contains(optionName) .as('option') .scrollIntoView() - .should('be.visible'); + .should('be.visible') + .wait(100); cy.get('@option') .should('have.class', 'objective-menu-option')