From 23bc23aa8d946793dec04a1fbd49c358ba0c8b36 Mon Sep 17 00:00:00 2001 From: Aashish Sharma Date: Thu, 11 Jul 2024 12:35:59 +0530 Subject: [PATCH] mgr/dashboard: fix rgw configuration e2e test Fixes: https://tracker.ceph.com/issues/66901 Signed-off-by: Aashish Sharma --- .../mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts b/src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts index a1f4a9fbaf05..3caa248b5ba5 100644 --- a/src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts +++ b/src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts @@ -18,8 +18,11 @@ export class ConfigurationPageHelper extends PageHelper { this.selectSecretEngine(secret_engine); cy.get('#secret_engine').should('have.class', 'ng-valid'); cy.get('#address').type(address); + cy.get('#address').should('have.value', address); cy.get('#address').should('have.class', 'ng-valid'); cy.contains('button', 'Submit').click(); + cy.wait(500); + cy.get('cd-table').should('exist'); this.getFirstTableCell('SSE_KMS').should('exist'); } -- 2.47.3