diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-10 16:38:38 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-04-10 16:38:38 +0200 |
commit | 4166733965bb163dac922a3c4cab891d6530f3a4 (patch) | |
tree | aec5d0a376bcaa64ad370170f843da0d70377160 /cypress | |
parent | 5088cbc48978a7b75a78766ba8db223903e900b6 (diff) | |
download | nextcloud-server-4166733965bb163dac922a3c4cab891d6530f3a4.tar.gz nextcloud-server-4166733965bb163dac922a3c4cab891d6530f3a4.zip |
fix(tests): Adjust tests for changed css classes
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'cypress')
-rw-r--r-- | cypress/e2e/settings/users.cy.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/e2e/settings/users.cy.ts b/cypress/e2e/settings/users.cy.ts index da2b934af92..c90afc8866e 100644 --- a/cypress/e2e/settings/users.cy.ts +++ b/cypress/e2e/settings/users.cy.ts @@ -127,7 +127,7 @@ describe('Settings: Create and delete accounts', function() { // The "Delete account" action in the actions menu is shown and clicked cy.get('.action-item__popper .action').contains('Delete account').should('exist').click({ force: true }) // And confirmation dialog accepted - cy.get('.oc-dialog button').contains(`Delete ${testUser.userId}`).click({ force: true }) + cy.get('.nc-generic-dialog button').contains(`Delete ${testUser.userId}`).click({ force: true }) // Make sure no confirmation modal is shown handlePasswordConfirmation(admin.password) |