()
| 213 | } |
| 214 | |
| 215 | public async getElementsOnScreen(): Promise<ScreenElement[]> { |
| 216 | const wda = await this.wda(); |
| 217 | return await wda.getElementsOnScreen(); |
| 218 | } |
| 219 | |
| 220 | public async getScreenshot(): Promise<Buffer> { |
| 221 | const wda = await this.wda(); |
nothing calls this directly
no test coverage detected