We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de76b41 commit d522fddCopy full SHA for d522fdd
e2e-tests/playwright/support/pages/extensions.ts
@@ -31,6 +31,8 @@ export class Extensions {
31
async clickReadMoreByPluginTitle(pluginTitle: string) {
32
const allCards = this.page.locator(".v5-MuiPaper-outlined");
33
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);
36
await targetCard.getByRole("link", { name: "Read more" }).click();
37
}
38
0 commit comments