-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
616 lines (569 loc) · 15.1 KB
/
Copy pathopenapi.yaml
File metadata and controls
616 lines (569 loc) · 15.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
openapi: 3.1.0
info:
title: ATL - iOS Browser & Native App Automation API
description: |
iOS Safari and native app automation via HTTP.
## Modes
ATL operates in two modes:
- **Browser mode** (default): Safari WebView automation. Pattern: goto → markAll → clickMark
- **Native mode**: Native iOS app automation. Pattern: openApp → snapshot → tapRef/find
Switch modes with `openApp` (→ native) and `openBrowser` (→ browser).
## Quick Start
```bash
./bin/atl-sim start
curl http://localhost:9222/ping
```
## Security Warning
This API runs an **unauthenticated HTTP server** for local development only.
- Server binds to 127.0.0.1 (localhost) and rejects external connections
- Never expose port 9222 to the network or internet
- Treat this like a browser debug port - it has full control over the WebView
version: 1.0.0
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: http://localhost:9222
description: Local iOS Simulator (localhost only)
paths:
/ping:
get:
summary: Health check
operationId: ping
responses:
'200':
description: Server is running
content:
application/json:
schema:
type: object
properties:
status:
type: string
enum: [ok]
example:
status: ok
/command:
post:
summary: Execute browser command
operationId: executeCommand
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Command'
responses:
'200':
description: Command executed
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
components:
schemas:
Command:
type: object
required: [id, method]
properties:
id:
type: string
description: Unique request identifier
method:
type: string
enum:
# Navigation
- goto
- reload
- goBack
- goForward
- getURL
- getTitle
# Set-of-Mark (main feature)
- markAll
- markElements
- clickMark
- getMarkInfo
- unmarkElements
# Touch Gestures
- tap
- longPress
- swipe
- pinch
# Interaction
- click
- doubleClick
- fill
- type
- press
- hover
- scrollIntoView
# Capture
- screenshot
- captureForVision
- captureLight
- captureJPEG
# Query
- querySelector
- querySelectorAll
- evaluate
- getDOMSnapshot
# Waiting
- waitForSelector
- waitForReady
- waitForNavigation
- waitForAny
# Cookies
- getCookies
- setCookies
- deleteCookies
# Native App Mode
- openApp
- closeApp
- appState
- snapshot
- tapRef
- fillRef
- find
- openBrowser
params:
type: object
description: Method-specific parameters
Response:
type: object
properties:
id:
type: string
success:
type: boolean
result:
type: object
error:
type: string
# Navigation
GotoParams:
type: object
required: [url]
properties:
url:
type: string
format: uri
example: https://amazon.com
# Interaction
ClickParams:
type: object
required: [selector]
properties:
selector:
type: string
description: CSS selector
example: "#add-to-cart"
FillParams:
type: object
required: [selector, value]
properties:
selector:
type: string
example: "input[name=q]"
value:
type: string
example: "airpods pro"
TypeParams:
type: object
required: [text]
properties:
text:
type: string
PressParams:
type: object
required: [key]
properties:
key:
type: string
enum: [Enter, Tab, Escape, Backspace, ArrowUp, ArrowDown, ArrowLeft, ArrowRight]
# Touch Gestures
TapParams:
type: object
required: [x, y]
properties:
x:
type: number
description: X coordinate in viewport
y:
type: number
description: Y coordinate in viewport
LongPressParams:
type: object
required: [x, y]
properties:
x:
type: number
y:
type: number
duration:
type: number
default: 0.5
description: Duration in seconds
SwipeParams:
type: object
properties:
direction:
type: string
enum: [up, down, left, right]
description: Swipe direction (use this OR from/to coordinates)
distance:
type: number
default: 300
description: Swipe distance in pixels
fromX:
type: number
fromY:
type: number
toX:
type: number
toY:
type: number
duration:
type: number
default: 0.3
PinchParams:
type: object
properties:
scale:
type: number
default: 1.5
description: Scale factor (>1 zoom in, <1 zoom out)
duration:
type: number
default: 0.3
GetMarkInfoParams:
type: object
required: [label]
properties:
label:
type: integer
description: Mark label number from markAll/markElements
GetMarkInfoResult:
type: object
properties:
label:
type: integer
text:
type: string
tagName:
type: string
href:
type: string
x:
type: number
y:
type: number
width:
type: number
height:
type: number
# Waiting
WaitForReadyParams:
type: object
properties:
timeout:
type: number
default: 10
stabilityMs:
type: integer
default: 500
selector:
type: string
description: Optional selector that must exist
EvaluateParams:
type: object
required: [script]
properties:
script:
type: string
description: JavaScript to execute in page context
# Capture
ScreenshotParams:
type: object
properties:
fullPage:
type: boolean
default: false
description: |
- false: PNG of viewport
- true: PDF of entire scrollable page (vector text, searchable)
ScreenshotResult:
type: object
properties:
data:
type: string
format: byte
description: Base64-encoded PNG or PDF
mimeType:
type: string
enum: [image/png, application/pdf]
LightCaptureResult:
type: object
description: Structured page data (~99% smaller than PDF)
properties:
title:
type: string
url:
type: string
format: uri
timestamp:
type: string
format: date-time
text:
type: string
description: All visible text content
interactives:
type: array
items:
$ref: '#/components/schemas/InteractiveElement'
InteractiveElement:
type: object
properties:
tag:
type: string
example: A
id:
type: string
text:
type: string
href:
type: string
ariaLabel:
type: string
# Query
QuerySelectorParams:
type: object
required: [selector]
properties:
selector:
type: string
Element:
type: object
properties:
tag:
type: string
id:
type: string
className:
type: string
text:
type: string
href:
type: string
value:
type: string
rect:
type: object
properties:
x:
type: number
y:
type: number
width:
type: number
height:
type: number
# Native App Mode Commands
OpenAppParams:
type: object
required: [bundleId]
properties:
bundleId:
type: string
description: |
iOS app bundle identifier to open. Switches to native mode.
Common bundle IDs:
- com.apple.Preferences (Settings)
- com.apple.MobileAddressBook (Contacts)
- com.apple.calculator (Calculator)
- com.apple.mobilecal (Calendar)
- com.apple.mobilenotes (Notes)
example: com.apple.Preferences
OpenAppResult:
type: object
properties:
bundleId:
type: string
mode:
type: string
enum: [native]
CloseAppParams:
type: object
properties:
bundleId:
type: string
description: |
Bundle ID of app to close. If omitted, closes the current app.
After closing, remains in native mode with no active app.
AppStateResult:
type: object
description: Returns current automation mode and active app (if any)
properties:
mode:
type: string
enum: [browser, native]
description: Current automation mode
bundleId:
type: string
nullable: true
description: Bundle ID of active native app, or null if in browser mode
SnapshotParams:
type: object
description: |
Capture accessibility tree of the current native app.
**Native mode only** - returns error in browser mode.
properties:
interactiveOnly:
type: boolean
default: false
description: If true, only return hittable/interactive elements
maxDepth:
type: integer
description: Maximum depth to traverse in element hierarchy
SnapshotResult:
type: object
properties:
count:
type: integer
description: Number of elements returned
elements:
type: array
items:
$ref: '#/components/schemas/NativeElement'
NativeElement:
type: object
description: Accessibility element from native app
properties:
ref:
type: string
description: Reference ID for tapRef/fillRef (e.g., "e0", "e1")
example: e5
type:
type: string
description: XCUIElement type (button, staticText, textField, etc.)
example: button
label:
type: string
description: Accessibility label
example: Wi-Fi
value:
type: string
nullable: true
description: Current value (for text fields, switches, etc.)
identifier:
type: string
description: Accessibility identifier
x:
type: number
y:
type: number
width:
type: number
height:
type: number
isHittable:
type: boolean
description: Whether element can receive taps
isEnabled:
type: boolean
TapRefParams:
type: object
required: [ref]
description: |
Tap an element by its ref from the last snapshot.
**Native mode only** - returns error in browser mode.
properties:
ref:
type: string
description: Element reference from snapshot (e.g., "e0", "e5")
example: e5
FillRefParams:
type: object
required: [ref, text]
description: |
Tap a text field by ref, then type text into it.
**Native mode only** - returns error in browser mode.
properties:
ref:
type: string
description: Element reference from snapshot
example: e12
text:
type: string
description: Text to type into the field
example: John Doe
FindParams:
type: object
required: [text]
description: |
Find an element by text/attribute and optionally perform an action.
**Native mode only** - returns error in browser mode.
properties:
text:
type: string
description: Text to search for
example: Wi-Fi
by:
type: string
enum: [any, label, value, identifier, type]
default: any
description: Which attribute to search
action:
type: string
enum: [tap, fill, exists, get]
default: get
description: |
Action to perform on found element:
- tap: Tap the element
- fill: Tap and type (requires `value` param)
- exists: Check if element exists (returns found: true/false)
- get: Return element info without interaction
value:
type: string
description: Text to type (required when action is "fill")
FindResult:
type: object
properties:
found:
type: boolean
ref:
type: string
nullable: true
description: Ref of found element (if found)
element:
$ref: '#/components/schemas/NativeElement'
nullable: true
OpenBrowserResult:
type: object
description: |
Switch back to browser mode. Closes any active native app.
properties:
mode:
type: string
enum: [browser]
tags:
- name: Navigation
description: Page navigation commands
- name: Marks
description: Set-of-Mark labeling system - the core feature
- name: Touch Gestures
description: Tap, swipe, pinch at coordinates (works in both modes)
- name: Interaction
description: Click, type, fill forms
- name: Capture
description: Screenshots, PDFs, structured data (screenshot works in both modes)
- name: Query
description: Find elements, execute JavaScript
- name: Waiting
description: Wait for selectors, navigation, page ready
- name: Native Apps
description: |
Native iOS app automation. Switch to native mode with `openApp`, back to browser with `openBrowser`.
**Native mode commands:** openApp, closeApp, appState, snapshot, tapRef, fillRef, find, openBrowser
**Commands that work in both modes:** tap, swipe, pinch, screenshot
**Browser-only commands will error in native mode:** goto, markAll, clickMark, evaluate, etc.