Skip to content

Commit

Permalink
Trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMoeri committed Jan 23, 2025
1 parent 9901bc9 commit 12c88fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/cypress/support/helper/dom-helper/pages/overviewPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,14 @@ export default class CyOverviewPage extends Page {
.should('exist');

cy.get('.objective-three-dot-menu')
.should('exist')
.and('be.visible')
.within(() => {
cy.contains(optionName)
.should('be.visible')
.and('have.class', 'objective-menu-option')
.click();
});
.contains(optionName)
.as('option')
.scrollIntoView()
.should('be.visible');

cy.get('@option')
.should('have.class', 'objective-menu-option')
.click();
}

duplicateObjective(objectiveName: string) {
Expand Down

0 comments on commit 12c88fe

Please sign in to comment.