From 26224d29a14f404d4df5d5b390b4ec2444f3a493 Mon Sep 17 00:00:00 2001 From: David Rajnoha Date: Wed, 17 Dec 2025 11:33:06 +0100 Subject: [PATCH] fix(cypress): Add wait after MP initialization --- web/cypress/support/commands/operator-commands.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/cypress/support/commands/operator-commands.ts b/web/cypress/support/commands/operator-commands.ts index 9e851453..f0196827 100644 --- a/web/cypress/support/commands/operator-commands.ts +++ b/web/cypress/support/commands/operator-commands.ts @@ -205,6 +205,8 @@ const operatorUtils = { expect(result.code).to.eq(0); cy.log(`Monitoring plugin pod is now running in namespace: ${MP.namespace}`); cy.reload(true); + cy.get('#page-sidebar', { timeout: 30000 }).should('be.visible'); + cy.wait(3000); }); } else {