(orientation: Orientation)
| 272 | } |
| 273 | |
| 274 | public async setOrientation(orientation: Orientation): Promise<void> { |
| 275 | const wda = await this.wda(); |
| 276 | return wda.setOrientation(orientation); |
| 277 | } |
| 278 | |
| 279 | public async getOrientation(): Promise<Orientation> { |
| 280 | const wda = await this.wda(); |
nothing calls this directly
no test coverage detected