Skip to content

Commit 6f6e26f

Browse files
authored
fix assumptions about action-bar title structure (microsoft#155292)
1 parent d17e30f commit 6f6e26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/automation/src/extensions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class Extensions extends Viewlet {
6161
await this.code.waitAndClick(`div.extensions-viewlet[id="workbench.view.extensions"] .monaco-list-row[data-extension-id="${id}"] .extension-list-item .monaco-action-bar .action-item:not(.disabled) .extension-action.install`);
6262
await this.code.waitForElement(`.extension-editor .monaco-action-bar .action-item:not(.disabled) .extension-action.uninstall`);
6363
if (waitUntilEnabled) {
64-
await this.code.waitForElement(`.extension-editor .monaco-action-bar .action-item:not(.disabled) .extension-action[title="Disable this extension"]`);
64+
await this.code.waitForElement(`.extension-editor .monaco-action-bar .action-item:not(.disabled)[title="Disable this extension"]`);
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)