(selector: string, value: string)
| 327 | } |
| 328 | |
| 329 | async writeInTerminal(selector: string, value: string): Promise<void> { |
| 330 | await this.poll(() => this.driver.writeInTerminal(selector, value), () => true, `writeInTerminal '${selector}'`); |
| 331 | } |
| 332 | |
| 333 | async whenWorkbenchRestored(): Promise<void> { |
| 334 | await this.poll(() => this.driver.whenWorkbenchRestored(), () => true, `when workbench restored`); |
nothing calls this directly
no test coverage detected