diff options
author | Nizamudeen A <nia@redhat.com> | 2024-07-12 09:23:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-12 09:23:39 +0200 |
commit | 3c60f06ea8ad6e6298879acb7464fe82932cbe27 (patch) | |
tree | 494697d7e27d8fd6501623b407690f14aeb5231f /src | |
parent | Merge pull request #57989 from rhcs-dashboard/multicluster-e2e (diff) | |
parent | mgr/dashboard: fix rgw configuration e2e test (diff) | |
download | ceph-3c60f06ea8ad6e6298879acb7464fe82932cbe27.tar.xz ceph-3c60f06ea8ad6e6298879acb7464fe82932cbe27.zip |
Merge pull request #58531 from rhcs-dashboard/fix-66901-main
mgr/dashboard: fix rgw configuration e2e test
Reviewed-by: Nizamudeen A <nia@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/configuration.po.ts | 3 |
1 files changed, 3 insertions, 0 deletions
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'); } |