Try forcing click

This commit is contained in:
Laurent Nguyen 2024-07-08 15:09:47 +02:00
parent c42a93f567
commit 29b9fa1bda
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ test("Self Serve", async ({ page }) => {
await regionDropdown.click(); await regionDropdown.click();
const firstOption = explorer.frame.getByRole("option").first(); const firstOption = explorer.frame.getByRole("option").first();
await firstOption.waitFor(); await firstOption.waitFor();
await firstOption.click(); await firstOption.click({ force: true });
const currentRegionLabel = explorer.frame.getByLabel("Current Region"); const currentRegionLabel = explorer.frame.getByLabel("Current Region");
await currentRegionLabel.waitFor(); await currentRegionLabel.waitFor();