diff --git a/tests/playwright/pages/Dashboard/TreeView.ts b/tests/playwright/pages/Dashboard/TreeView.ts index cc226a0537..6bcc1429ff 100644 --- a/tests/playwright/pages/Dashboard/TreeView.ts +++ b/tests/playwright/pages/Dashboard/TreeView.ts @@ -162,6 +162,10 @@ export class TreeViewPage extends BasePage { // Tab render is slow for playwright await this.dashboard.waitForTabRender({ title, mode }); + + // Some of the tests are flaky due to immediate operations on the table + // Tab render above is no more valid + await this.rootPage.waitForTimeout(1000); } async verifyTable({ title, index, exists = true }: { title: string; index?: number; exists?: boolean }) {