We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a729b2 commit 07d6909Copy full SHA for 07d6909
1 file changed
rascal-vscode-extension/src/test/vscode-suite/utils.ts
@@ -340,8 +340,7 @@ export class IDEOperations {
340
* @param actionLabel
341
*/
342
async triggerFirstCodeAction(editor: TextEditor, actionLabel:string) {
343
- const inputarea = await editor.findElement(By.className('inputarea'));
344
- await inputarea.sendKeys(Key.chord(TextEditor.ctlKey, "."));
+ await VSBrowser.instance.driver.actions().keyDown(Key.CONTROL).sendKeys(".").keyUp(Key.CONTROL).perform();
345
346
// finds an open menu with the right item in it (Change to a) and then select
347
// the parent that handles UI events like click() and sendKeys()
0 commit comments