Update Code to 1.93.1 (#6984)

This commit is contained in:
Olivier Benz
2024-09-19 12:10:46 +02:00
committed by GitHub
parent 50c6abf3a8
commit 3542bd157b
22 changed files with 72 additions and 72 deletions

View File

@ -555,6 +555,15 @@ export class CodeServerPage {
})
}
/**
* Open context menu on the specified selector.
*/
async openContextMenu(selector: string): Promise<void> {
const el = await this.page.waitForSelector(selector)
await el.click({ button: "right" })
await this.page.waitForSelector(".context-view-block")
}
/**
* Execute a command in the root of the instance's workspace directory.
*/