diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-01-23 11:44:50 -0800 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-02 12:44:25 +0100 |
commit | 45cd4dfa207df0263ae699078418e94ead4d10f1 (patch) | |
tree | 1b75986892dc4a75f71112a7427eb32784e9b492 /cypress/e2e | |
parent | bd50327fd1928aeeb3c65f08f6b94ab1bff73e08 (diff) | |
download | nextcloud-server-45cd4dfa207df0263ae699078418e94ead4d10f1.tar.gz nextcloud-server-45cd4dfa207df0263ae699078418e94ead4d10f1.zip |
test(files): Fix file picker test
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'cypress/e2e')
-rw-r--r-- | cypress/e2e/files/files_copy-move.cy.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/e2e/files/files_copy-move.cy.ts b/cypress/e2e/files/files_copy-move.cy.ts index 17a9213f427..151423153ef 100644 --- a/cypress/e2e/files/files_copy-move.cy.ts +++ b/cypress/e2e/files/files_copy-move.cy.ts @@ -146,7 +146,7 @@ describe('Files: Move or copy files', { testIsolation: true }, () => { triggerActionForFile('original.txt', 'move-copy') // select new folder - cy.get('.file-picker a[title="Home"]').should('be.visible').click() + cy.get('.file-picker button[title="Home"]').should('be.visible').click() // click move cy.get('.file-picker').contains('button', 'Move').should('be.visible').click() |