test/cypress: allow DOM elements to settle after reload

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
Raju Udava
2022-05-03 16:52:29 +05:30
parent 9fb81cb5fe
commit eda3ecc4f1

View File

@@ -338,6 +338,9 @@ Cypress.Commands.add("renameTable", (oldName, newName) => {
.should('exist')
.first()
.click();
// kludge: tab appears to flush re-load. wait for it to stabalize
cy.wait(8000)
});
Cypress.Commands.add("createColumn", (table, columnName) => {