diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-07-07 16:59:08 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-07-12 17:30:11 -0700 |
commit | 957dbee1b02f4adc9b7a58913a3709fd8cedd288 (patch) | |
tree | 4428202c9de3215064bb02fe1fdce5a37a97d253 /cypress | |
parent | 821fcc6d8e158b0dbb9c65faca9913c74e45b459 (diff) | |
download | nextcloud-server-957dbee1b02f4adc9b7a58913a3709fd8cedd288.tar.gz nextcloud-server-957dbee1b02f4adc9b7a58913a3709fd8cedd288.zip |
fix(cypress): users_disable
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'cypress')
-rw-r--r-- | cypress/e2e/settings/users_disable.cy.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cypress/e2e/settings/users_disable.cy.ts b/cypress/e2e/settings/users_disable.cy.ts index 7495950b3c1..9bf175cf0a7 100644 --- a/cypress/e2e/settings/users_disable.cy.ts +++ b/cypress/e2e/settings/users_disable.cy.ts @@ -41,24 +41,24 @@ describe('Settings: Disable and enable users', function() { // open the User settings cy.visit('/settings/users') // see that the user is in the list of active users - cy.get(`.user-list-grid .row[data-id="${jdoe.userId}"]`).within(() => { + cy.get(`tbody.user-list__body tr td[data-test="${jdoe.userId}"]`).parents('tr').within(() => { // see that the list of users contains the user jdoe cy.contains(jdoe.userId).should('exist') // open the actions menu for the user - cy.get('.userActions button.action-item__menutoggle').click() + cy.get('td.row__cell--actions button.action-item__menutoggle').click() }) // The "Disable user" action in the actions menu is shown and clicked cy.get('.action-item__popper .action').contains('Disable user').should('exist').click() // When clicked the section is not shown anymore - cy.get(`.user-list-grid .row[data-id="${jdoe.userId}"]`).should('not.exist') + cy.get(`tbody.user-list__body tr td[data-test="${jdoe.userId}"]`).parents('tr').should('not.be.visible') // But the disabled user section now exists cy.get('#disabled').should('exist') // Open disabled users section cy.get('#disabled a').click() cy.url().should('match', /\/disabled/) // The list of disabled users should now contain the user - cy.get(`.user-list-grid .row[data-id="${jdoe.userId}"]`).should('exist') + cy.get(`tbody.user-list__body tr td[data-test="${jdoe.userId}"]`).parents('tr').should('exist') }) it('Can enable the user', function() { @@ -71,11 +71,11 @@ describe('Settings: Disable and enable users', function() { cy.get('#disabled a').click() cy.url().should('match', /\/disabled/) - cy.get(`.user-list-grid .row[data-id="${jdoe.userId}"]`).within(() => { + cy.get(`tbody.user-list__body tr td[data-test="${jdoe.userId}"]`).parents('tr').within(() => { // see that the list of disabled users contains the user jdoe cy.contains(jdoe.userId).should('exist') // open the actions menu for the user - cy.get('.userActions button.action-item__menutoggle').click() + cy.get('td.row__cell--actions button.action-item__menutoggle').click() }) // The "Enable user" action in the actions menu is shown and clicked |