From 12230633990b49b449671cc3e9688e2bbc14ee60 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Tue, 25 Mar 2025 14:31:45 -0700 Subject: [PATCH] test(settings): Correctly find group in select Signed-off-by: Christopher Ng --- cypress/e2e/settings/users_modify.cy.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress/e2e/settings/users_modify.cy.ts b/cypress/e2e/settings/users_modify.cy.ts index f128375e868..d4948cb3d53 100644 --- a/cypress/e2e/settings/users_modify.cy.ts +++ b/cypress/e2e/settings/users_modify.cy.ts @@ -239,6 +239,8 @@ describe('Settings: Change user properties', function() { cy.get('.vs__selected').should('not.exist') // Open the dropdown menu cy.get('[role="combobox"]').click({ force: true }) + // Search for the group + cy.get('[role="combobox"]').type('userstestgroup') // select the group cy.contains('li', groupName).click({ force: true })