* Open context menu on the specified selector.
(selector: string)
| 562 | * Open context menu on the specified selector. |
| 563 | */ |
| 564 | async openContextMenu(selector: string): Promise<void> { |
| 565 | const el = await this.page.waitForSelector(selector) |
| 566 | await el.click({ button: "right" }) |
| 567 | await this.page.waitForSelector(".context-view-block") |
| 568 | } |
| 569 | |
| 570 | /** |
| 571 | * Execute a command in the root of the instance's workspace directory. |
no outgoing calls
no test coverage detected