We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a92f93 commit 2561955Copy full SHA for 2561955
1 file changed
test/automation/src/search.ts
@@ -74,12 +74,12 @@ export class Search extends Viewlet {
74
75
await retry(
76
() => this.code.waitAndClick(fileMatch),
77
- () => this.code.waitForElement(`${fileMatch} .action-label.codicon.search-remove`, el => !!el && el.top > 0 && el.left > 0, 10)
+ () => this.code.waitForElement(`${fileMatch} .action-label.codicon-search-remove`, el => !!el && el.top > 0 && el.left > 0, 10)
78
);
79
80
// ¯\_(ツ)_/¯
81
await new Promise(c => setTimeout(c, 500));
82
- await this.code.waitAndClick(`${fileMatch} .action-label.codicon.search-remove`);
+ await this.code.waitAndClick(`${fileMatch} .action-label.codicon-search-remove`);
83
await this.code.waitForElement(fileMatch, el => !el);
84
}
85
0 commit comments