()
| 91 | } |
| 92 | |
| 93 | public async getScreenshot(): Promise<Buffer> { |
| 94 | const wda = await this.wda(); |
| 95 | return await wda.getScreenshot(); |
| 96 | // alternative: return this.simctl("io", this.simulatorUuid, "screenshot", "-"); |
| 97 | } |
| 98 | |
| 99 | public async openUrl(url: string) { |
| 100 | const wda = await this.wda(); |
nothing calls this directly
no test coverage detected