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 607cf09 commit 6050df3Copy full SHA for 6050df3
e2e-tests/playwright/support/pages/extensions.ts
@@ -71,6 +71,12 @@ export class Extensions {
71
}
72
73
74
+ async waitForSearchResults(searchText: string) {
75
+ await expect(
76
+ this.page.locator(".v5-MuiPaper-outlined").first(),
77
+ ).toContainText(searchText, { timeout: 10000 });
78
+ }
79
+
80
async verifyPluginDetails({
81
pluginName,
82
badgeLabel,
@@ -129,6 +135,7 @@ export class Extensions {
129
135
130
136
if (searchTerm) {
131
137
await this.uiHelper.searchInputPlaceholder(searchTerm);
138
+ await this.waitForSearchResults(searchTerm);
132
139
133
140
134
141
if (pluginName) {
0 commit comments