diff options
author | Max <max@nextcloud.com> | 2025-03-05 10:11:31 +0100 |
---|---|---|
committer | Max <max@nextcloud.com> | 2025-03-05 10:11:45 +0100 |
commit | 44819ce203180a7aea97abe0b122acc3dd822a5f (patch) | |
tree | 3c4d40a40d2e36ea6adcb0ab736f8209123465e0 | |
parent | 03a5f923c0725e2304834589470617a9f7e7557f (diff) | |
download | nextcloud-server-fix/cy-selectors-for-files-trashbin.tar.gz nextcloud-server-fix/cy-selectors-for-files-trashbin.zip |
fix(cy): files_trashbin selection actions selectorfix/cy-selectors-for-files-trashbin
Selection actions did not have cy-data attribute in NC 30.
Signed-off-by: Max <max@nextcloud.com>
-rw-r--r-- | cypress/e2e/files_trashbin/files.cy.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/files_trashbin/files.cy.ts b/cypress/e2e/files_trashbin/files.cy.ts index c3e33d1647d..3cb941174d4 100644 --- a/cypress/e2e/files_trashbin/files.cy.ts +++ b/cypress/e2e/files_trashbin/files.cy.ts @@ -64,7 +64,7 @@ describe('files_trashbin: download files', { testIsolation: true }, () => { cy.get('[data-cy-files-list-row-checkbox]').should('have.length', 2) selectAllFiles() cy.get('.files-list__selected').should('have.text', '2 selected') - cy.get('[data-cy-files-list-selection-action="restore"]').should('be.visible') - cy.get('[data-cy-files-list-selection-action="download"]').should('not.exist') + cy.get('.files-list__row-actions-batch-restore').should('be.visible') + cy.get('.files-list__row-actions-batch-download').should('not.exist') }) }) |