From 847e9ad33fbfac99a947fc088e1c8c1c14c57853 Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Mon, 8 Jul 2024 14:35:53 +0200 Subject: [PATCH] Wait for 5s after dropdown click --- test/sql/selfServeExample.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/sql/selfServeExample.spec.ts b/test/sql/selfServeExample.spec.ts index 24f89200c..538e2ce58 100644 --- a/test/sql/selfServeExample.spec.ts +++ b/test/sql/selfServeExample.spec.ts @@ -9,6 +9,7 @@ test("Self Serve", async ({ page }) => { const regionDropdown = explorer.frame.getByText("Select a region"); await regionDropdown.click(); + await page.waitForTimeout(5000); const firstOption = explorer.frame.getByRole("option").first(); await firstOption.waitFor(); await firstOption.click();