From 28ae3d3038b4136811ad489a66285a166b847e96 Mon Sep 17 00:00:00 2001 From: nfebe Date: Wed, 14 May 2025 15:24:55 +0100 Subject: [PATCH] test(file_sharing): Do not open advanced settings manually If a share note is present, the advanced settings should expand automatically, without the user needing to click. Signed-off-by: nfebe --- cypress/e2e/files_sharing/note-to-recipient.cy.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cypress/e2e/files_sharing/note-to-recipient.cy.ts b/cypress/e2e/files_sharing/note-to-recipient.cy.ts index a812a4d6c43..ceaf93aacc9 100644 --- a/cypress/e2e/files_sharing/note-to-recipient.cy.ts +++ b/cypress/e2e/files_sharing/note-to-recipient.cy.ts @@ -80,8 +80,6 @@ describe('files_sharing: Note to recipient', { testIsolation: true }, () => { cy.get('[data-cy-sidebar]').within(() => { // Open the share cy.get('[data-cy-files-sharing-share-actions]').first().click() - // Open the custom settings - cy.get('[data-cy-files-sharing-share-permissions-bundle="custom"]').click() cy.findByRole('checkbox', { name: /note to recipient/i }) .and('be.checked') @@ -90,4 +88,5 @@ describe('files_sharing: Note to recipient', { testIsolation: true }, () => { .and('have.value', 'Hello, this is the note.') }) }) + })