From bdffe0624abfab47065ffbfcea9869119a78f6ce Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Fri, 23 Sep 2022 19:03:55 +0530 Subject: [PATCH] test(misc): add wait for table load Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- scripts/cypress/support/commands.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/cypress/support/commands.js b/scripts/cypress/support/commands.js index a444fc7e3f..64251d9554 100644 --- a/scripts/cypress/support/commands.js +++ b/scripts/cypress/support/commands.js @@ -149,7 +149,9 @@ Cypress.Commands.add("openTableTab", (tn, rc) => { // .contains(tn) // .should('exist') // .click(); - // cy.wait(3000); + + // for some tables, linked records are not available immediately + cy.wait(1000); cy.get(".xc-row-table.nc-grid").should("exist");