From: Aashish Sharma Date: Thu, 11 Jul 2024 07:05:59 +0000 (+0530) Subject: mgr/dashboard: fix rgw configuration e2e test X-Git-Tag: testing/wip-vshankar-testing-20240718.183435-debug~57^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=23bc23aa8d946793dec04a1fbd49c358ba0c8b36;p=ceph-ci.git mgr/dashboard: fix rgw configuration e2e test Fixes: https://tracker.ceph.com/issues/66901 Signed-off-by: Aashish Sharma --- 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 a1f4a9fbaf0..3caa248b5ba 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'); }