Skip to content

Commit d522fdd

Browse files
Added 1 sec delay to fix the e2e failure
1 parent de76b41 commit d522fdd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

e2e-tests/playwright/support/pages/extensions.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ export class Extensions {
3131
async clickReadMoreByPluginTitle(pluginTitle: string) {
3232
const allCards = this.page.locator(".v5-MuiPaper-outlined");
3333
const targetCard = allCards.filter({ hasText: pluginTitle });
34+
// Additional wait to ensure the panel stays open after any re-rendering
35+
await this.page.waitForTimeout(1000);
3436
await targetCard.getByRole("link", { name: "Read more" }).click();
3537
}
3638

0 commit comments

Comments
 (0)