@kaeawc/auto-mobile 0.0.43 → 0.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/README.md.backup +3 -3
- package/dist/ios/screen-capture/Package.swift +35 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/AudioPcm16Encoder.swift +22 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/CommandLineOptions.swift +152 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/DeviceInfo.swift +25 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/FrameProtocol.swift +113 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/FrameWriter.swift +62 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureCore/SimulatorWindowInfo.swift +51 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/AudioSampleBuffer.swift +41 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/CMIOSystem.swift +26 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/DeviceCaptureSession.swift +117 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/DeviceDiscovery.swift +29 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/FrameWriter+PixelBuffer.swift +25 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/SimulatorCaptureSession.swift +159 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/SimulatorWindowDiscovery.swift +37 -0
- package/dist/ios/screen-capture/Sources/ScreenCaptureHelper/main.swift +255 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/AudioPcm16EncoderTests.swift +17 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/CommandLineOptionsTests.swift +181 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/DeviceInfoTests.swift +35 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/FrameProtocolTests.swift +123 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/FrameWriterTests.swift +62 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/SimulatorAudioCaptureAvailabilityTests.swift +27 -0
- package/dist/ios/screen-capture/Tests/ScreenCaptureCoreTests/SimulatorWindowInfoTests.swift +40 -0
- package/dist/schemas/tool-definitions.json +1274 -849
- package/dist/src/db/migrations/2026_07_03_000_repair_datetime_now_defaults.ts +11 -2
- package/dist/src/index.js +684 -413
- package/dist/src/index.js.map +1 -1
- package/package.json +25 -6
- package/schemas/tool-definitions.json +1274 -849
|
@@ -31,9 +31,6 @@
|
|
|
31
31
|
"device": {
|
|
32
32
|
"description": "Device label",
|
|
33
33
|
"type": "string"
|
|
34
|
-
},
|
|
35
|
-
"deviceId": {
|
|
36
|
-
"type": "string"
|
|
37
34
|
}
|
|
38
35
|
},
|
|
39
36
|
"additionalProperties": false
|
|
@@ -105,9 +102,6 @@
|
|
|
105
102
|
"device": {
|
|
106
103
|
"description": "Device label",
|
|
107
104
|
"type": "string"
|
|
108
|
-
},
|
|
109
|
-
"deviceId": {
|
|
110
|
-
"type": "string"
|
|
111
105
|
}
|
|
112
106
|
},
|
|
113
107
|
"additionalProperties": false
|
|
@@ -326,6 +320,9 @@
|
|
|
326
320
|
"bounds"
|
|
327
321
|
],
|
|
328
322
|
"additionalProperties": {}
|
|
323
|
+
},
|
|
324
|
+
"confirmed": {
|
|
325
|
+
"type": "boolean"
|
|
329
326
|
}
|
|
330
327
|
},
|
|
331
328
|
"required": [
|
|
@@ -334,6 +331,41 @@
|
|
|
334
331
|
"additionalProperties": {}
|
|
335
332
|
}
|
|
336
333
|
},
|
|
334
|
+
{
|
|
335
|
+
"name": "barrier",
|
|
336
|
+
"description": "Synchronize multiple devices at a barrier, then let all proceed concurrently (no serialized section).",
|
|
337
|
+
"inputSchema": {
|
|
338
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
339
|
+
"type": "object",
|
|
340
|
+
"properties": {
|
|
341
|
+
"lock": {
|
|
342
|
+
"type": "string",
|
|
343
|
+
"description": "Shared barrier name; all devices using the same name synchronize together"
|
|
344
|
+
},
|
|
345
|
+
"deviceCount": {
|
|
346
|
+
"type": "integer",
|
|
347
|
+
"exclusiveMinimum": 0,
|
|
348
|
+
"maximum": 9007199254740991,
|
|
349
|
+
"description": "Number of devices that must arrive before the barrier lifts"
|
|
350
|
+
},
|
|
351
|
+
"timeout": {
|
|
352
|
+
"description": "Barrier timeout ms (default 30000)",
|
|
353
|
+
"type": "integer",
|
|
354
|
+
"exclusiveMinimum": 0,
|
|
355
|
+
"maximum": 9007199254740991
|
|
356
|
+
},
|
|
357
|
+
"__lockNamespace": {
|
|
358
|
+
"description": "Internal plan-scoped lock namespace (injected)",
|
|
359
|
+
"type": "string"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"required": [
|
|
363
|
+
"lock",
|
|
364
|
+
"deviceCount"
|
|
365
|
+
],
|
|
366
|
+
"additionalProperties": false
|
|
367
|
+
}
|
|
368
|
+
},
|
|
337
369
|
{
|
|
338
370
|
"name": "biometricAuth",
|
|
339
371
|
"description": "Simulate biometric auth: Android emulator/SDK hook or iOS Simulator.",
|
|
@@ -389,9 +421,6 @@
|
|
|
389
421
|
"device": {
|
|
390
422
|
"description": "Device label",
|
|
391
423
|
"type": "string"
|
|
392
|
-
},
|
|
393
|
-
"deviceId": {
|
|
394
|
-
"type": "string"
|
|
395
424
|
}
|
|
396
425
|
},
|
|
397
426
|
"required": [
|
|
@@ -436,9 +465,6 @@
|
|
|
436
465
|
"device": {
|
|
437
466
|
"description": "Device label",
|
|
438
467
|
"type": "string"
|
|
439
|
-
},
|
|
440
|
-
"deviceId": {
|
|
441
|
-
"type": "string"
|
|
442
468
|
}
|
|
443
469
|
},
|
|
444
470
|
"required": [
|
|
@@ -512,9 +538,6 @@
|
|
|
512
538
|
"device": {
|
|
513
539
|
"description": "Device label",
|
|
514
540
|
"type": "string"
|
|
515
|
-
},
|
|
516
|
-
"deviceId": {
|
|
517
|
-
"type": "string"
|
|
518
541
|
}
|
|
519
542
|
},
|
|
520
543
|
"required": [
|
|
@@ -574,9 +597,6 @@
|
|
|
574
597
|
"device": {
|
|
575
598
|
"description": "Device label",
|
|
576
599
|
"type": "string"
|
|
577
|
-
},
|
|
578
|
-
"deviceId": {
|
|
579
|
-
"type": "string"
|
|
580
600
|
}
|
|
581
601
|
},
|
|
582
602
|
"required": [
|
|
@@ -613,9 +633,6 @@
|
|
|
613
633
|
"device": {
|
|
614
634
|
"description": "Device label",
|
|
615
635
|
"type": "string"
|
|
616
|
-
},
|
|
617
|
-
"deviceId": {
|
|
618
|
-
"type": "string"
|
|
619
636
|
}
|
|
620
637
|
},
|
|
621
638
|
"additionalProperties": false
|
|
@@ -645,9 +662,6 @@
|
|
|
645
662
|
"device": {
|
|
646
663
|
"description": "Device label",
|
|
647
664
|
"type": "string"
|
|
648
|
-
},
|
|
649
|
-
"deviceId": {
|
|
650
|
-
"type": "string"
|
|
651
665
|
}
|
|
652
666
|
},
|
|
653
667
|
"required": [
|
|
@@ -695,9 +709,6 @@
|
|
|
695
709
|
"device": {
|
|
696
710
|
"description": "Device label",
|
|
697
711
|
"type": "string"
|
|
698
|
-
},
|
|
699
|
-
"deviceId": {
|
|
700
|
-
"type": "string"
|
|
701
712
|
}
|
|
702
713
|
},
|
|
703
714
|
"required": [
|
|
@@ -775,6 +786,10 @@
|
|
|
775
786
|
"type": "integer",
|
|
776
787
|
"exclusiveMinimum": 0,
|
|
777
788
|
"maximum": 9007199254740991
|
|
789
|
+
},
|
|
790
|
+
"__lockNamespace": {
|
|
791
|
+
"description": "Internal plan-scoped lock namespace (injected)",
|
|
792
|
+
"type": "string"
|
|
778
793
|
}
|
|
779
794
|
},
|
|
780
795
|
"required": [
|
|
@@ -864,9 +879,6 @@
|
|
|
864
879
|
"device": {
|
|
865
880
|
"description": "Device label",
|
|
866
881
|
"type": "string"
|
|
867
|
-
},
|
|
868
|
-
"deviceId": {
|
|
869
|
-
"type": "string"
|
|
870
882
|
}
|
|
871
883
|
},
|
|
872
884
|
"required": [
|
|
@@ -950,9 +962,6 @@
|
|
|
950
962
|
"device": {
|
|
951
963
|
"description": "Device label",
|
|
952
964
|
"type": "string"
|
|
953
|
-
},
|
|
954
|
-
"deviceId": {
|
|
955
|
-
"type": "string"
|
|
956
965
|
}
|
|
957
966
|
},
|
|
958
967
|
"required": [
|
|
@@ -1003,63 +1012,55 @@
|
|
|
1003
1012
|
"type": "object",
|
|
1004
1013
|
"properties": {
|
|
1005
1014
|
"source": {
|
|
1006
|
-
"
|
|
1015
|
+
"type": "object",
|
|
1016
|
+
"additionalProperties": false,
|
|
1017
|
+
"properties": {
|
|
1018
|
+
"elementId": {
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"description": "Source ID"
|
|
1021
|
+
},
|
|
1022
|
+
"text": {
|
|
1023
|
+
"type": "string",
|
|
1024
|
+
"description": "Source text"
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
"oneOf": [
|
|
1007
1028
|
{
|
|
1008
|
-
"type": "object",
|
|
1009
|
-
"properties": {
|
|
1010
|
-
"elementId": {
|
|
1011
|
-
"type": "string",
|
|
1012
|
-
"description": "Source ID"
|
|
1013
|
-
}
|
|
1014
|
-
},
|
|
1015
1029
|
"required": [
|
|
1016
1030
|
"elementId"
|
|
1017
|
-
]
|
|
1018
|
-
"additionalProperties": false
|
|
1031
|
+
]
|
|
1019
1032
|
},
|
|
1020
1033
|
{
|
|
1021
|
-
"type": "object",
|
|
1022
|
-
"properties": {
|
|
1023
|
-
"text": {
|
|
1024
|
-
"type": "string",
|
|
1025
|
-
"description": "Source text"
|
|
1026
|
-
}
|
|
1027
|
-
},
|
|
1028
1034
|
"required": [
|
|
1029
1035
|
"text"
|
|
1030
|
-
]
|
|
1031
|
-
"additionalProperties": false
|
|
1036
|
+
]
|
|
1032
1037
|
}
|
|
1033
1038
|
],
|
|
1034
1039
|
"description": "Source element"
|
|
1035
1040
|
},
|
|
1036
1041
|
"target": {
|
|
1037
|
-
"
|
|
1042
|
+
"type": "object",
|
|
1043
|
+
"additionalProperties": false,
|
|
1044
|
+
"properties": {
|
|
1045
|
+
"elementId": {
|
|
1046
|
+
"type": "string",
|
|
1047
|
+
"description": "Target ID"
|
|
1048
|
+
},
|
|
1049
|
+
"text": {
|
|
1050
|
+
"type": "string",
|
|
1051
|
+
"description": "Target text"
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"oneOf": [
|
|
1038
1055
|
{
|
|
1039
|
-
"type": "object",
|
|
1040
|
-
"properties": {
|
|
1041
|
-
"elementId": {
|
|
1042
|
-
"type": "string",
|
|
1043
|
-
"description": "Target ID"
|
|
1044
|
-
}
|
|
1045
|
-
},
|
|
1046
1056
|
"required": [
|
|
1047
1057
|
"elementId"
|
|
1048
|
-
]
|
|
1049
|
-
"additionalProperties": false
|
|
1058
|
+
]
|
|
1050
1059
|
},
|
|
1051
1060
|
{
|
|
1052
|
-
"type": "object",
|
|
1053
|
-
"properties": {
|
|
1054
|
-
"text": {
|
|
1055
|
-
"type": "string",
|
|
1056
|
-
"description": "Target text"
|
|
1057
|
-
}
|
|
1058
|
-
},
|
|
1059
1061
|
"required": [
|
|
1060
1062
|
"text"
|
|
1061
|
-
]
|
|
1062
|
-
"additionalProperties": false
|
|
1063
|
+
]
|
|
1063
1064
|
}
|
|
1064
1065
|
],
|
|
1065
1066
|
"description": "Target element"
|
|
@@ -1099,9 +1100,6 @@
|
|
|
1099
1100
|
"device": {
|
|
1100
1101
|
"description": "Device label",
|
|
1101
1102
|
"type": "string"
|
|
1102
|
-
},
|
|
1103
|
-
"deviceId": {
|
|
1104
|
-
"type": "string"
|
|
1105
1103
|
}
|
|
1106
1104
|
},
|
|
1107
1105
|
"required": [
|
|
@@ -1435,9 +1433,6 @@
|
|
|
1435
1433
|
"device": {
|
|
1436
1434
|
"description": "Device label",
|
|
1437
1435
|
"type": "string"
|
|
1438
|
-
},
|
|
1439
|
-
"deviceId": {
|
|
1440
|
-
"type": "string"
|
|
1441
1436
|
}
|
|
1442
1437
|
},
|
|
1443
1438
|
"required": [
|
|
@@ -1535,9 +1530,6 @@
|
|
|
1535
1530
|
"device": {
|
|
1536
1531
|
"description": "Device label",
|
|
1537
1532
|
"type": "string"
|
|
1538
|
-
},
|
|
1539
|
-
"deviceId": {
|
|
1540
|
-
"type": "string"
|
|
1541
1533
|
}
|
|
1542
1534
|
},
|
|
1543
1535
|
"required": [
|
|
@@ -1573,9 +1565,6 @@
|
|
|
1573
1565
|
"device": {
|
|
1574
1566
|
"description": "Device label",
|
|
1575
1567
|
"type": "string"
|
|
1576
|
-
},
|
|
1577
|
-
"deviceId": {
|
|
1578
|
-
"type": "string"
|
|
1579
1568
|
}
|
|
1580
1569
|
},
|
|
1581
1570
|
"required": [
|
|
@@ -1618,9 +1607,6 @@
|
|
|
1618
1607
|
"device": {
|
|
1619
1608
|
"description": "Device label",
|
|
1620
1609
|
"type": "string"
|
|
1621
|
-
},
|
|
1622
|
-
"deviceId": {
|
|
1623
|
-
"type": "string"
|
|
1624
1610
|
}
|
|
1625
1611
|
},
|
|
1626
1612
|
"additionalProperties": false
|
|
@@ -1651,9 +1637,6 @@
|
|
|
1651
1637
|
"device": {
|
|
1652
1638
|
"description": "Device label",
|
|
1653
1639
|
"type": "string"
|
|
1654
|
-
},
|
|
1655
|
-
"deviceId": {
|
|
1656
|
-
"type": "string"
|
|
1657
1640
|
}
|
|
1658
1641
|
},
|
|
1659
1642
|
"required": [
|
|
@@ -1701,9 +1684,6 @@
|
|
|
1701
1684
|
"device": {
|
|
1702
1685
|
"description": "Device label",
|
|
1703
1686
|
"type": "string"
|
|
1704
|
-
},
|
|
1705
|
-
"deviceId": {
|
|
1706
|
-
"type": "string"
|
|
1707
1687
|
}
|
|
1708
1688
|
},
|
|
1709
1689
|
"additionalProperties": false
|
|
@@ -1737,9 +1717,6 @@
|
|
|
1737
1717
|
"device": {
|
|
1738
1718
|
"description": "Device label",
|
|
1739
1719
|
"type": "string"
|
|
1740
|
-
},
|
|
1741
|
-
"deviceId": {
|
|
1742
|
-
"type": "string"
|
|
1743
1720
|
}
|
|
1744
1721
|
},
|
|
1745
1722
|
"required": [
|
|
@@ -1794,9 +1771,6 @@
|
|
|
1794
1771
|
"device": {
|
|
1795
1772
|
"description": "Device label",
|
|
1796
1773
|
"type": "string"
|
|
1797
|
-
},
|
|
1798
|
-
"deviceId": {
|
|
1799
|
-
"type": "string"
|
|
1800
1774
|
}
|
|
1801
1775
|
},
|
|
1802
1776
|
"required": [
|
|
@@ -2492,9 +2466,6 @@
|
|
|
2492
2466
|
"device": {
|
|
2493
2467
|
"description": "Device label",
|
|
2494
2468
|
"type": "string"
|
|
2495
|
-
},
|
|
2496
|
-
"deviceId": {
|
|
2497
|
-
"type": "string"
|
|
2498
2469
|
}
|
|
2499
2470
|
},
|
|
2500
2471
|
"required": [
|
|
@@ -2579,9 +2550,6 @@
|
|
|
2579
2550
|
"device": {
|
|
2580
2551
|
"description": "Device label",
|
|
2581
2552
|
"type": "string"
|
|
2582
|
-
},
|
|
2583
|
-
"deviceId": {
|
|
2584
|
-
"type": "string"
|
|
2585
2553
|
}
|
|
2586
2554
|
},
|
|
2587
2555
|
"required": [
|
|
@@ -2626,9 +2594,6 @@
|
|
|
2626
2594
|
"device": {
|
|
2627
2595
|
"description": "Device label",
|
|
2628
2596
|
"type": "string"
|
|
2629
|
-
},
|
|
2630
|
-
"deviceId": {
|
|
2631
|
-
"type": "string"
|
|
2632
2597
|
}
|
|
2633
2598
|
},
|
|
2634
2599
|
"required": [
|
|
@@ -2691,9 +2656,6 @@
|
|
|
2691
2656
|
"device": {
|
|
2692
2657
|
"description": "Device label",
|
|
2693
2658
|
"type": "string"
|
|
2694
|
-
},
|
|
2695
|
-
"deviceId": {
|
|
2696
|
-
"type": "string"
|
|
2697
2659
|
}
|
|
2698
2660
|
},
|
|
2699
2661
|
"required": [
|
|
@@ -2731,9 +2693,6 @@
|
|
|
2731
2693
|
"device": {
|
|
2732
2694
|
"description": "Device label",
|
|
2733
2695
|
"type": "string"
|
|
2734
|
-
},
|
|
2735
|
-
"deviceId": {
|
|
2736
|
-
"type": "string"
|
|
2737
2696
|
}
|
|
2738
2697
|
},
|
|
2739
2698
|
"required": [
|
|
@@ -2775,9 +2734,6 @@
|
|
|
2775
2734
|
"device": {
|
|
2776
2735
|
"description": "Device label",
|
|
2777
2736
|
"type": "string"
|
|
2778
|
-
},
|
|
2779
|
-
"deviceId": {
|
|
2780
|
-
"type": "string"
|
|
2781
2737
|
}
|
|
2782
2738
|
},
|
|
2783
2739
|
"required": [
|
|
@@ -2861,9 +2817,6 @@
|
|
|
2861
2817
|
"device": {
|
|
2862
2818
|
"description": "Device label",
|
|
2863
2819
|
"type": "string"
|
|
2864
|
-
},
|
|
2865
|
-
"deviceId": {
|
|
2866
|
-
"type": "string"
|
|
2867
2820
|
}
|
|
2868
2821
|
},
|
|
2869
2822
|
"required": [
|
|
@@ -2987,9 +2940,6 @@
|
|
|
2987
2940
|
"device": {
|
|
2988
2941
|
"description": "Device label",
|
|
2989
2942
|
"type": "string"
|
|
2990
|
-
},
|
|
2991
|
-
"deviceId": {
|
|
2992
|
-
"type": "string"
|
|
2993
2943
|
}
|
|
2994
2944
|
},
|
|
2995
2945
|
"required": [
|
|
@@ -3028,9 +2978,6 @@
|
|
|
3028
2978
|
"device": {
|
|
3029
2979
|
"description": "Device label",
|
|
3030
2980
|
"type": "string"
|
|
3031
|
-
},
|
|
3032
|
-
"deviceId": {
|
|
3033
|
-
"type": "string"
|
|
3034
2981
|
}
|
|
3035
2982
|
},
|
|
3036
2983
|
"required": [
|
|
@@ -3122,9 +3069,6 @@
|
|
|
3122
3069
|
"device": {
|
|
3123
3070
|
"description": "Device label",
|
|
3124
3071
|
"type": "string"
|
|
3125
|
-
},
|
|
3126
|
-
"deviceId": {
|
|
3127
|
-
"type": "string"
|
|
3128
3072
|
}
|
|
3129
3073
|
},
|
|
3130
3074
|
"additionalProperties": false
|
|
@@ -3145,447 +3089,182 @@
|
|
|
3145
3089
|
]
|
|
3146
3090
|
},
|
|
3147
3091
|
"waitFor": {
|
|
3148
|
-
"
|
|
3149
|
-
"
|
|
3150
|
-
|
|
3092
|
+
"type": "object",
|
|
3093
|
+
"additionalProperties": false,
|
|
3094
|
+
"description": "Wait for a predicate before returning the observation. Provide at least one of: elementId, text, textAny, className, contentDescription, or activeWindow. textAny is mutually exclusive with the element predicates.",
|
|
3095
|
+
"properties": {
|
|
3096
|
+
"elementId": {
|
|
3097
|
+
"type": "string",
|
|
3098
|
+
"description": "Element resource ID / accessibility identifier"
|
|
3099
|
+
},
|
|
3100
|
+
"text": {
|
|
3101
|
+
"type": "string",
|
|
3102
|
+
"description": "Element text"
|
|
3103
|
+
},
|
|
3104
|
+
"textAny": {
|
|
3105
|
+
"type": "array",
|
|
3106
|
+
"items": {
|
|
3107
|
+
"type": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"description": "Ordered text variants; first visible match wins"
|
|
3110
|
+
},
|
|
3111
|
+
"className": {
|
|
3112
|
+
"type": "string",
|
|
3113
|
+
"description": "Element class name"
|
|
3114
|
+
},
|
|
3115
|
+
"contentDescription": {
|
|
3116
|
+
"type": "string",
|
|
3117
|
+
"description": "Element content description / accessibility label"
|
|
3118
|
+
},
|
|
3119
|
+
"matchType": {
|
|
3120
|
+
"type": "string",
|
|
3121
|
+
"enum": [
|
|
3122
|
+
"all",
|
|
3123
|
+
"any"
|
|
3124
|
+
],
|
|
3125
|
+
"description": "Whether element predicates must all match one node, or any one may match"
|
|
3126
|
+
},
|
|
3127
|
+
"textMatch": {
|
|
3128
|
+
"type": "string",
|
|
3129
|
+
"enum": [
|
|
3130
|
+
"exact",
|
|
3131
|
+
"contains",
|
|
3132
|
+
"regex"
|
|
3133
|
+
],
|
|
3134
|
+
"description": "How to match waitFor.text; does not affect contentDescription"
|
|
3135
|
+
},
|
|
3136
|
+
"activeWindow": {
|
|
3151
3137
|
"type": "object",
|
|
3138
|
+
"additionalProperties": false,
|
|
3139
|
+
"description": "Foreground app/window predicates (provide an app id or activityName)",
|
|
3152
3140
|
"properties": {
|
|
3153
|
-
"
|
|
3154
|
-
"
|
|
3155
|
-
"
|
|
3156
|
-
"items": {
|
|
3157
|
-
"type": "string",
|
|
3158
|
-
"minLength": 1
|
|
3159
|
-
},
|
|
3160
|
-
"description": "Ordered text variants; first visible match wins"
|
|
3141
|
+
"appId": {
|
|
3142
|
+
"type": "string",
|
|
3143
|
+
"description": "Foreground app bundle ID / package name"
|
|
3161
3144
|
},
|
|
3162
|
-
"
|
|
3163
|
-
"
|
|
3145
|
+
"packageName": {
|
|
3146
|
+
"type": "string",
|
|
3147
|
+
"description": "Alias for appId (Android package name)"
|
|
3164
3148
|
},
|
|
3165
|
-
"
|
|
3166
|
-
"
|
|
3149
|
+
"bundleId": {
|
|
3150
|
+
"type": "string",
|
|
3151
|
+
"description": "Alias for appId (iOS bundle ID)"
|
|
3167
3152
|
},
|
|
3168
|
-
"
|
|
3169
|
-
"
|
|
3153
|
+
"activityName": {
|
|
3154
|
+
"type": "string",
|
|
3155
|
+
"description": "Foreground Android activity name (Android-only)"
|
|
3156
|
+
}
|
|
3157
|
+
},
|
|
3158
|
+
"anyOf": [
|
|
3159
|
+
{
|
|
3160
|
+
"required": [
|
|
3161
|
+
"appId"
|
|
3162
|
+
]
|
|
3170
3163
|
},
|
|
3171
|
-
|
|
3172
|
-
"
|
|
3164
|
+
{
|
|
3165
|
+
"required": [
|
|
3166
|
+
"packageName"
|
|
3167
|
+
]
|
|
3173
3168
|
},
|
|
3174
|
-
|
|
3175
|
-
"
|
|
3169
|
+
{
|
|
3170
|
+
"required": [
|
|
3171
|
+
"bundleId"
|
|
3172
|
+
]
|
|
3176
3173
|
},
|
|
3177
|
-
|
|
3178
|
-
"
|
|
3174
|
+
{
|
|
3175
|
+
"required": [
|
|
3176
|
+
"activityName"
|
|
3177
|
+
]
|
|
3178
|
+
}
|
|
3179
|
+
]
|
|
3180
|
+
},
|
|
3181
|
+
"container": {
|
|
3182
|
+
"type": "object",
|
|
3183
|
+
"description": "Scope the match to a container element (by elementId or text)",
|
|
3184
|
+
"properties": {
|
|
3185
|
+
"elementId": {
|
|
3186
|
+
"type": "string"
|
|
3179
3187
|
},
|
|
3180
|
-
"
|
|
3181
|
-
"
|
|
3182
|
-
"allOf": [
|
|
3183
|
-
{
|
|
3184
|
-
"type": "object",
|
|
3185
|
-
"properties": {
|
|
3186
|
-
"appId": {
|
|
3187
|
-
"description": "Foreground app bundle ID / package name",
|
|
3188
|
-
"type": "string"
|
|
3189
|
-
},
|
|
3190
|
-
"packageName": {
|
|
3191
|
-
"type": "string"
|
|
3192
|
-
},
|
|
3193
|
-
"bundleId": {
|
|
3194
|
-
"type": "string"
|
|
3195
|
-
},
|
|
3196
|
-
"activityName": {
|
|
3197
|
-
"description": "Foreground Android activity name",
|
|
3198
|
-
"type": "string"
|
|
3199
|
-
}
|
|
3200
|
-
},
|
|
3201
|
-
"additionalProperties": false
|
|
3202
|
-
},
|
|
3203
|
-
{
|
|
3204
|
-
"anyOf": [
|
|
3205
|
-
{
|
|
3206
|
-
"type": "object",
|
|
3207
|
-
"properties": {
|
|
3208
|
-
"appId": {
|
|
3209
|
-
"type": "string"
|
|
3210
|
-
}
|
|
3211
|
-
},
|
|
3212
|
-
"required": [
|
|
3213
|
-
"appId"
|
|
3214
|
-
],
|
|
3215
|
-
"additionalProperties": {}
|
|
3216
|
-
},
|
|
3217
|
-
{
|
|
3218
|
-
"type": "object",
|
|
3219
|
-
"properties": {
|
|
3220
|
-
"packageName": {
|
|
3221
|
-
"type": "string"
|
|
3222
|
-
}
|
|
3223
|
-
},
|
|
3224
|
-
"required": [
|
|
3225
|
-
"packageName"
|
|
3226
|
-
],
|
|
3227
|
-
"additionalProperties": {}
|
|
3228
|
-
},
|
|
3229
|
-
{
|
|
3230
|
-
"type": "object",
|
|
3231
|
-
"properties": {
|
|
3232
|
-
"bundleId": {
|
|
3233
|
-
"type": "string"
|
|
3234
|
-
}
|
|
3235
|
-
},
|
|
3236
|
-
"required": [
|
|
3237
|
-
"bundleId"
|
|
3238
|
-
],
|
|
3239
|
-
"additionalProperties": {}
|
|
3240
|
-
},
|
|
3241
|
-
{
|
|
3242
|
-
"type": "object",
|
|
3243
|
-
"properties": {
|
|
3244
|
-
"activityName": {
|
|
3245
|
-
"type": "string"
|
|
3246
|
-
}
|
|
3247
|
-
},
|
|
3248
|
-
"required": [
|
|
3249
|
-
"activityName"
|
|
3250
|
-
],
|
|
3251
|
-
"additionalProperties": {}
|
|
3252
|
-
}
|
|
3253
|
-
]
|
|
3254
|
-
}
|
|
3255
|
-
]
|
|
3256
|
-
},
|
|
3257
|
-
"timeout": {
|
|
3258
|
-
"description": "Wait timeout ms (default: 5000)",
|
|
3259
|
-
"type": "number"
|
|
3260
|
-
},
|
|
3261
|
-
"container": {
|
|
3262
|
-
"description": "Scope match to a container",
|
|
3263
|
-
"anyOf": [
|
|
3264
|
-
{
|
|
3265
|
-
"type": "object",
|
|
3266
|
-
"properties": {
|
|
3267
|
-
"elementId": {
|
|
3268
|
-
"type": "string",
|
|
3269
|
-
"description": "Container resource ID"
|
|
3270
|
-
}
|
|
3271
|
-
},
|
|
3272
|
-
"required": [
|
|
3273
|
-
"elementId"
|
|
3274
|
-
],
|
|
3275
|
-
"additionalProperties": false
|
|
3276
|
-
},
|
|
3277
|
-
{
|
|
3278
|
-
"type": "object",
|
|
3279
|
-
"properties": {
|
|
3280
|
-
"text": {
|
|
3281
|
-
"type": "string",
|
|
3282
|
-
"description": "Container text"
|
|
3283
|
-
}
|
|
3284
|
-
},
|
|
3285
|
-
"required": [
|
|
3286
|
-
"text"
|
|
3287
|
-
],
|
|
3288
|
-
"additionalProperties": false
|
|
3289
|
-
}
|
|
3290
|
-
]
|
|
3188
|
+
"text": {
|
|
3189
|
+
"type": "string"
|
|
3291
3190
|
}
|
|
3292
|
-
}
|
|
3191
|
+
}
|
|
3192
|
+
},
|
|
3193
|
+
"timeout": {
|
|
3194
|
+
"type": "number",
|
|
3195
|
+
"description": "Wait timeout ms (default 5000)"
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
"anyOf": [
|
|
3199
|
+
{
|
|
3293
3200
|
"required": [
|
|
3294
3201
|
"textAny"
|
|
3295
3202
|
],
|
|
3296
|
-
"
|
|
3203
|
+
"not": {
|
|
3204
|
+
"anyOf": [
|
|
3205
|
+
{
|
|
3206
|
+
"required": [
|
|
3207
|
+
"elementId"
|
|
3208
|
+
]
|
|
3209
|
+
},
|
|
3210
|
+
{
|
|
3211
|
+
"required": [
|
|
3212
|
+
"text"
|
|
3213
|
+
]
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"required": [
|
|
3217
|
+
"className"
|
|
3218
|
+
]
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"required": [
|
|
3222
|
+
"contentDescription"
|
|
3223
|
+
]
|
|
3224
|
+
},
|
|
3225
|
+
{
|
|
3226
|
+
"required": [
|
|
3227
|
+
"matchType"
|
|
3228
|
+
]
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"required": [
|
|
3232
|
+
"textMatch"
|
|
3233
|
+
]
|
|
3234
|
+
}
|
|
3235
|
+
]
|
|
3236
|
+
}
|
|
3297
3237
|
},
|
|
3298
3238
|
{
|
|
3299
|
-
"
|
|
3239
|
+
"not": {
|
|
3240
|
+
"required": [
|
|
3241
|
+
"textAny"
|
|
3242
|
+
]
|
|
3243
|
+
},
|
|
3244
|
+
"anyOf": [
|
|
3300
3245
|
{
|
|
3301
|
-
"
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
"description": "Element resource ID / accessibility identifier",
|
|
3305
|
-
"type": "string"
|
|
3306
|
-
},
|
|
3307
|
-
"text": {
|
|
3308
|
-
"description": "Element text",
|
|
3309
|
-
"type": "string"
|
|
3310
|
-
},
|
|
3311
|
-
"textAny": {
|
|
3312
|
-
"not": {}
|
|
3313
|
-
},
|
|
3314
|
-
"className": {
|
|
3315
|
-
"description": "Element class name",
|
|
3316
|
-
"type": "string"
|
|
3317
|
-
},
|
|
3318
|
-
"contentDescription": {
|
|
3319
|
-
"description": "Element content description / accessibility label",
|
|
3320
|
-
"type": "string"
|
|
3321
|
-
},
|
|
3322
|
-
"matchType": {
|
|
3323
|
-
"description": "Whether element predicates must all match the same node or any one may match",
|
|
3324
|
-
"type": "string",
|
|
3325
|
-
"enum": [
|
|
3326
|
-
"all",
|
|
3327
|
-
"any"
|
|
3328
|
-
]
|
|
3329
|
-
},
|
|
3330
|
-
"textMatch": {
|
|
3331
|
-
"description": "How to match waitFor.text; does not affect contentDescription",
|
|
3332
|
-
"type": "string",
|
|
3333
|
-
"enum": [
|
|
3334
|
-
"exact",
|
|
3335
|
-
"contains",
|
|
3336
|
-
"regex"
|
|
3337
|
-
]
|
|
3338
|
-
},
|
|
3339
|
-
"activeWindow": {
|
|
3340
|
-
"description": "Foreground app/window predicates",
|
|
3341
|
-
"allOf": [
|
|
3342
|
-
{
|
|
3343
|
-
"type": "object",
|
|
3344
|
-
"properties": {
|
|
3345
|
-
"appId": {
|
|
3346
|
-
"description": "Foreground app bundle ID / package name",
|
|
3347
|
-
"type": "string"
|
|
3348
|
-
},
|
|
3349
|
-
"packageName": {
|
|
3350
|
-
"type": "string"
|
|
3351
|
-
},
|
|
3352
|
-
"bundleId": {
|
|
3353
|
-
"type": "string"
|
|
3354
|
-
},
|
|
3355
|
-
"activityName": {
|
|
3356
|
-
"description": "Foreground Android activity name",
|
|
3357
|
-
"type": "string"
|
|
3358
|
-
}
|
|
3359
|
-
},
|
|
3360
|
-
"additionalProperties": false
|
|
3361
|
-
},
|
|
3362
|
-
{
|
|
3363
|
-
"anyOf": [
|
|
3364
|
-
{
|
|
3365
|
-
"type": "object",
|
|
3366
|
-
"properties": {
|
|
3367
|
-
"appId": {
|
|
3368
|
-
"type": "string"
|
|
3369
|
-
}
|
|
3370
|
-
},
|
|
3371
|
-
"required": [
|
|
3372
|
-
"appId"
|
|
3373
|
-
],
|
|
3374
|
-
"additionalProperties": {}
|
|
3375
|
-
},
|
|
3376
|
-
{
|
|
3377
|
-
"type": "object",
|
|
3378
|
-
"properties": {
|
|
3379
|
-
"packageName": {
|
|
3380
|
-
"type": "string"
|
|
3381
|
-
}
|
|
3382
|
-
},
|
|
3383
|
-
"required": [
|
|
3384
|
-
"packageName"
|
|
3385
|
-
],
|
|
3386
|
-
"additionalProperties": {}
|
|
3387
|
-
},
|
|
3388
|
-
{
|
|
3389
|
-
"type": "object",
|
|
3390
|
-
"properties": {
|
|
3391
|
-
"bundleId": {
|
|
3392
|
-
"type": "string"
|
|
3393
|
-
}
|
|
3394
|
-
},
|
|
3395
|
-
"required": [
|
|
3396
|
-
"bundleId"
|
|
3397
|
-
],
|
|
3398
|
-
"additionalProperties": {}
|
|
3399
|
-
},
|
|
3400
|
-
{
|
|
3401
|
-
"type": "object",
|
|
3402
|
-
"properties": {
|
|
3403
|
-
"activityName": {
|
|
3404
|
-
"type": "string"
|
|
3405
|
-
}
|
|
3406
|
-
},
|
|
3407
|
-
"required": [
|
|
3408
|
-
"activityName"
|
|
3409
|
-
],
|
|
3410
|
-
"additionalProperties": {}
|
|
3411
|
-
}
|
|
3412
|
-
]
|
|
3413
|
-
}
|
|
3414
|
-
]
|
|
3415
|
-
},
|
|
3416
|
-
"timeout": {
|
|
3417
|
-
"description": "Wait timeout ms (default: 5000)",
|
|
3418
|
-
"type": "number"
|
|
3419
|
-
},
|
|
3420
|
-
"container": {
|
|
3421
|
-
"description": "Scope match to a container",
|
|
3422
|
-
"anyOf": [
|
|
3423
|
-
{
|
|
3424
|
-
"type": "object",
|
|
3425
|
-
"properties": {
|
|
3426
|
-
"elementId": {
|
|
3427
|
-
"type": "string",
|
|
3428
|
-
"description": "Container resource ID"
|
|
3429
|
-
}
|
|
3430
|
-
},
|
|
3431
|
-
"required": [
|
|
3432
|
-
"elementId"
|
|
3433
|
-
],
|
|
3434
|
-
"additionalProperties": false
|
|
3435
|
-
},
|
|
3436
|
-
{
|
|
3437
|
-
"type": "object",
|
|
3438
|
-
"properties": {
|
|
3439
|
-
"text": {
|
|
3440
|
-
"type": "string",
|
|
3441
|
-
"description": "Container text"
|
|
3442
|
-
}
|
|
3443
|
-
},
|
|
3444
|
-
"required": [
|
|
3445
|
-
"text"
|
|
3446
|
-
],
|
|
3447
|
-
"additionalProperties": false
|
|
3448
|
-
}
|
|
3449
|
-
]
|
|
3450
|
-
}
|
|
3451
|
-
},
|
|
3452
|
-
"additionalProperties": false
|
|
3246
|
+
"required": [
|
|
3247
|
+
"elementId"
|
|
3248
|
+
]
|
|
3453
3249
|
},
|
|
3454
3250
|
{
|
|
3455
|
-
"
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
"type": "string"
|
|
3473
|
-
}
|
|
3474
|
-
},
|
|
3475
|
-
"required": [
|
|
3476
|
-
"text"
|
|
3477
|
-
],
|
|
3478
|
-
"additionalProperties": {}
|
|
3479
|
-
},
|
|
3480
|
-
{
|
|
3481
|
-
"type": "object",
|
|
3482
|
-
"properties": {
|
|
3483
|
-
"className": {
|
|
3484
|
-
"type": "string"
|
|
3485
|
-
}
|
|
3486
|
-
},
|
|
3487
|
-
"required": [
|
|
3488
|
-
"className"
|
|
3489
|
-
],
|
|
3490
|
-
"additionalProperties": {}
|
|
3491
|
-
},
|
|
3492
|
-
{
|
|
3493
|
-
"type": "object",
|
|
3494
|
-
"properties": {
|
|
3495
|
-
"contentDescription": {
|
|
3496
|
-
"type": "string"
|
|
3497
|
-
}
|
|
3498
|
-
},
|
|
3499
|
-
"required": [
|
|
3500
|
-
"contentDescription"
|
|
3501
|
-
],
|
|
3502
|
-
"additionalProperties": {}
|
|
3503
|
-
},
|
|
3504
|
-
{
|
|
3505
|
-
"type": "object",
|
|
3506
|
-
"properties": {
|
|
3507
|
-
"activeWindow": {
|
|
3508
|
-
"allOf": [
|
|
3509
|
-
{
|
|
3510
|
-
"type": "object",
|
|
3511
|
-
"properties": {
|
|
3512
|
-
"appId": {
|
|
3513
|
-
"description": "Foreground app bundle ID / package name",
|
|
3514
|
-
"type": "string"
|
|
3515
|
-
},
|
|
3516
|
-
"packageName": {
|
|
3517
|
-
"type": "string"
|
|
3518
|
-
},
|
|
3519
|
-
"bundleId": {
|
|
3520
|
-
"type": "string"
|
|
3521
|
-
},
|
|
3522
|
-
"activityName": {
|
|
3523
|
-
"description": "Foreground Android activity name",
|
|
3524
|
-
"type": "string"
|
|
3525
|
-
}
|
|
3526
|
-
},
|
|
3527
|
-
"additionalProperties": false
|
|
3528
|
-
},
|
|
3529
|
-
{
|
|
3530
|
-
"anyOf": [
|
|
3531
|
-
{
|
|
3532
|
-
"type": "object",
|
|
3533
|
-
"properties": {
|
|
3534
|
-
"appId": {
|
|
3535
|
-
"type": "string"
|
|
3536
|
-
}
|
|
3537
|
-
},
|
|
3538
|
-
"required": [
|
|
3539
|
-
"appId"
|
|
3540
|
-
],
|
|
3541
|
-
"additionalProperties": {}
|
|
3542
|
-
},
|
|
3543
|
-
{
|
|
3544
|
-
"type": "object",
|
|
3545
|
-
"properties": {
|
|
3546
|
-
"packageName": {
|
|
3547
|
-
"type": "string"
|
|
3548
|
-
}
|
|
3549
|
-
},
|
|
3550
|
-
"required": [
|
|
3551
|
-
"packageName"
|
|
3552
|
-
],
|
|
3553
|
-
"additionalProperties": {}
|
|
3554
|
-
},
|
|
3555
|
-
{
|
|
3556
|
-
"type": "object",
|
|
3557
|
-
"properties": {
|
|
3558
|
-
"bundleId": {
|
|
3559
|
-
"type": "string"
|
|
3560
|
-
}
|
|
3561
|
-
},
|
|
3562
|
-
"required": [
|
|
3563
|
-
"bundleId"
|
|
3564
|
-
],
|
|
3565
|
-
"additionalProperties": {}
|
|
3566
|
-
},
|
|
3567
|
-
{
|
|
3568
|
-
"type": "object",
|
|
3569
|
-
"properties": {
|
|
3570
|
-
"activityName": {
|
|
3571
|
-
"type": "string"
|
|
3572
|
-
}
|
|
3573
|
-
},
|
|
3574
|
-
"required": [
|
|
3575
|
-
"activityName"
|
|
3576
|
-
],
|
|
3577
|
-
"additionalProperties": {}
|
|
3578
|
-
}
|
|
3579
|
-
]
|
|
3580
|
-
}
|
|
3581
|
-
]
|
|
3582
|
-
}
|
|
3583
|
-
},
|
|
3584
|
-
"required": [
|
|
3585
|
-
"activeWindow"
|
|
3586
|
-
],
|
|
3587
|
-
"additionalProperties": {}
|
|
3588
|
-
}
|
|
3251
|
+
"required": [
|
|
3252
|
+
"text"
|
|
3253
|
+
]
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
"required": [
|
|
3257
|
+
"className"
|
|
3258
|
+
]
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"required": [
|
|
3262
|
+
"contentDescription"
|
|
3263
|
+
]
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
"required": [
|
|
3267
|
+
"activeWindow"
|
|
3589
3268
|
]
|
|
3590
3269
|
}
|
|
3591
3270
|
]
|
|
@@ -3610,9 +3289,6 @@
|
|
|
3610
3289
|
"device": {
|
|
3611
3290
|
"description": "Device label",
|
|
3612
3291
|
"type": "string"
|
|
3613
|
-
},
|
|
3614
|
-
"deviceId": {
|
|
3615
|
-
"type": "string"
|
|
3616
3292
|
}
|
|
3617
3293
|
},
|
|
3618
3294
|
"required": [
|
|
@@ -3752,33 +3428,401 @@
|
|
|
3752
3428
|
"type": "object",
|
|
3753
3429
|
"properties": {
|
|
3754
3430
|
"top": {
|
|
3755
|
-
"type": "
|
|
3756
|
-
"minimum": -9007199254740991,
|
|
3757
|
-
"maximum": 9007199254740991
|
|
3431
|
+
"type": "number"
|
|
3758
3432
|
},
|
|
3759
3433
|
"right": {
|
|
3760
|
-
"type": "
|
|
3761
|
-
"minimum": -9007199254740991,
|
|
3762
|
-
"maximum": 9007199254740991
|
|
3434
|
+
"type": "number"
|
|
3763
3435
|
},
|
|
3764
3436
|
"bottom": {
|
|
3765
|
-
"type": "
|
|
3766
|
-
|
|
3767
|
-
|
|
3437
|
+
"type": "number"
|
|
3438
|
+
},
|
|
3439
|
+
"left": {
|
|
3440
|
+
"type": "number"
|
|
3441
|
+
}
|
|
3442
|
+
},
|
|
3443
|
+
"required": [
|
|
3444
|
+
"top",
|
|
3445
|
+
"right",
|
|
3446
|
+
"bottom",
|
|
3447
|
+
"left"
|
|
3448
|
+
],
|
|
3449
|
+
"additionalProperties": false
|
|
3450
|
+
},
|
|
3451
|
+
"insets": {
|
|
3452
|
+
"type": "object",
|
|
3453
|
+
"properties": {
|
|
3454
|
+
"available": {
|
|
3455
|
+
"type": "boolean"
|
|
3456
|
+
},
|
|
3457
|
+
"source": {
|
|
3458
|
+
"type": "string",
|
|
3459
|
+
"enum": [
|
|
3460
|
+
"android-window-metrics",
|
|
3461
|
+
"android-resource-fallback",
|
|
3462
|
+
"ios-sdk-safe-area",
|
|
3463
|
+
"unavailable"
|
|
3464
|
+
]
|
|
3465
|
+
},
|
|
3466
|
+
"units": {
|
|
3467
|
+
"type": "string",
|
|
3468
|
+
"enum": [
|
|
3469
|
+
"physical-pixels",
|
|
3470
|
+
"points",
|
|
3471
|
+
"unknown"
|
|
3472
|
+
]
|
|
3473
|
+
},
|
|
3474
|
+
"systemBars": {
|
|
3475
|
+
"anyOf": [
|
|
3476
|
+
{
|
|
3477
|
+
"type": "object",
|
|
3478
|
+
"properties": {
|
|
3479
|
+
"visible": {
|
|
3480
|
+
"type": "object",
|
|
3481
|
+
"properties": {
|
|
3482
|
+
"top": {
|
|
3483
|
+
"type": "number"
|
|
3484
|
+
},
|
|
3485
|
+
"right": {
|
|
3486
|
+
"type": "number"
|
|
3487
|
+
},
|
|
3488
|
+
"bottom": {
|
|
3489
|
+
"type": "number"
|
|
3490
|
+
},
|
|
3491
|
+
"left": {
|
|
3492
|
+
"type": "number"
|
|
3493
|
+
}
|
|
3494
|
+
},
|
|
3495
|
+
"required": [
|
|
3496
|
+
"top",
|
|
3497
|
+
"right",
|
|
3498
|
+
"bottom",
|
|
3499
|
+
"left"
|
|
3500
|
+
],
|
|
3501
|
+
"additionalProperties": false
|
|
3502
|
+
},
|
|
3503
|
+
"stable": {
|
|
3504
|
+
"type": "object",
|
|
3505
|
+
"properties": {
|
|
3506
|
+
"top": {
|
|
3507
|
+
"type": "number"
|
|
3508
|
+
},
|
|
3509
|
+
"right": {
|
|
3510
|
+
"type": "number"
|
|
3511
|
+
},
|
|
3512
|
+
"bottom": {
|
|
3513
|
+
"type": "number"
|
|
3514
|
+
},
|
|
3515
|
+
"left": {
|
|
3516
|
+
"type": "number"
|
|
3517
|
+
}
|
|
3518
|
+
},
|
|
3519
|
+
"required": [
|
|
3520
|
+
"top",
|
|
3521
|
+
"right",
|
|
3522
|
+
"bottom",
|
|
3523
|
+
"left"
|
|
3524
|
+
],
|
|
3525
|
+
"additionalProperties": false
|
|
3526
|
+
}
|
|
3527
|
+
},
|
|
3528
|
+
"required": [
|
|
3529
|
+
"visible",
|
|
3530
|
+
"stable"
|
|
3531
|
+
],
|
|
3532
|
+
"additionalProperties": false
|
|
3533
|
+
},
|
|
3534
|
+
{
|
|
3535
|
+
"type": "null"
|
|
3536
|
+
}
|
|
3537
|
+
]
|
|
3538
|
+
},
|
|
3539
|
+
"displayCutout": {
|
|
3540
|
+
"anyOf": [
|
|
3541
|
+
{
|
|
3542
|
+
"type": "object",
|
|
3543
|
+
"properties": {
|
|
3544
|
+
"top": {
|
|
3545
|
+
"type": "number"
|
|
3546
|
+
},
|
|
3547
|
+
"right": {
|
|
3548
|
+
"type": "number"
|
|
3549
|
+
},
|
|
3550
|
+
"bottom": {
|
|
3551
|
+
"type": "number"
|
|
3552
|
+
},
|
|
3553
|
+
"left": {
|
|
3554
|
+
"type": "number"
|
|
3555
|
+
}
|
|
3556
|
+
},
|
|
3557
|
+
"required": [
|
|
3558
|
+
"top",
|
|
3559
|
+
"right",
|
|
3560
|
+
"bottom",
|
|
3561
|
+
"left"
|
|
3562
|
+
],
|
|
3563
|
+
"additionalProperties": false
|
|
3564
|
+
},
|
|
3565
|
+
{
|
|
3566
|
+
"type": "null"
|
|
3567
|
+
}
|
|
3568
|
+
]
|
|
3569
|
+
},
|
|
3570
|
+
"systemGestures": {
|
|
3571
|
+
"anyOf": [
|
|
3572
|
+
{
|
|
3573
|
+
"type": "object",
|
|
3574
|
+
"properties": {
|
|
3575
|
+
"top": {
|
|
3576
|
+
"type": "number"
|
|
3577
|
+
},
|
|
3578
|
+
"right": {
|
|
3579
|
+
"type": "number"
|
|
3580
|
+
},
|
|
3581
|
+
"bottom": {
|
|
3582
|
+
"type": "number"
|
|
3583
|
+
},
|
|
3584
|
+
"left": {
|
|
3585
|
+
"type": "number"
|
|
3586
|
+
}
|
|
3587
|
+
},
|
|
3588
|
+
"required": [
|
|
3589
|
+
"top",
|
|
3590
|
+
"right",
|
|
3591
|
+
"bottom",
|
|
3592
|
+
"left"
|
|
3593
|
+
],
|
|
3594
|
+
"additionalProperties": false
|
|
3595
|
+
},
|
|
3596
|
+
{
|
|
3597
|
+
"type": "null"
|
|
3598
|
+
}
|
|
3599
|
+
]
|
|
3600
|
+
},
|
|
3601
|
+
"mandatorySystemGestures": {
|
|
3602
|
+
"anyOf": [
|
|
3603
|
+
{
|
|
3604
|
+
"type": "object",
|
|
3605
|
+
"properties": {
|
|
3606
|
+
"top": {
|
|
3607
|
+
"type": "number"
|
|
3608
|
+
},
|
|
3609
|
+
"right": {
|
|
3610
|
+
"type": "number"
|
|
3611
|
+
},
|
|
3612
|
+
"bottom": {
|
|
3613
|
+
"type": "number"
|
|
3614
|
+
},
|
|
3615
|
+
"left": {
|
|
3616
|
+
"type": "number"
|
|
3617
|
+
}
|
|
3618
|
+
},
|
|
3619
|
+
"required": [
|
|
3620
|
+
"top",
|
|
3621
|
+
"right",
|
|
3622
|
+
"bottom",
|
|
3623
|
+
"left"
|
|
3624
|
+
],
|
|
3625
|
+
"additionalProperties": false
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
"type": "null"
|
|
3629
|
+
}
|
|
3630
|
+
]
|
|
3631
|
+
},
|
|
3632
|
+
"tappableElement": {
|
|
3633
|
+
"anyOf": [
|
|
3634
|
+
{
|
|
3635
|
+
"type": "object",
|
|
3636
|
+
"properties": {
|
|
3637
|
+
"top": {
|
|
3638
|
+
"type": "number"
|
|
3639
|
+
},
|
|
3640
|
+
"right": {
|
|
3641
|
+
"type": "number"
|
|
3642
|
+
},
|
|
3643
|
+
"bottom": {
|
|
3644
|
+
"type": "number"
|
|
3645
|
+
},
|
|
3646
|
+
"left": {
|
|
3647
|
+
"type": "number"
|
|
3648
|
+
}
|
|
3649
|
+
},
|
|
3650
|
+
"required": [
|
|
3651
|
+
"top",
|
|
3652
|
+
"right",
|
|
3653
|
+
"bottom",
|
|
3654
|
+
"left"
|
|
3655
|
+
],
|
|
3656
|
+
"additionalProperties": false
|
|
3657
|
+
},
|
|
3658
|
+
{
|
|
3659
|
+
"type": "null"
|
|
3660
|
+
}
|
|
3661
|
+
]
|
|
3662
|
+
},
|
|
3663
|
+
"safeArea": {
|
|
3664
|
+
"type": "object",
|
|
3665
|
+
"properties": {
|
|
3666
|
+
"top": {
|
|
3667
|
+
"type": "number"
|
|
3668
|
+
},
|
|
3669
|
+
"right": {
|
|
3670
|
+
"type": "number"
|
|
3671
|
+
},
|
|
3672
|
+
"bottom": {
|
|
3673
|
+
"type": "number"
|
|
3674
|
+
},
|
|
3675
|
+
"left": {
|
|
3676
|
+
"type": "number"
|
|
3677
|
+
}
|
|
3678
|
+
},
|
|
3679
|
+
"required": [
|
|
3680
|
+
"top",
|
|
3681
|
+
"right",
|
|
3682
|
+
"bottom",
|
|
3683
|
+
"left"
|
|
3684
|
+
],
|
|
3685
|
+
"additionalProperties": false
|
|
3686
|
+
}
|
|
3687
|
+
},
|
|
3688
|
+
"required": [
|
|
3689
|
+
"available",
|
|
3690
|
+
"source",
|
|
3691
|
+
"units"
|
|
3692
|
+
],
|
|
3693
|
+
"additionalProperties": false
|
|
3694
|
+
},
|
|
3695
|
+
"layoutWarnings": {
|
|
3696
|
+
"type": "array",
|
|
3697
|
+
"items": {
|
|
3698
|
+
"type": "object",
|
|
3699
|
+
"properties": {
|
|
3700
|
+
"type": {
|
|
3701
|
+
"type": "string",
|
|
3702
|
+
"enum": [
|
|
3703
|
+
"important-content-under-inset",
|
|
3704
|
+
"interaction-in-system-gesture-region"
|
|
3705
|
+
]
|
|
3706
|
+
},
|
|
3707
|
+
"severity": {
|
|
3708
|
+
"type": "string",
|
|
3709
|
+
"enum": [
|
|
3710
|
+
"warning",
|
|
3711
|
+
"info"
|
|
3712
|
+
]
|
|
3713
|
+
},
|
|
3714
|
+
"element": {
|
|
3715
|
+
"type": "object",
|
|
3716
|
+
"properties": {
|
|
3717
|
+
"viewId": {
|
|
3718
|
+
"type": "string"
|
|
3719
|
+
},
|
|
3720
|
+
"resourceId": {
|
|
3721
|
+
"type": "string"
|
|
3722
|
+
},
|
|
3723
|
+
"text": {
|
|
3724
|
+
"type": "string"
|
|
3725
|
+
},
|
|
3726
|
+
"contentDesc": {
|
|
3727
|
+
"type": "string"
|
|
3728
|
+
},
|
|
3729
|
+
"bounds": {
|
|
3730
|
+
"type": "object",
|
|
3731
|
+
"properties": {
|
|
3732
|
+
"left": {
|
|
3733
|
+
"type": "number"
|
|
3734
|
+
},
|
|
3735
|
+
"top": {
|
|
3736
|
+
"type": "number"
|
|
3737
|
+
},
|
|
3738
|
+
"right": {
|
|
3739
|
+
"type": "number"
|
|
3740
|
+
},
|
|
3741
|
+
"bottom": {
|
|
3742
|
+
"type": "number"
|
|
3743
|
+
},
|
|
3744
|
+
"centerX": {
|
|
3745
|
+
"type": "number"
|
|
3746
|
+
},
|
|
3747
|
+
"centerY": {
|
|
3748
|
+
"type": "number"
|
|
3749
|
+
}
|
|
3750
|
+
},
|
|
3751
|
+
"required": [
|
|
3752
|
+
"left",
|
|
3753
|
+
"top",
|
|
3754
|
+
"right",
|
|
3755
|
+
"bottom"
|
|
3756
|
+
],
|
|
3757
|
+
"additionalProperties": false,
|
|
3758
|
+
"description": "Element bounds. Default: object {left, top, right, bottom} (+ optional centerX/centerY). Under --observe-result-compact: positional tuple [left, top, right, bottom]."
|
|
3759
|
+
}
|
|
3760
|
+
},
|
|
3761
|
+
"required": [
|
|
3762
|
+
"bounds"
|
|
3763
|
+
],
|
|
3764
|
+
"additionalProperties": false
|
|
3765
|
+
},
|
|
3766
|
+
"categories": {
|
|
3767
|
+
"type": "array",
|
|
3768
|
+
"items": {
|
|
3769
|
+
"type": "string",
|
|
3770
|
+
"enum": [
|
|
3771
|
+
"text",
|
|
3772
|
+
"interaction"
|
|
3773
|
+
]
|
|
3774
|
+
}
|
|
3775
|
+
},
|
|
3776
|
+
"insetTypes": {
|
|
3777
|
+
"type": "array",
|
|
3778
|
+
"items": {
|
|
3779
|
+
"type": "string",
|
|
3780
|
+
"enum": [
|
|
3781
|
+
"systemBars",
|
|
3782
|
+
"displayCutout",
|
|
3783
|
+
"safeArea",
|
|
3784
|
+
"systemGestures",
|
|
3785
|
+
"mandatorySystemGestures"
|
|
3786
|
+
]
|
|
3787
|
+
}
|
|
3788
|
+
},
|
|
3789
|
+
"sides": {
|
|
3790
|
+
"type": "array",
|
|
3791
|
+
"items": {
|
|
3792
|
+
"type": "string",
|
|
3793
|
+
"enum": [
|
|
3794
|
+
"top",
|
|
3795
|
+
"right",
|
|
3796
|
+
"bottom",
|
|
3797
|
+
"left"
|
|
3798
|
+
]
|
|
3799
|
+
}
|
|
3800
|
+
},
|
|
3801
|
+
"overlapPercent": {
|
|
3802
|
+
"type": "integer",
|
|
3803
|
+
"minimum": -9007199254740991,
|
|
3804
|
+
"maximum": 9007199254740991
|
|
3805
|
+
},
|
|
3806
|
+
"confidence": {
|
|
3807
|
+
"type": "string",
|
|
3808
|
+
"enum": [
|
|
3809
|
+
"high",
|
|
3810
|
+
"medium"
|
|
3811
|
+
]
|
|
3812
|
+
}
|
|
3768
3813
|
},
|
|
3769
|
-
"
|
|
3770
|
-
"type"
|
|
3771
|
-
"
|
|
3772
|
-
"
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
"
|
|
3780
|
-
|
|
3781
|
-
"additionalProperties": false
|
|
3814
|
+
"required": [
|
|
3815
|
+
"type",
|
|
3816
|
+
"severity",
|
|
3817
|
+
"element",
|
|
3818
|
+
"categories",
|
|
3819
|
+
"insetTypes",
|
|
3820
|
+
"sides",
|
|
3821
|
+
"overlapPercent",
|
|
3822
|
+
"confidence"
|
|
3823
|
+
],
|
|
3824
|
+
"additionalProperties": false
|
|
3825
|
+
}
|
|
3782
3826
|
},
|
|
3783
3827
|
"viewHierarchy": {
|
|
3784
3828
|
"type": "object",
|
|
@@ -3884,67 +3928,303 @@
|
|
|
3884
3928
|
"type": "number"
|
|
3885
3929
|
}
|
|
3886
3930
|
},
|
|
3887
|
-
"required": [
|
|
3888
|
-
"left",
|
|
3889
|
-
"top",
|
|
3890
|
-
"right",
|
|
3891
|
-
"bottom"
|
|
3892
|
-
],
|
|
3893
|
-
"additionalProperties": false,
|
|
3894
|
-
"description": "Element bounds. Default: object {left, top, right, bottom} (+ optional centerX/centerY). Under --observe-result-compact: positional tuple [left, top, right, bottom]."
|
|
3895
|
-
},
|
|
3896
|
-
"reason": {
|
|
3897
|
-
"type": "string"
|
|
3931
|
+
"required": [
|
|
3932
|
+
"left",
|
|
3933
|
+
"top",
|
|
3934
|
+
"right",
|
|
3935
|
+
"bottom"
|
|
3936
|
+
],
|
|
3937
|
+
"additionalProperties": false,
|
|
3938
|
+
"description": "Element bounds. Default: object {left, top, right, bottom} (+ optional centerX/centerY). Under --observe-result-compact: positional tuple [left, top, right, bottom]."
|
|
3939
|
+
},
|
|
3940
|
+
"reason": {
|
|
3941
|
+
"type": "string"
|
|
3942
|
+
},
|
|
3943
|
+
"areaPercent": {
|
|
3944
|
+
"type": "number"
|
|
3945
|
+
}
|
|
3946
|
+
},
|
|
3947
|
+
"required": [
|
|
3948
|
+
"bounds",
|
|
3949
|
+
"reason",
|
|
3950
|
+
"areaPercent"
|
|
3951
|
+
],
|
|
3952
|
+
"additionalProperties": {}
|
|
3953
|
+
}
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
"type": "null"
|
|
3957
|
+
}
|
|
3958
|
+
]
|
|
3959
|
+
},
|
|
3960
|
+
"accessibility-focused-element": {
|
|
3961
|
+
"$ref": "#/$defs/__schema0"
|
|
3962
|
+
},
|
|
3963
|
+
"systemInsets": {
|
|
3964
|
+
"type": "object",
|
|
3965
|
+
"properties": {
|
|
3966
|
+
"top": {
|
|
3967
|
+
"type": "number"
|
|
3968
|
+
},
|
|
3969
|
+
"right": {
|
|
3970
|
+
"type": "number"
|
|
3971
|
+
},
|
|
3972
|
+
"bottom": {
|
|
3973
|
+
"type": "number"
|
|
3974
|
+
},
|
|
3975
|
+
"left": {
|
|
3976
|
+
"type": "number"
|
|
3977
|
+
}
|
|
3978
|
+
},
|
|
3979
|
+
"required": [
|
|
3980
|
+
"top",
|
|
3981
|
+
"right",
|
|
3982
|
+
"bottom",
|
|
3983
|
+
"left"
|
|
3984
|
+
],
|
|
3985
|
+
"additionalProperties": false
|
|
3986
|
+
},
|
|
3987
|
+
"insets": {
|
|
3988
|
+
"type": "object",
|
|
3989
|
+
"properties": {
|
|
3990
|
+
"available": {
|
|
3991
|
+
"type": "boolean"
|
|
3992
|
+
},
|
|
3993
|
+
"source": {
|
|
3994
|
+
"type": "string",
|
|
3995
|
+
"enum": [
|
|
3996
|
+
"android-window-metrics",
|
|
3997
|
+
"android-resource-fallback",
|
|
3998
|
+
"ios-sdk-safe-area",
|
|
3999
|
+
"unavailable"
|
|
4000
|
+
]
|
|
4001
|
+
},
|
|
4002
|
+
"units": {
|
|
4003
|
+
"type": "string",
|
|
4004
|
+
"enum": [
|
|
4005
|
+
"physical-pixels",
|
|
4006
|
+
"points",
|
|
4007
|
+
"unknown"
|
|
4008
|
+
]
|
|
4009
|
+
},
|
|
4010
|
+
"systemBars": {
|
|
4011
|
+
"anyOf": [
|
|
4012
|
+
{
|
|
4013
|
+
"type": "object",
|
|
4014
|
+
"properties": {
|
|
4015
|
+
"visible": {
|
|
4016
|
+
"type": "object",
|
|
4017
|
+
"properties": {
|
|
4018
|
+
"top": {
|
|
4019
|
+
"type": "number"
|
|
4020
|
+
},
|
|
4021
|
+
"right": {
|
|
4022
|
+
"type": "number"
|
|
4023
|
+
},
|
|
4024
|
+
"bottom": {
|
|
4025
|
+
"type": "number"
|
|
4026
|
+
},
|
|
4027
|
+
"left": {
|
|
4028
|
+
"type": "number"
|
|
4029
|
+
}
|
|
4030
|
+
},
|
|
4031
|
+
"required": [
|
|
4032
|
+
"top",
|
|
4033
|
+
"right",
|
|
4034
|
+
"bottom",
|
|
4035
|
+
"left"
|
|
4036
|
+
],
|
|
4037
|
+
"additionalProperties": false
|
|
4038
|
+
},
|
|
4039
|
+
"stable": {
|
|
4040
|
+
"type": "object",
|
|
4041
|
+
"properties": {
|
|
4042
|
+
"top": {
|
|
4043
|
+
"type": "number"
|
|
4044
|
+
},
|
|
4045
|
+
"right": {
|
|
4046
|
+
"type": "number"
|
|
4047
|
+
},
|
|
4048
|
+
"bottom": {
|
|
4049
|
+
"type": "number"
|
|
4050
|
+
},
|
|
4051
|
+
"left": {
|
|
4052
|
+
"type": "number"
|
|
4053
|
+
}
|
|
4054
|
+
},
|
|
4055
|
+
"required": [
|
|
4056
|
+
"top",
|
|
4057
|
+
"right",
|
|
4058
|
+
"bottom",
|
|
4059
|
+
"left"
|
|
4060
|
+
],
|
|
4061
|
+
"additionalProperties": false
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
4064
|
+
"required": [
|
|
4065
|
+
"visible",
|
|
4066
|
+
"stable"
|
|
4067
|
+
],
|
|
4068
|
+
"additionalProperties": false
|
|
4069
|
+
},
|
|
4070
|
+
{
|
|
4071
|
+
"type": "null"
|
|
4072
|
+
}
|
|
4073
|
+
]
|
|
4074
|
+
},
|
|
4075
|
+
"displayCutout": {
|
|
4076
|
+
"anyOf": [
|
|
4077
|
+
{
|
|
4078
|
+
"type": "object",
|
|
4079
|
+
"properties": {
|
|
4080
|
+
"top": {
|
|
4081
|
+
"type": "number"
|
|
4082
|
+
},
|
|
4083
|
+
"right": {
|
|
4084
|
+
"type": "number"
|
|
4085
|
+
},
|
|
4086
|
+
"bottom": {
|
|
4087
|
+
"type": "number"
|
|
4088
|
+
},
|
|
4089
|
+
"left": {
|
|
4090
|
+
"type": "number"
|
|
4091
|
+
}
|
|
4092
|
+
},
|
|
4093
|
+
"required": [
|
|
4094
|
+
"top",
|
|
4095
|
+
"right",
|
|
4096
|
+
"bottom",
|
|
4097
|
+
"left"
|
|
4098
|
+
],
|
|
4099
|
+
"additionalProperties": false
|
|
4100
|
+
},
|
|
4101
|
+
{
|
|
4102
|
+
"type": "null"
|
|
4103
|
+
}
|
|
4104
|
+
]
|
|
4105
|
+
},
|
|
4106
|
+
"systemGestures": {
|
|
4107
|
+
"anyOf": [
|
|
4108
|
+
{
|
|
4109
|
+
"type": "object",
|
|
4110
|
+
"properties": {
|
|
4111
|
+
"top": {
|
|
4112
|
+
"type": "number"
|
|
4113
|
+
},
|
|
4114
|
+
"right": {
|
|
4115
|
+
"type": "number"
|
|
4116
|
+
},
|
|
4117
|
+
"bottom": {
|
|
4118
|
+
"type": "number"
|
|
4119
|
+
},
|
|
4120
|
+
"left": {
|
|
4121
|
+
"type": "number"
|
|
4122
|
+
}
|
|
4123
|
+
},
|
|
4124
|
+
"required": [
|
|
4125
|
+
"top",
|
|
4126
|
+
"right",
|
|
4127
|
+
"bottom",
|
|
4128
|
+
"left"
|
|
4129
|
+
],
|
|
4130
|
+
"additionalProperties": false
|
|
4131
|
+
},
|
|
4132
|
+
{
|
|
4133
|
+
"type": "null"
|
|
4134
|
+
}
|
|
4135
|
+
]
|
|
4136
|
+
},
|
|
4137
|
+
"mandatorySystemGestures": {
|
|
4138
|
+
"anyOf": [
|
|
4139
|
+
{
|
|
4140
|
+
"type": "object",
|
|
4141
|
+
"properties": {
|
|
4142
|
+
"top": {
|
|
4143
|
+
"type": "number"
|
|
4144
|
+
},
|
|
4145
|
+
"right": {
|
|
4146
|
+
"type": "number"
|
|
4147
|
+
},
|
|
4148
|
+
"bottom": {
|
|
4149
|
+
"type": "number"
|
|
4150
|
+
},
|
|
4151
|
+
"left": {
|
|
4152
|
+
"type": "number"
|
|
4153
|
+
}
|
|
4154
|
+
},
|
|
4155
|
+
"required": [
|
|
4156
|
+
"top",
|
|
4157
|
+
"right",
|
|
4158
|
+
"bottom",
|
|
4159
|
+
"left"
|
|
4160
|
+
],
|
|
4161
|
+
"additionalProperties": false
|
|
4162
|
+
},
|
|
4163
|
+
{
|
|
4164
|
+
"type": "null"
|
|
4165
|
+
}
|
|
4166
|
+
]
|
|
4167
|
+
},
|
|
4168
|
+
"tappableElement": {
|
|
4169
|
+
"anyOf": [
|
|
4170
|
+
{
|
|
4171
|
+
"type": "object",
|
|
4172
|
+
"properties": {
|
|
4173
|
+
"top": {
|
|
4174
|
+
"type": "number"
|
|
4175
|
+
},
|
|
4176
|
+
"right": {
|
|
4177
|
+
"type": "number"
|
|
4178
|
+
},
|
|
4179
|
+
"bottom": {
|
|
4180
|
+
"type": "number"
|
|
4181
|
+
},
|
|
4182
|
+
"left": {
|
|
4183
|
+
"type": "number"
|
|
4184
|
+
}
|
|
3898
4185
|
},
|
|
3899
|
-
"
|
|
3900
|
-
"
|
|
3901
|
-
|
|
4186
|
+
"required": [
|
|
4187
|
+
"top",
|
|
4188
|
+
"right",
|
|
4189
|
+
"bottom",
|
|
4190
|
+
"left"
|
|
4191
|
+
],
|
|
4192
|
+
"additionalProperties": false
|
|
3902
4193
|
},
|
|
3903
|
-
|
|
3904
|
-
"
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
],
|
|
3908
|
-
"additionalProperties": {}
|
|
3909
|
-
}
|
|
3910
|
-
},
|
|
3911
|
-
{
|
|
3912
|
-
"type": "null"
|
|
3913
|
-
}
|
|
3914
|
-
]
|
|
3915
|
-
},
|
|
3916
|
-
"accessibility-focused-element": {
|
|
3917
|
-
"$ref": "#/$defs/__schema0"
|
|
3918
|
-
},
|
|
3919
|
-
"systemInsets": {
|
|
3920
|
-
"type": "object",
|
|
3921
|
-
"properties": {
|
|
3922
|
-
"top": {
|
|
3923
|
-
"type": "integer",
|
|
3924
|
-
"minimum": -9007199254740991,
|
|
3925
|
-
"maximum": 9007199254740991
|
|
3926
|
-
},
|
|
3927
|
-
"right": {
|
|
3928
|
-
"type": "integer",
|
|
3929
|
-
"minimum": -9007199254740991,
|
|
3930
|
-
"maximum": 9007199254740991
|
|
3931
|
-
},
|
|
3932
|
-
"bottom": {
|
|
3933
|
-
"type": "integer",
|
|
3934
|
-
"minimum": -9007199254740991,
|
|
3935
|
-
"maximum": 9007199254740991
|
|
4194
|
+
{
|
|
4195
|
+
"type": "null"
|
|
4196
|
+
}
|
|
4197
|
+
]
|
|
3936
4198
|
},
|
|
3937
|
-
"
|
|
3938
|
-
"type": "
|
|
3939
|
-
"
|
|
3940
|
-
|
|
4199
|
+
"safeArea": {
|
|
4200
|
+
"type": "object",
|
|
4201
|
+
"properties": {
|
|
4202
|
+
"top": {
|
|
4203
|
+
"type": "number"
|
|
4204
|
+
},
|
|
4205
|
+
"right": {
|
|
4206
|
+
"type": "number"
|
|
4207
|
+
},
|
|
4208
|
+
"bottom": {
|
|
4209
|
+
"type": "number"
|
|
4210
|
+
},
|
|
4211
|
+
"left": {
|
|
4212
|
+
"type": "number"
|
|
4213
|
+
}
|
|
4214
|
+
},
|
|
4215
|
+
"required": [
|
|
4216
|
+
"top",
|
|
4217
|
+
"right",
|
|
4218
|
+
"bottom",
|
|
4219
|
+
"left"
|
|
4220
|
+
],
|
|
4221
|
+
"additionalProperties": false
|
|
3941
4222
|
}
|
|
3942
4223
|
},
|
|
3943
4224
|
"required": [
|
|
3944
|
-
"
|
|
3945
|
-
"
|
|
3946
|
-
"
|
|
3947
|
-
"left"
|
|
4225
|
+
"available",
|
|
4226
|
+
"source",
|
|
4227
|
+
"units"
|
|
3948
4228
|
],
|
|
3949
4229
|
"additionalProperties": false
|
|
3950
4230
|
}
|
|
@@ -4970,6 +5250,25 @@
|
|
|
4970
5250
|
],
|
|
4971
5251
|
"additionalProperties": {}
|
|
4972
5252
|
},
|
|
5253
|
+
"deviceLock": {
|
|
5254
|
+
"type": "object",
|
|
5255
|
+
"properties": {
|
|
5256
|
+
"locked": {
|
|
5257
|
+
"type": "boolean"
|
|
5258
|
+
},
|
|
5259
|
+
"keyguardShowing": {
|
|
5260
|
+
"type": "boolean"
|
|
5261
|
+
},
|
|
5262
|
+
"secure": {
|
|
5263
|
+
"type": "boolean"
|
|
5264
|
+
}
|
|
5265
|
+
},
|
|
5266
|
+
"required": [
|
|
5267
|
+
"locked",
|
|
5268
|
+
"keyguardShowing"
|
|
5269
|
+
],
|
|
5270
|
+
"additionalProperties": false
|
|
5271
|
+
},
|
|
4973
5272
|
"artifact": {
|
|
4974
5273
|
"type": "object",
|
|
4975
5274
|
"properties": {
|
|
@@ -5032,9 +5331,6 @@
|
|
|
5032
5331
|
"device": {
|
|
5033
5332
|
"description": "Device label",
|
|
5034
5333
|
"type": "string"
|
|
5035
|
-
},
|
|
5036
|
-
"deviceId": {
|
|
5037
|
-
"type": "string"
|
|
5038
5334
|
}
|
|
5039
5335
|
},
|
|
5040
5336
|
"required": [
|
|
@@ -5083,9 +5379,6 @@
|
|
|
5083
5379
|
"device": {
|
|
5084
5380
|
"description": "Device label",
|
|
5085
5381
|
"type": "string"
|
|
5086
|
-
},
|
|
5087
|
-
"deviceId": {
|
|
5088
|
-
"type": "string"
|
|
5089
5382
|
}
|
|
5090
5383
|
},
|
|
5091
5384
|
"required": [
|
|
@@ -5134,35 +5427,31 @@
|
|
|
5134
5427
|
"type": "boolean"
|
|
5135
5428
|
},
|
|
5136
5429
|
"container": {
|
|
5137
|
-
"
|
|
5138
|
-
"
|
|
5430
|
+
"type": "object",
|
|
5431
|
+
"additionalProperties": false,
|
|
5432
|
+
"properties": {
|
|
5433
|
+
"elementId": {
|
|
5434
|
+
"type": "string",
|
|
5435
|
+
"description": "Container resource ID"
|
|
5436
|
+
},
|
|
5437
|
+
"text": {
|
|
5438
|
+
"type": "string",
|
|
5439
|
+
"description": "Container text"
|
|
5440
|
+
}
|
|
5441
|
+
},
|
|
5442
|
+
"oneOf": [
|
|
5139
5443
|
{
|
|
5140
|
-
"type": "object",
|
|
5141
|
-
"properties": {
|
|
5142
|
-
"elementId": {
|
|
5143
|
-
"type": "string",
|
|
5144
|
-
"description": "Container resource ID"
|
|
5145
|
-
}
|
|
5146
|
-
},
|
|
5147
5444
|
"required": [
|
|
5148
5445
|
"elementId"
|
|
5149
|
-
]
|
|
5150
|
-
"additionalProperties": false
|
|
5446
|
+
]
|
|
5151
5447
|
},
|
|
5152
5448
|
{
|
|
5153
|
-
"type": "object",
|
|
5154
|
-
"properties": {
|
|
5155
|
-
"text": {
|
|
5156
|
-
"type": "string",
|
|
5157
|
-
"description": "Container text"
|
|
5158
|
-
}
|
|
5159
|
-
},
|
|
5160
5449
|
"required": [
|
|
5161
5450
|
"text"
|
|
5162
|
-
]
|
|
5163
|
-
"additionalProperties": false
|
|
5451
|
+
]
|
|
5164
5452
|
}
|
|
5165
|
-
]
|
|
5453
|
+
],
|
|
5454
|
+
"description": "Scope search to a container"
|
|
5166
5455
|
},
|
|
5167
5456
|
"autoTarget": {
|
|
5168
5457
|
"description": "Auto-target pinchable containers",
|
|
@@ -5185,9 +5474,6 @@
|
|
|
5185
5474
|
"device": {
|
|
5186
5475
|
"description": "Device label",
|
|
5187
5476
|
"type": "string"
|
|
5188
|
-
},
|
|
5189
|
-
"deviceId": {
|
|
5190
|
-
"type": "string"
|
|
5191
5477
|
}
|
|
5192
5478
|
},
|
|
5193
5479
|
"required": [
|
|
@@ -5276,9 +5562,6 @@
|
|
|
5276
5562
|
"device": {
|
|
5277
5563
|
"description": "Device label",
|
|
5278
5564
|
"type": "string"
|
|
5279
|
-
},
|
|
5280
|
-
"deviceId": {
|
|
5281
|
-
"type": "string"
|
|
5282
5565
|
}
|
|
5283
5566
|
},
|
|
5284
5567
|
"required": [
|
|
@@ -5340,9 +5623,6 @@
|
|
|
5340
5623
|
"device": {
|
|
5341
5624
|
"description": "Device label",
|
|
5342
5625
|
"type": "string"
|
|
5343
|
-
},
|
|
5344
|
-
"deviceId": {
|
|
5345
|
-
"type": "string"
|
|
5346
5626
|
}
|
|
5347
5627
|
},
|
|
5348
5628
|
"required": [
|
|
@@ -5408,9 +5688,6 @@
|
|
|
5408
5688
|
"device": {
|
|
5409
5689
|
"description": "Device label",
|
|
5410
5690
|
"type": "string"
|
|
5411
|
-
},
|
|
5412
|
-
"deviceId": {
|
|
5413
|
-
"type": "string"
|
|
5414
5691
|
}
|
|
5415
5692
|
},
|
|
5416
5693
|
"required": [
|
|
@@ -5445,9 +5722,6 @@
|
|
|
5445
5722
|
"device": {
|
|
5446
5723
|
"description": "Device label",
|
|
5447
5724
|
"type": "string"
|
|
5448
|
-
},
|
|
5449
|
-
"deviceId": {
|
|
5450
|
-
"type": "string"
|
|
5451
5725
|
}
|
|
5452
5726
|
},
|
|
5453
5727
|
"required": [
|
|
@@ -5569,9 +5843,6 @@
|
|
|
5569
5843
|
"device": {
|
|
5570
5844
|
"description": "Device label",
|
|
5571
5845
|
"type": "string"
|
|
5572
|
-
},
|
|
5573
|
-
"deviceId": {
|
|
5574
|
-
"type": "string"
|
|
5575
5846
|
}
|
|
5576
5847
|
},
|
|
5577
5848
|
"required": [
|
|
@@ -5612,9 +5883,6 @@
|
|
|
5612
5883
|
"device": {
|
|
5613
5884
|
"description": "Device label",
|
|
5614
5885
|
"type": "string"
|
|
5615
|
-
},
|
|
5616
|
-
"deviceId": {
|
|
5617
|
-
"type": "string"
|
|
5618
5886
|
}
|
|
5619
5887
|
},
|
|
5620
5888
|
"required": [
|
|
@@ -5648,9 +5916,6 @@
|
|
|
5648
5916
|
"device": {
|
|
5649
5917
|
"description": "Device label",
|
|
5650
5918
|
"type": "string"
|
|
5651
|
-
},
|
|
5652
|
-
"deviceId": {
|
|
5653
|
-
"type": "string"
|
|
5654
5919
|
}
|
|
5655
5920
|
},
|
|
5656
5921
|
"required": [
|
|
@@ -5691,9 +5956,6 @@
|
|
|
5691
5956
|
"device": {
|
|
5692
5957
|
"description": "Device label",
|
|
5693
5958
|
"type": "string"
|
|
5694
|
-
},
|
|
5695
|
-
"deviceId": {
|
|
5696
|
-
"type": "string"
|
|
5697
5959
|
}
|
|
5698
5960
|
},
|
|
5699
5961
|
"required": [
|
|
@@ -5797,9 +6059,6 @@
|
|
|
5797
6059
|
"device": {
|
|
5798
6060
|
"description": "Device label",
|
|
5799
6061
|
"type": "string"
|
|
5800
|
-
},
|
|
5801
|
-
"deviceId": {
|
|
5802
|
-
"type": "string"
|
|
5803
6062
|
}
|
|
5804
6063
|
},
|
|
5805
6064
|
"required": [
|
|
@@ -5853,9 +6112,6 @@
|
|
|
5853
6112
|
"device": {
|
|
5854
6113
|
"description": "Device label",
|
|
5855
6114
|
"type": "string"
|
|
5856
|
-
},
|
|
5857
|
-
"deviceId": {
|
|
5858
|
-
"type": "string"
|
|
5859
6115
|
}
|
|
5860
6116
|
},
|
|
5861
6117
|
"additionalProperties": false
|
|
@@ -5929,9 +6185,6 @@
|
|
|
5929
6185
|
"device": {
|
|
5930
6186
|
"description": "Device label",
|
|
5931
6187
|
"type": "string"
|
|
5932
|
-
},
|
|
5933
|
-
"deviceId": {
|
|
5934
|
-
"type": "string"
|
|
5935
6188
|
}
|
|
5936
6189
|
},
|
|
5937
6190
|
"required": [
|
|
@@ -5975,9 +6228,6 @@
|
|
|
5975
6228
|
"device": {
|
|
5976
6229
|
"description": "Device label",
|
|
5977
6230
|
"type": "string"
|
|
5978
|
-
},
|
|
5979
|
-
"deviceId": {
|
|
5980
|
-
"type": "string"
|
|
5981
6231
|
}
|
|
5982
6232
|
},
|
|
5983
6233
|
"required": [
|
|
@@ -6057,9 +6307,6 @@
|
|
|
6057
6307
|
"device": {
|
|
6058
6308
|
"description": "Device label",
|
|
6059
6309
|
"type": "string"
|
|
6060
|
-
},
|
|
6061
|
-
"deviceId": {
|
|
6062
|
-
"type": "string"
|
|
6063
6310
|
}
|
|
6064
6311
|
},
|
|
6065
6312
|
"required": [
|
|
@@ -6140,9 +6387,6 @@
|
|
|
6140
6387
|
"device": {
|
|
6141
6388
|
"description": "Device label",
|
|
6142
6389
|
"type": "string"
|
|
6143
|
-
},
|
|
6144
|
-
"deviceId": {
|
|
6145
|
-
"type": "string"
|
|
6146
6390
|
}
|
|
6147
6391
|
},
|
|
6148
6392
|
"required": [
|
|
@@ -6259,9 +6503,6 @@
|
|
|
6259
6503
|
"device": {
|
|
6260
6504
|
"description": "Device label",
|
|
6261
6505
|
"type": "string"
|
|
6262
|
-
},
|
|
6263
|
-
"deviceId": {
|
|
6264
|
-
"type": "string"
|
|
6265
6506
|
}
|
|
6266
6507
|
},
|
|
6267
6508
|
"required": [
|
|
@@ -6305,9 +6546,6 @@
|
|
|
6305
6546
|
"device": {
|
|
6306
6547
|
"description": "Device label",
|
|
6307
6548
|
"type": "string"
|
|
6308
|
-
},
|
|
6309
|
-
"deviceId": {
|
|
6310
|
-
"type": "string"
|
|
6311
6549
|
}
|
|
6312
6550
|
},
|
|
6313
6551
|
"required": [
|
|
@@ -6381,6 +6619,10 @@
|
|
|
6381
6619
|
"timeoutMs": {
|
|
6382
6620
|
"description": "Boot timeout in ms",
|
|
6383
6621
|
"type": "number"
|
|
6622
|
+
},
|
|
6623
|
+
"createIfMissing": {
|
|
6624
|
+
"description": "Create a device when nothing matches (CLI: --create-if-missing). Default off; AUTOMOBILE_ALLOW_DEVICE_CREATE=1 enables it when this flag is not supplied, and the flag wins.",
|
|
6625
|
+
"type": "boolean"
|
|
6384
6626
|
}
|
|
6385
6627
|
},
|
|
6386
6628
|
"required": [
|
|
@@ -6439,35 +6681,31 @@
|
|
|
6439
6681
|
"type": "boolean"
|
|
6440
6682
|
},
|
|
6441
6683
|
"container": {
|
|
6442
|
-
"
|
|
6443
|
-
"
|
|
6684
|
+
"type": "object",
|
|
6685
|
+
"additionalProperties": false,
|
|
6686
|
+
"properties": {
|
|
6687
|
+
"elementId": {
|
|
6688
|
+
"type": "string",
|
|
6689
|
+
"description": "Container resource ID"
|
|
6690
|
+
},
|
|
6691
|
+
"text": {
|
|
6692
|
+
"type": "string",
|
|
6693
|
+
"description": "Container text"
|
|
6694
|
+
}
|
|
6695
|
+
},
|
|
6696
|
+
"oneOf": [
|
|
6444
6697
|
{
|
|
6445
|
-
"type": "object",
|
|
6446
|
-
"properties": {
|
|
6447
|
-
"elementId": {
|
|
6448
|
-
"type": "string",
|
|
6449
|
-
"description": "Container resource ID"
|
|
6450
|
-
}
|
|
6451
|
-
},
|
|
6452
6698
|
"required": [
|
|
6453
6699
|
"elementId"
|
|
6454
|
-
]
|
|
6455
|
-
"additionalProperties": false
|
|
6700
|
+
]
|
|
6456
6701
|
},
|
|
6457
6702
|
{
|
|
6458
|
-
"type": "object",
|
|
6459
|
-
"properties": {
|
|
6460
|
-
"text": {
|
|
6461
|
-
"type": "string",
|
|
6462
|
-
"description": "Container text"
|
|
6463
|
-
}
|
|
6464
|
-
},
|
|
6465
6703
|
"required": [
|
|
6466
6704
|
"text"
|
|
6467
|
-
]
|
|
6468
|
-
"additionalProperties": false
|
|
6705
|
+
]
|
|
6469
6706
|
}
|
|
6470
|
-
]
|
|
6707
|
+
],
|
|
6708
|
+
"description": "Scope search to a container"
|
|
6471
6709
|
},
|
|
6472
6710
|
"autoTarget": {
|
|
6473
6711
|
"description": "Auto-target scrollable containers (default: true)",
|
|
@@ -6492,35 +6730,31 @@
|
|
|
6492
6730
|
]
|
|
6493
6731
|
},
|
|
6494
6732
|
"lookFor": {
|
|
6495
|
-
"
|
|
6496
|
-
"
|
|
6733
|
+
"type": "object",
|
|
6734
|
+
"additionalProperties": false,
|
|
6735
|
+
"properties": {
|
|
6736
|
+
"elementId": {
|
|
6737
|
+
"type": "string",
|
|
6738
|
+
"description": "ID of the element to look for"
|
|
6739
|
+
},
|
|
6740
|
+
"text": {
|
|
6741
|
+
"type": "string",
|
|
6742
|
+
"description": "Text to look for"
|
|
6743
|
+
}
|
|
6744
|
+
},
|
|
6745
|
+
"oneOf": [
|
|
6497
6746
|
{
|
|
6498
|
-
"type": "object",
|
|
6499
|
-
"properties": {
|
|
6500
|
-
"elementId": {
|
|
6501
|
-
"type": "string",
|
|
6502
|
-
"description": "ID of the element to look for"
|
|
6503
|
-
}
|
|
6504
|
-
},
|
|
6505
6747
|
"required": [
|
|
6506
6748
|
"elementId"
|
|
6507
|
-
]
|
|
6508
|
-
"additionalProperties": false
|
|
6749
|
+
]
|
|
6509
6750
|
},
|
|
6510
6751
|
{
|
|
6511
|
-
"type": "object",
|
|
6512
|
-
"properties": {
|
|
6513
|
-
"text": {
|
|
6514
|
-
"type": "string",
|
|
6515
|
-
"description": "Text to look for"
|
|
6516
|
-
}
|
|
6517
|
-
},
|
|
6518
6752
|
"required": [
|
|
6519
6753
|
"text"
|
|
6520
|
-
]
|
|
6521
|
-
"additionalProperties": false
|
|
6754
|
+
]
|
|
6522
6755
|
}
|
|
6523
|
-
]
|
|
6756
|
+
],
|
|
6757
|
+
"description": "Element to look for during swipe"
|
|
6524
6758
|
},
|
|
6525
6759
|
"boomerang": {
|
|
6526
6760
|
"description": "Return to start position after swipe apex",
|
|
@@ -6564,9 +6798,6 @@
|
|
|
6564
6798
|
"device": {
|
|
6565
6799
|
"description": "Device label",
|
|
6566
6800
|
"type": "string"
|
|
6567
|
-
},
|
|
6568
|
-
"deviceId": {
|
|
6569
|
-
"type": "string"
|
|
6570
6801
|
}
|
|
6571
6802
|
},
|
|
6572
6803
|
"required": [
|
|
@@ -6636,11 +6867,8 @@
|
|
|
6636
6867
|
"keepScreenAwake": {
|
|
6637
6868
|
"type": "boolean"
|
|
6638
6869
|
},
|
|
6639
|
-
"device": {
|
|
6640
|
-
"description": "Device label",
|
|
6641
|
-
"type": "string"
|
|
6642
|
-
},
|
|
6643
|
-
"deviceId": {
|
|
6870
|
+
"device": {
|
|
6871
|
+
"description": "Device label",
|
|
6644
6872
|
"type": "string"
|
|
6645
6873
|
}
|
|
6646
6874
|
},
|
|
@@ -6659,35 +6887,31 @@
|
|
|
6659
6887
|
"type": "object",
|
|
6660
6888
|
"properties": {
|
|
6661
6889
|
"container": {
|
|
6662
|
-
"
|
|
6663
|
-
"
|
|
6890
|
+
"type": "object",
|
|
6891
|
+
"additionalProperties": false,
|
|
6892
|
+
"properties": {
|
|
6893
|
+
"elementId": {
|
|
6894
|
+
"type": "string",
|
|
6895
|
+
"description": "Container resource ID"
|
|
6896
|
+
},
|
|
6897
|
+
"text": {
|
|
6898
|
+
"type": "string",
|
|
6899
|
+
"description": "Container text"
|
|
6900
|
+
}
|
|
6901
|
+
},
|
|
6902
|
+
"oneOf": [
|
|
6664
6903
|
{
|
|
6665
|
-
"type": "object",
|
|
6666
|
-
"properties": {
|
|
6667
|
-
"elementId": {
|
|
6668
|
-
"type": "string",
|
|
6669
|
-
"description": "Container resource ID"
|
|
6670
|
-
}
|
|
6671
|
-
},
|
|
6672
6904
|
"required": [
|
|
6673
6905
|
"elementId"
|
|
6674
|
-
]
|
|
6675
|
-
"additionalProperties": false
|
|
6906
|
+
]
|
|
6676
6907
|
},
|
|
6677
6908
|
{
|
|
6678
|
-
"type": "object",
|
|
6679
|
-
"properties": {
|
|
6680
|
-
"text": {
|
|
6681
|
-
"type": "string",
|
|
6682
|
-
"description": "Container text"
|
|
6683
|
-
}
|
|
6684
|
-
},
|
|
6685
6909
|
"required": [
|
|
6686
6910
|
"text"
|
|
6687
|
-
]
|
|
6688
|
-
"additionalProperties": false
|
|
6911
|
+
]
|
|
6689
6912
|
}
|
|
6690
|
-
]
|
|
6913
|
+
],
|
|
6914
|
+
"description": "Scope search to a container"
|
|
6691
6915
|
},
|
|
6692
6916
|
"selectionStrategy": {
|
|
6693
6917
|
"description": "Element selection strategy: 'first' (default) or 'random'",
|
|
@@ -6745,9 +6969,6 @@
|
|
|
6745
6969
|
"device": {
|
|
6746
6970
|
"description": "Device label",
|
|
6747
6971
|
"type": "string"
|
|
6748
|
-
},
|
|
6749
|
-
"deviceId": {
|
|
6750
|
-
"type": "string"
|
|
6751
6972
|
}
|
|
6752
6973
|
},
|
|
6753
6974
|
"required": [
|
|
@@ -6765,52 +6986,44 @@
|
|
|
6765
6986
|
"type": "object",
|
|
6766
6987
|
"properties": {
|
|
6767
6988
|
"selector": {
|
|
6768
|
-
"
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6989
|
+
"type": "object",
|
|
6990
|
+
"additionalProperties": false,
|
|
6991
|
+
"properties": {
|
|
6992
|
+
"elementId": {
|
|
6993
|
+
"type": "string",
|
|
6994
|
+
"minLength": 1,
|
|
6995
|
+
"description": "Resource ID, e.g. com.app:id/btn_login"
|
|
6996
|
+
},
|
|
6997
|
+
"text": {
|
|
6998
|
+
"type": "string",
|
|
6999
|
+
"minLength": 1,
|
|
7000
|
+
"description": "Text, content-desc, or placeholder"
|
|
7001
|
+
},
|
|
7002
|
+
"textAny": {
|
|
7003
|
+
"minItems": 1,
|
|
7004
|
+
"type": "array",
|
|
7005
|
+
"items": {
|
|
7006
|
+
"type": "string",
|
|
7007
|
+
"minLength": 1
|
|
6777
7008
|
},
|
|
7009
|
+
"description": "Ordered text variants; first visible match wins"
|
|
7010
|
+
}
|
|
7011
|
+
},
|
|
7012
|
+
"oneOf": [
|
|
7013
|
+
{
|
|
6778
7014
|
"required": [
|
|
6779
7015
|
"elementId"
|
|
6780
|
-
]
|
|
6781
|
-
"additionalProperties": false
|
|
7016
|
+
]
|
|
6782
7017
|
},
|
|
6783
7018
|
{
|
|
6784
|
-
"type": "object",
|
|
6785
|
-
"properties": {
|
|
6786
|
-
"text": {
|
|
6787
|
-
"type": "string",
|
|
6788
|
-
"minLength": 1,
|
|
6789
|
-
"description": "Text, content-desc, or placeholder"
|
|
6790
|
-
}
|
|
6791
|
-
},
|
|
6792
7019
|
"required": [
|
|
6793
7020
|
"text"
|
|
6794
|
-
]
|
|
6795
|
-
"additionalProperties": false
|
|
7021
|
+
]
|
|
6796
7022
|
},
|
|
6797
7023
|
{
|
|
6798
|
-
"type": "object",
|
|
6799
|
-
"properties": {
|
|
6800
|
-
"textAny": {
|
|
6801
|
-
"minItems": 1,
|
|
6802
|
-
"type": "array",
|
|
6803
|
-
"items": {
|
|
6804
|
-
"type": "string",
|
|
6805
|
-
"minLength": 1
|
|
6806
|
-
},
|
|
6807
|
-
"description": "Ordered text variants; first visible match wins"
|
|
6808
|
-
}
|
|
6809
|
-
},
|
|
6810
7024
|
"required": [
|
|
6811
7025
|
"textAny"
|
|
6812
|
-
]
|
|
6813
|
-
"additionalProperties": false
|
|
7026
|
+
]
|
|
6814
7027
|
}
|
|
6815
7028
|
],
|
|
6816
7029
|
"description": "Element to tap: elementId, text, or ordered text variants"
|
|
@@ -6820,35 +7033,31 @@
|
|
|
6820
7033
|
"type": "boolean"
|
|
6821
7034
|
},
|
|
6822
7035
|
"container": {
|
|
6823
|
-
"
|
|
6824
|
-
"
|
|
7036
|
+
"type": "object",
|
|
7037
|
+
"additionalProperties": false,
|
|
7038
|
+
"properties": {
|
|
7039
|
+
"elementId": {
|
|
7040
|
+
"type": "string",
|
|
7041
|
+
"description": "Container resource ID"
|
|
7042
|
+
},
|
|
7043
|
+
"text": {
|
|
7044
|
+
"type": "string",
|
|
7045
|
+
"description": "Container text"
|
|
7046
|
+
}
|
|
7047
|
+
},
|
|
7048
|
+
"oneOf": [
|
|
6825
7049
|
{
|
|
6826
|
-
"type": "object",
|
|
6827
|
-
"properties": {
|
|
6828
|
-
"elementId": {
|
|
6829
|
-
"type": "string",
|
|
6830
|
-
"description": "Container resource ID"
|
|
6831
|
-
}
|
|
6832
|
-
},
|
|
6833
7050
|
"required": [
|
|
6834
7051
|
"elementId"
|
|
6835
|
-
]
|
|
6836
|
-
"additionalProperties": false
|
|
7052
|
+
]
|
|
6837
7053
|
},
|
|
6838
7054
|
{
|
|
6839
|
-
"type": "object",
|
|
6840
|
-
"properties": {
|
|
6841
|
-
"text": {
|
|
6842
|
-
"type": "string",
|
|
6843
|
-
"description": "Container text"
|
|
6844
|
-
}
|
|
6845
|
-
},
|
|
6846
7055
|
"required": [
|
|
6847
7056
|
"text"
|
|
6848
|
-
]
|
|
6849
|
-
"additionalProperties": false
|
|
7057
|
+
]
|
|
6850
7058
|
}
|
|
6851
|
-
]
|
|
7059
|
+
],
|
|
7060
|
+
"description": "Scope search to a container"
|
|
6852
7061
|
},
|
|
6853
7062
|
"action": {
|
|
6854
7063
|
"default": "tap",
|
|
@@ -6921,9 +7130,6 @@
|
|
|
6921
7130
|
"device": {
|
|
6922
7131
|
"description": "Device label",
|
|
6923
7132
|
"type": "string"
|
|
6924
|
-
},
|
|
6925
|
-
"deviceId": {
|
|
6926
|
-
"type": "string"
|
|
6927
7133
|
}
|
|
6928
7134
|
},
|
|
6929
7135
|
"required": [
|
|
@@ -8194,6 +8400,231 @@
|
|
|
8194
8400
|
],
|
|
8195
8401
|
"additionalProperties": {}
|
|
8196
8402
|
},
|
|
8403
|
+
"screenReaderNavigation": {
|
|
8404
|
+
"type": "object",
|
|
8405
|
+
"properties": {
|
|
8406
|
+
"reachable": {
|
|
8407
|
+
"type": "boolean",
|
|
8408
|
+
"description": "Whether swipe cursor navigation reached the target"
|
|
8409
|
+
},
|
|
8410
|
+
"traversalOrder": {
|
|
8411
|
+
"type": "array",
|
|
8412
|
+
"items": {
|
|
8413
|
+
"type": "object",
|
|
8414
|
+
"properties": {
|
|
8415
|
+
"bounds": {
|
|
8416
|
+
"type": "object",
|
|
8417
|
+
"properties": {
|
|
8418
|
+
"left": {
|
|
8419
|
+
"type": "number"
|
|
8420
|
+
},
|
|
8421
|
+
"top": {
|
|
8422
|
+
"type": "number"
|
|
8423
|
+
},
|
|
8424
|
+
"right": {
|
|
8425
|
+
"type": "number"
|
|
8426
|
+
},
|
|
8427
|
+
"bottom": {
|
|
8428
|
+
"type": "number"
|
|
8429
|
+
},
|
|
8430
|
+
"centerX": {
|
|
8431
|
+
"type": "number"
|
|
8432
|
+
},
|
|
8433
|
+
"centerY": {
|
|
8434
|
+
"type": "number"
|
|
8435
|
+
}
|
|
8436
|
+
},
|
|
8437
|
+
"required": [
|
|
8438
|
+
"left",
|
|
8439
|
+
"top",
|
|
8440
|
+
"right",
|
|
8441
|
+
"bottom"
|
|
8442
|
+
],
|
|
8443
|
+
"additionalProperties": false,
|
|
8444
|
+
"description": "Element bounds. Default: object {left, top, right, bottom} (+ optional centerX/centerY). Under --observe-result-compact: positional tuple [left, top, right, bottom]."
|
|
8445
|
+
},
|
|
8446
|
+
"text": {
|
|
8447
|
+
"type": "string"
|
|
8448
|
+
},
|
|
8449
|
+
"resource-id": {
|
|
8450
|
+
"type": "string"
|
|
8451
|
+
},
|
|
8452
|
+
"view-id": {
|
|
8453
|
+
"type": "string"
|
|
8454
|
+
},
|
|
8455
|
+
"content-desc": {
|
|
8456
|
+
"type": "string"
|
|
8457
|
+
},
|
|
8458
|
+
"occlusionState": {
|
|
8459
|
+
"type": "string"
|
|
8460
|
+
},
|
|
8461
|
+
"occludedBy": {
|
|
8462
|
+
"type": "string"
|
|
8463
|
+
},
|
|
8464
|
+
"occludedByViewId": {
|
|
8465
|
+
"type": "string"
|
|
8466
|
+
},
|
|
8467
|
+
"class": {
|
|
8468
|
+
"type": "string"
|
|
8469
|
+
},
|
|
8470
|
+
"package": {
|
|
8471
|
+
"type": "string"
|
|
8472
|
+
},
|
|
8473
|
+
"checkable": {
|
|
8474
|
+
"anyOf": [
|
|
8475
|
+
{
|
|
8476
|
+
"type": "boolean"
|
|
8477
|
+
},
|
|
8478
|
+
{
|
|
8479
|
+
"type": "string",
|
|
8480
|
+
"const": "true"
|
|
8481
|
+
},
|
|
8482
|
+
{
|
|
8483
|
+
"type": "string",
|
|
8484
|
+
"const": "false"
|
|
8485
|
+
}
|
|
8486
|
+
]
|
|
8487
|
+
},
|
|
8488
|
+
"checked": {
|
|
8489
|
+
"anyOf": [
|
|
8490
|
+
{
|
|
8491
|
+
"type": "boolean"
|
|
8492
|
+
},
|
|
8493
|
+
{
|
|
8494
|
+
"type": "string",
|
|
8495
|
+
"const": "true"
|
|
8496
|
+
},
|
|
8497
|
+
{
|
|
8498
|
+
"type": "string",
|
|
8499
|
+
"const": "false"
|
|
8500
|
+
}
|
|
8501
|
+
]
|
|
8502
|
+
},
|
|
8503
|
+
"clickable": {
|
|
8504
|
+
"anyOf": [
|
|
8505
|
+
{
|
|
8506
|
+
"type": "boolean"
|
|
8507
|
+
},
|
|
8508
|
+
{
|
|
8509
|
+
"type": "string",
|
|
8510
|
+
"const": "true"
|
|
8511
|
+
},
|
|
8512
|
+
{
|
|
8513
|
+
"type": "string",
|
|
8514
|
+
"const": "false"
|
|
8515
|
+
}
|
|
8516
|
+
]
|
|
8517
|
+
},
|
|
8518
|
+
"enabled": {
|
|
8519
|
+
"anyOf": [
|
|
8520
|
+
{
|
|
8521
|
+
"type": "boolean"
|
|
8522
|
+
},
|
|
8523
|
+
{
|
|
8524
|
+
"type": "string",
|
|
8525
|
+
"const": "true"
|
|
8526
|
+
},
|
|
8527
|
+
{
|
|
8528
|
+
"type": "string",
|
|
8529
|
+
"const": "false"
|
|
8530
|
+
}
|
|
8531
|
+
]
|
|
8532
|
+
},
|
|
8533
|
+
"focusable": {
|
|
8534
|
+
"anyOf": [
|
|
8535
|
+
{
|
|
8536
|
+
"type": "boolean"
|
|
8537
|
+
},
|
|
8538
|
+
{
|
|
8539
|
+
"type": "string",
|
|
8540
|
+
"const": "true"
|
|
8541
|
+
},
|
|
8542
|
+
{
|
|
8543
|
+
"type": "string",
|
|
8544
|
+
"const": "false"
|
|
8545
|
+
}
|
|
8546
|
+
]
|
|
8547
|
+
},
|
|
8548
|
+
"focused": {
|
|
8549
|
+
"anyOf": [
|
|
8550
|
+
{
|
|
8551
|
+
"type": "boolean"
|
|
8552
|
+
},
|
|
8553
|
+
{
|
|
8554
|
+
"type": "string",
|
|
8555
|
+
"const": "true"
|
|
8556
|
+
},
|
|
8557
|
+
{
|
|
8558
|
+
"type": "string",
|
|
8559
|
+
"const": "false"
|
|
8560
|
+
}
|
|
8561
|
+
]
|
|
8562
|
+
},
|
|
8563
|
+
"accessibility-focused": {
|
|
8564
|
+
"anyOf": [
|
|
8565
|
+
{
|
|
8566
|
+
"type": "boolean"
|
|
8567
|
+
},
|
|
8568
|
+
{
|
|
8569
|
+
"type": "string",
|
|
8570
|
+
"const": "true"
|
|
8571
|
+
},
|
|
8572
|
+
{
|
|
8573
|
+
"type": "string",
|
|
8574
|
+
"const": "false"
|
|
8575
|
+
}
|
|
8576
|
+
]
|
|
8577
|
+
},
|
|
8578
|
+
"scrollable": {
|
|
8579
|
+
"anyOf": [
|
|
8580
|
+
{
|
|
8581
|
+
"type": "boolean"
|
|
8582
|
+
},
|
|
8583
|
+
{
|
|
8584
|
+
"type": "string",
|
|
8585
|
+
"const": "true"
|
|
8586
|
+
},
|
|
8587
|
+
{
|
|
8588
|
+
"type": "string",
|
|
8589
|
+
"const": "false"
|
|
8590
|
+
}
|
|
8591
|
+
]
|
|
8592
|
+
},
|
|
8593
|
+
"selected": {
|
|
8594
|
+
"anyOf": [
|
|
8595
|
+
{
|
|
8596
|
+
"type": "boolean"
|
|
8597
|
+
},
|
|
8598
|
+
{
|
|
8599
|
+
"type": "string",
|
|
8600
|
+
"const": "true"
|
|
8601
|
+
},
|
|
8602
|
+
{
|
|
8603
|
+
"type": "string",
|
|
8604
|
+
"const": "false"
|
|
8605
|
+
}
|
|
8606
|
+
]
|
|
8607
|
+
}
|
|
8608
|
+
},
|
|
8609
|
+
"required": [
|
|
8610
|
+
"bounds"
|
|
8611
|
+
],
|
|
8612
|
+
"additionalProperties": {}
|
|
8613
|
+
},
|
|
8614
|
+
"description": "Focused nodes in cursor traversal order"
|
|
8615
|
+
},
|
|
8616
|
+
"focusTrapDetected": {
|
|
8617
|
+
"type": "boolean",
|
|
8618
|
+
"description": "Whether cursor navigation got stuck or failed to converge"
|
|
8619
|
+
}
|
|
8620
|
+
},
|
|
8621
|
+
"required": [
|
|
8622
|
+
"reachable",
|
|
8623
|
+
"traversalOrder",
|
|
8624
|
+
"focusTrapDetected"
|
|
8625
|
+
],
|
|
8626
|
+
"additionalProperties": {}
|
|
8627
|
+
},
|
|
8197
8628
|
"debug": {}
|
|
8198
8629
|
},
|
|
8199
8630
|
"required": [
|
|
@@ -8229,9 +8660,6 @@
|
|
|
8229
8660
|
"device": {
|
|
8230
8661
|
"description": "Device label",
|
|
8231
8662
|
"type": "string"
|
|
8232
|
-
},
|
|
8233
|
-
"deviceId": {
|
|
8234
|
-
"type": "string"
|
|
8235
8663
|
}
|
|
8236
8664
|
},
|
|
8237
8665
|
"required": [
|
|
@@ -8271,9 +8699,6 @@
|
|
|
8271
8699
|
"device": {
|
|
8272
8700
|
"description": "Device label",
|
|
8273
8701
|
"type": "string"
|
|
8274
|
-
},
|
|
8275
|
-
"deviceId": {
|
|
8276
|
-
"type": "string"
|
|
8277
8702
|
}
|
|
8278
8703
|
},
|
|
8279
8704
|
"required": [
|
|
@@ -8366,7 +8791,7 @@
|
|
|
8366
8791
|
"description": "Max duration seconds",
|
|
8367
8792
|
"type": "integer",
|
|
8368
8793
|
"exclusiveMinimum": 0,
|
|
8369
|
-
"maximum":
|
|
8794
|
+
"maximum": 3600
|
|
8370
8795
|
},
|
|
8371
8796
|
"outputName": {
|
|
8372
8797
|
"description": "Recording label",
|