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 ba0163dCopy full SHA for ba0163d
e2e-tests/playwright/support/pages/extensions.ts
@@ -32,6 +32,8 @@ export class Extensions {
32
const allCards = this.page.locator(".v5-MuiPaper-outlined");
33
const targetCard = allCards.filter({ hasText: pluginTitle });
34
await targetCard.getByRole("link", { name: "Read more" }).click();
35
+ // Additional wait to ensure the panel stays open after any re-rendering
36
+ await this.page.waitForTimeout(1000);
37
}
38
39
async selectDropdown(name: string) {
0 commit comments