diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-08 15:04:16 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-11 16:02:34 +0100 |
commit | 30d5b0281140653192ba01fcbd11b0e367af96a0 (patch) | |
tree | 3aff87e95c1bd06de0cbb731d2b42b93223ac09d /cypress/e2e | |
parent | 1100e908b79ddecd1198c682ac3dcc41f2871122 (diff) | |
download | nextcloud-server-30d5b0281140653192ba01fcbd11b0e367af96a0.tar.gz nextcloud-server-30d5b0281140653192ba01fcbd11b0e367af96a0.zip |
feat(settings): Split account management into navigation and content
The should ease the maintenance of it due to reduced complexity.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'cypress/e2e')
-rw-r--r-- | cypress/e2e/settings/users_columns.cy.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cypress/e2e/settings/users_columns.cy.ts b/cypress/e2e/settings/users_columns.cy.ts index 363e0628508..5f2a293b824 100644 --- a/cypress/e2e/settings/users_columns.cy.ts +++ b/cypress/e2e/settings/users_columns.cy.ts @@ -34,7 +34,7 @@ describe('Settings: Show and hide columns', function() { beforeEach(function() { // open the settings dialog - cy.get('.app-navigation-entry__settings').contains('Account management settings').click() + cy.contains('button', 'Account management settings').click() // reset all visibility toggles cy.get('.modal-container #settings-section_visibility-settings input[type="checkbox"]').uncheck({ force: true }) @@ -57,7 +57,7 @@ describe('Settings: Show and hide columns', function() { }) // open the settings dialog - cy.get('.app-navigation-entry__settings').contains('Account management settings').click() + cy.contains('button', 'Account management settings').click() cy.contains('.modal-container', 'Account management settings').within(() => { // enable the language toggle @@ -88,7 +88,7 @@ describe('Settings: Show and hide columns', function() { }) // open the settings dialog - cy.get('.app-navigation-entry__settings').contains('Account management settings').click() + cy.contains('button', 'Account management settings').click() cy.contains('.modal-container', 'Account management settings').within(() => { // disable the last login toggle |