Skip to content
Next Next commit
fix(cypress): Force click on activity tab
Signed-off-by: Marcel Müller <[email protected]>
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
SystemKeeper authored and artonge committed May 22, 2025
commit d69020d4ba4b42600b98f2eb7ecfa132f7421a60
2 changes: 1 addition & 1 deletion cypress/e2e/sidebarUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function showActivityTab(fileName: string) {
cy.intercept('GET', '/ocs/v2.php/apps/activity/api/v2/activity/filter**').as('getActivities')

showSidebarForFile(fileName)
cy.get('#app-sidebar-vue').contains('Activity').click()
cy.get('#app-sidebar-vue').contains('Activity').click({ force: true })

cy.wait('@getActivities')
}
Expand Down