This is an automated email from the ASF dual-hosted git repository.

tenthe pushed a commit to branch fix-e2-tests
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/fix-e2-tests by this push:
     new fa3115572d test: wait for permission checkbox
fa3115572d is described below

commit fa3115572d15e0a670054be458f8401433ccc40b
Author: Philipp Zehnder <[email protected]>
AuthorDate: Fri Jul 24 10:11:51 2026 +0000

    test: wait for permission checkbox
---
 ui/cypress/support/utils/user/PermissionUtils.ts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui/cypress/support/utils/user/PermissionUtils.ts 
b/ui/cypress/support/utils/user/PermissionUtils.ts
index 01460da2ff..9a11fd48f4 100644
--- a/ui/cypress/support/utils/user/PermissionUtils.ts
+++ b/ui/cypress/support/utils/user/PermissionUtils.ts
@@ -163,7 +163,9 @@ export class PermissionUtils {
 
     public static validateUserCanChangePermissions(resourceName: string) {
         PermissionUtils.openManagePermissions(resourceName);
-        cy.dataCy('permission-public-element').should('exist');
+        cy.dataCy('permission-public-element', { timeout: 10000 }).should(
+            'exist',
+        );
         PermissionUtils.cancel();
     }
 

Reply via email to