We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f080f9 commit bfef393Copy full SHA for bfef393
e2e/pages/vscode.pages.ts
@@ -158,6 +158,7 @@ export class VSCode extends Application {
158
await this.executeQuickCommand('sources and targets');
159
await this.waitDefault();
160
const targetInput = window.getByPlaceholder('Choose one or more target');
161
+ await this.waitDefault();
162
await expect(targetInput).toBeVisible({ timeout: 30000 });
163
for (const target of targets) {
164
await targetInput.fill(target);
@@ -225,6 +226,7 @@ export class VSCode extends Application {
225
226
public async startServer(): Promise<void> {
227
await this.openAnalysisView();
228
const analysisView = await this.getAnalysisIframe();
229
230
if (
231
!(await analysisView.getByRole('button', { name: 'Stop' }).isVisible())
232
) {
0 commit comments