diff --git a/devices/ios.go b/devices/ios.go index e3e5e895..9dd2cc3d 100644 --- a/devices/ios.go +++ b/devices/ios.go @@ -1286,7 +1286,7 @@ func (d *IOSDevice) clickStartBroadcastButton() error { } centerX := buttons[0].Rect.X + buttons[0].Rect.Width/2 centerY := buttons[0].Rect.Y + buttons[0].Rect.Height/2 - utils.Verbose("Tapping record button at %f,%f", centerX, centerY) + utils.Verbose("Tapping record button at %d,%d", centerX, centerY) if err = d.Tap(centerX, centerY); err != nil { return fmt.Errorf("failed to tap broadcast button: %w", err) } diff --git a/docs/openrpc.json b/docs/openrpc.json index 93d73293..3d144253 100644 --- a/docs/openrpc.json +++ b/docs/openrpc.json @@ -1825,9 +1825,9 @@ "type": "string", "description": "Provider type (e.g. 'mobilenext', 'local')" }, - "sessionId": { + "allocationId": { "type": "string", - "description": "Session identifier for this device allocation" + "description": "Allocation identifier for this device" } }, "required": [ diff --git a/docs/openrpc.md b/docs/openrpc.md index 4600324a..52cac130 100644 --- a/docs/openrpc.md +++ b/docs/openrpc.md @@ -1768,7 +1768,7 @@ Describes where the device is provided from | Property | Type | Required | Description | |----------|------|----------|-------------| | `type` | `string` | ✓ | Provider type (e.g. 'mobilenext', 'local') | -| `sessionId` | `string` | | Session identifier for this device allocation | +| `allocationId` | `string` | | Allocation identifier for this device | ### Rect