fix waitFor in playwright

This commit is contained in:
Laurent Nguyen 2024-06-28 18:47:42 +02:00
parent db511207b4
commit 325cbdd188

View File

@ -10,7 +10,7 @@ test("Self Serve", async ({ page }) => {
const regionDropdown = explorer.frame.getByText("Select a region");
await regionDropdown.click();
const firstOption = explorer.frame.getByRole("option").first();
firstOption.waitFor();
await firstOption.waitFor();
await firstOption.click();
const currentRegionLabel = explorer.frame.getByLabel("Current Region");