(button: Button)
| 262 | } |
| 263 | |
| 264 | public async pressButton(button: Button) { |
| 265 | const wda = await this.wda(); |
| 266 | return wda.pressButton(button); |
| 267 | } |
| 268 | |
| 269 | public async getElementsOnScreen(): Promise<ScreenElement[]> { |
| 270 | const wda = await this.wda(); |
nothing calls this directly
no test coverage detected