From 67d1a6753ac868ce9bd8c28ebc3a038f04597e9f Mon Sep 17 00:00:00 2001 From: Luka Trovic Date: Tue, 15 Oct 2024 13:59:39 +0200 Subject: [PATCH] ci: fix cypress test Signed-off-by: Luka Trovic --- cypress/support/commands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress/support/commands.js b/cypress/support/commands.js index dbef64203..6e3102d95 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -110,6 +110,7 @@ Cypress.Commands.add('shareBoardWithUi', (userId) => { cy.intercept({ method: 'GET', url: `**/ocs/v2.php/apps/files_sharing/api/v1/sharees?search=${userId}*` }).as('fetchRecipients') cy.get('[aria-label="Open details"]').click() cy.get('.app-sidebar').should('be.visible') + cy.get('.select input').click() cy.get('.select input').type(`${userId}`) cy.wait('@fetchRecipients', { timeout: 7000 })