@olib-ai/owl-browser-sdk 2.0.9 → 2.1.1
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 +14 -104
- package/dist/flow/conditions.d.ts +2 -2
- package/dist/flow/conditions.d.ts.map +1 -1
- package/dist/flow/conditions.js +25 -5
- package/dist/flow/conditions.js.map +1 -1
- package/dist/flow/executor.d.ts +44 -2
- package/dist/flow/executor.d.ts.map +1 -1
- package/dist/flow/executor.js +441 -51
- package/dist/flow/executor.js.map +1 -1
- package/dist/flow/expectations.d.ts.map +1 -1
- package/dist/flow/expectations.js +42 -4
- package/dist/flow/expectations.js.map +1 -1
- package/dist/flow/extraction.d.ts +32 -0
- package/dist/flow/extraction.d.ts.map +1 -0
- package/dist/flow/extraction.js +56 -0
- package/dist/flow/extraction.js.map +1 -0
- package/dist/flow/index.d.ts +2 -0
- package/dist/flow/index.d.ts.map +1 -1
- package/dist/flow/index.js +1 -0
- package/dist/flow/index.js.map +1 -1
- package/dist/flow/notifications.d.ts +97 -0
- package/dist/flow/notifications.d.ts.map +1 -0
- package/dist/flow/notifications.js +249 -0
- package/dist/flow/notifications.js.map +1 -0
- package/dist/flow/variables.d.ts +7 -1
- package/dist/flow/variables.d.ts.map +1 -1
- package/dist/flow/variables.js +90 -33
- package/dist/flow/variables.js.map +1 -1
- package/dist/types.d.ts +100 -2
- package/dist/types.d.ts.map +1 -1
- package/openapi.json +69 -52
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Owl Browser API",
|
|
5
5
|
"description": "REST API for browser automation with anti-detection capabilities",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.1.2"
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"/go": {
|
|
29
29
|
"get": {
|
|
30
30
|
"summary": "Browser Go",
|
|
31
|
-
"description": "One-shot browser navigation tool. Creates a new context, navigates to the URL, waits for page load, extracts the HTML, and closes the context. Optimized for single-page scraping or rendering tasks.
|
|
31
|
+
"description": "One-shot browser navigation tool. Creates a new context, navigates to the URL, waits for page load, extracts the HTML, and closes the context. Optimized for single-page scraping or rendering tasks. Callable as POST /execute/browser_go or the GET /go?url=... convenience endpoint (page requests are always GET).",
|
|
32
32
|
"tags": [
|
|
33
33
|
"Navigation"
|
|
34
34
|
],
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"fullscroll"
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
|
-
"description": "When to consider navigation complete: '' (
|
|
59
|
+
"description": "When to consider navigation complete: 'load' (wait for load event, default; '' is treated as 'load'), 'domcontentloaded' (wait for DOMContentLoaded), 'networkidle' (wait for network to be idle), 'fullscroll' (scroll full page to trigger lazy loading, then scroll back to top)"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"name": "timeout",
|
|
@@ -248,9 +248,22 @@
|
|
|
248
248
|
"type": "boolean",
|
|
249
249
|
"description": "Enable or disable resource blocking (ads, trackers, analytics). When enabled, blocks requests to known ad networks, trackers, and analytics services. Default: true (enabled)"
|
|
250
250
|
},
|
|
251
|
-
"
|
|
252
|
-
"type": "
|
|
253
|
-
"description": "
|
|
251
|
+
"chrome_version_id": {
|
|
252
|
+
"type": "string",
|
|
253
|
+
"description": "Pin this context to a specific row in the chrome_versions table (FK by id, 1..N matching INSERT order sorted by major). Use chrome_version_major instead if you'd rather think in terms of '147'. Mutually exclusive with chrome_version_major; chrome_version_id wins when both are set. 0 / unset = random selection across all chrome_version_ids matching the os/gpu/screen filters."
|
|
254
|
+
},
|
|
255
|
+
"chrome_version_major": {
|
|
256
|
+
"type": "string",
|
|
257
|
+
"description": "Pin this context to a specific Chrome major. Resolved to chrome_version_id by looking up the chrome_versions row whose major matches. Options: '143', '144', '145', '146', '147', '148', '149' (current 7-major roster).",
|
|
258
|
+
"enum": [
|
|
259
|
+
"143",
|
|
260
|
+
"144",
|
|
261
|
+
"145",
|
|
262
|
+
"146",
|
|
263
|
+
"147",
|
|
264
|
+
"148",
|
|
265
|
+
"149"
|
|
266
|
+
]
|
|
254
267
|
},
|
|
255
268
|
"proxy_type": {
|
|
256
269
|
"type": "string",
|
|
@@ -280,9 +293,13 @@
|
|
|
280
293
|
"type": "string",
|
|
281
294
|
"description": "Password for proxy authentication. Only required if the proxy server requires credentials"
|
|
282
295
|
},
|
|
283
|
-
"
|
|
296
|
+
"proxy_spoof_timezone": {
|
|
284
297
|
"type": "boolean",
|
|
285
|
-
"description": "
|
|
298
|
+
"description": "Automatically spoof browser timezone to match proxy location (detected via IP geolocation). Default: true when proxy is configured"
|
|
299
|
+
},
|
|
300
|
+
"proxy_timezone_override": {
|
|
301
|
+
"type": "string",
|
|
302
|
+
"description": "Manually set timezone instead of proxy auto-detection. IANA format like 'America/New_York', 'Europe/London'. Takes precedence over proxy_spoof_timezone. The top-level 'timezone' parameter takes precedence over both"
|
|
286
303
|
},
|
|
287
304
|
"proxy_ca_cert_path": {
|
|
288
305
|
"type": "string",
|
|
@@ -327,6 +344,10 @@
|
|
|
327
344
|
"llm_api_key": {
|
|
328
345
|
"type": "string",
|
|
329
346
|
"description": "API key for the external LLM provider. Required when using external LLM endpoint"
|
|
347
|
+
},
|
|
348
|
+
"llm_is_third_party": {
|
|
349
|
+
"type": "boolean",
|
|
350
|
+
"description": "Mark the LLM as a third-party provider (OpenAI-compatible API). Automatically inferred as true when llm_endpoint is set. Default: false"
|
|
330
351
|
}
|
|
331
352
|
}
|
|
332
353
|
}
|
|
@@ -499,7 +520,7 @@
|
|
|
499
520
|
},
|
|
500
521
|
"wait_until": {
|
|
501
522
|
"type": "string",
|
|
502
|
-
"description": "When to consider reload complete: '
|
|
523
|
+
"description": "When to consider reload complete: 'load' (wait for load event, default; '' is treated as 'load'), 'domcontentloaded' (wait for DOMContentLoaded), 'networkidle' (wait for network to be idle), 'fullscroll' (scroll full page to trigger lazy loading, then scroll back to top)",
|
|
503
524
|
"enum": [
|
|
504
525
|
"",
|
|
505
526
|
"load",
|
|
@@ -553,7 +574,7 @@
|
|
|
553
574
|
},
|
|
554
575
|
"wait_until": {
|
|
555
576
|
"type": "string",
|
|
556
|
-
"description": "When to consider navigation complete: '
|
|
577
|
+
"description": "When to consider navigation complete: 'load' (wait for load event, default; '' is treated as 'load'), 'domcontentloaded' (wait for DOMContentLoaded), 'networkidle' (wait for network to be idle), 'fullscroll' (scroll full page to trigger lazy loading, then scroll back to top)",
|
|
557
578
|
"enum": [
|
|
558
579
|
"",
|
|
559
580
|
"load",
|
|
@@ -607,7 +628,7 @@
|
|
|
607
628
|
},
|
|
608
629
|
"wait_until": {
|
|
609
630
|
"type": "string",
|
|
610
|
-
"description": "When to consider navigation complete: '
|
|
631
|
+
"description": "When to consider navigation complete: 'load' (wait for load event, default; '' is treated as 'load'), 'domcontentloaded' (wait for DOMContentLoaded), 'networkidle' (wait for network to be idle), 'fullscroll' (scroll full page to trigger lazy loading, then scroll back to top)",
|
|
611
632
|
"enum": [
|
|
612
633
|
"",
|
|
613
634
|
"load",
|
|
@@ -791,7 +812,11 @@
|
|
|
791
812
|
},
|
|
792
813
|
"index": {
|
|
793
814
|
"type": "string",
|
|
794
|
-
"description": "When multiple elements match the selector, click the Nth element (0-based). Uses querySelectorAll()[index] instead of querySelector().
|
|
815
|
+
"description": "When multiple elements match the selector, click the Nth element (0-based). Uses querySelectorAll()[index] instead of querySelector(). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
816
|
+
},
|
|
817
|
+
"verification_level": {
|
|
818
|
+
"type": "string",
|
|
819
|
+
"description": "How thoroughly to verify the click took effect: 'none', 'basic', 'standard', 'strict'. Default: 'standard'"
|
|
795
820
|
}
|
|
796
821
|
},
|
|
797
822
|
"required": [
|
|
@@ -843,7 +868,11 @@
|
|
|
843
868
|
},
|
|
844
869
|
"index": {
|
|
845
870
|
"type": "string",
|
|
846
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based). Uses querySelectorAll()[index] instead of querySelector().
|
|
871
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Uses querySelectorAll()[index] instead of querySelector(). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
872
|
+
},
|
|
873
|
+
"verification_level": {
|
|
874
|
+
"type": "string",
|
|
875
|
+
"description": "How thoroughly to verify the typed text took effect: 'none', 'basic', 'standard', 'strict'. Default: 'standard'"
|
|
847
876
|
}
|
|
848
877
|
},
|
|
849
878
|
"required": [
|
|
@@ -892,6 +921,10 @@
|
|
|
892
921
|
"value": {
|
|
893
922
|
"type": "string",
|
|
894
923
|
"description": "The option to select. Can be the option's value attribute OR the visible display text. Works with both native select elements and dynamic dropdowns (select2, etc.)"
|
|
924
|
+
},
|
|
925
|
+
"verification_level": {
|
|
926
|
+
"type": "string",
|
|
927
|
+
"description": "How thoroughly to verify the selection took effect: 'none', 'basic', 'standard', 'strict'. Default: 'standard'"
|
|
895
928
|
}
|
|
896
929
|
},
|
|
897
930
|
"required": [
|
|
@@ -1202,7 +1235,7 @@
|
|
|
1202
1235
|
},
|
|
1203
1236
|
"index": {
|
|
1204
1237
|
"type": "string",
|
|
1205
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based).
|
|
1238
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1206
1239
|
}
|
|
1207
1240
|
},
|
|
1208
1241
|
"required": [
|
|
@@ -1250,7 +1283,7 @@
|
|
|
1250
1283
|
},
|
|
1251
1284
|
"index": {
|
|
1252
1285
|
"type": "string",
|
|
1253
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based).
|
|
1286
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1254
1287
|
}
|
|
1255
1288
|
},
|
|
1256
1289
|
"required": [
|
|
@@ -1298,7 +1331,7 @@
|
|
|
1298
1331
|
},
|
|
1299
1332
|
"index": {
|
|
1300
1333
|
"type": "string",
|
|
1301
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based).
|
|
1334
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1302
1335
|
}
|
|
1303
1336
|
},
|
|
1304
1337
|
"required": [
|
|
@@ -1346,7 +1379,7 @@
|
|
|
1346
1379
|
},
|
|
1347
1380
|
"index": {
|
|
1348
1381
|
"type": "string",
|
|
1349
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based).
|
|
1382
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1350
1383
|
}
|
|
1351
1384
|
},
|
|
1352
1385
|
"required": [
|
|
@@ -1394,7 +1427,7 @@
|
|
|
1394
1427
|
},
|
|
1395
1428
|
"index": {
|
|
1396
1429
|
"type": "string",
|
|
1397
|
-
"description": "When multiple elements match the selector, target the Nth element (0-based).
|
|
1430
|
+
"description": "When multiple elements match the selector, target the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1398
1431
|
}
|
|
1399
1432
|
},
|
|
1400
1433
|
"required": [
|
|
@@ -1623,7 +1656,7 @@
|
|
|
1623
1656
|
},
|
|
1624
1657
|
"index": {
|
|
1625
1658
|
"type": "string",
|
|
1626
|
-
"description": "When multiple elements match the selector, check the Nth element (0-based).
|
|
1659
|
+
"description": "When multiple elements match the selector, check the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1627
1660
|
}
|
|
1628
1661
|
},
|
|
1629
1662
|
"required": [
|
|
@@ -1671,7 +1704,7 @@
|
|
|
1671
1704
|
},
|
|
1672
1705
|
"index": {
|
|
1673
1706
|
"type": "string",
|
|
1674
|
-
"description": "When multiple elements match the selector, check the Nth element (0-based).
|
|
1707
|
+
"description": "When multiple elements match the selector, check the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1675
1708
|
}
|
|
1676
1709
|
},
|
|
1677
1710
|
"required": [
|
|
@@ -1719,7 +1752,7 @@
|
|
|
1719
1752
|
},
|
|
1720
1753
|
"index": {
|
|
1721
1754
|
"type": "string",
|
|
1722
|
-
"description": "When multiple elements match the selector, check the Nth element (0-based).
|
|
1755
|
+
"description": "When multiple elements match the selector, check the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1723
1756
|
}
|
|
1724
1757
|
},
|
|
1725
1758
|
"required": [
|
|
@@ -1767,7 +1800,7 @@
|
|
|
1767
1800
|
},
|
|
1768
1801
|
"index": {
|
|
1769
1802
|
"type": "string",
|
|
1770
|
-
"description": "When multiple elements match the selector, check the Nth element (0-based).
|
|
1803
|
+
"description": "When multiple elements match the selector, check the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1771
1804
|
}
|
|
1772
1805
|
},
|
|
1773
1806
|
"required": [
|
|
@@ -1891,7 +1924,7 @@
|
|
|
1891
1924
|
"/api/execute/browser_get_attribute": {
|
|
1892
1925
|
"post": {
|
|
1893
1926
|
"summary": "Browser Get Attribute",
|
|
1894
|
-
"description": "Get the value of an HTML attribute from an element. Can retrieve any attribute including 'href', 'src', 'value', 'data-*' attributes, 'class', 'id', etc. Returns
|
|
1927
|
+
"description": "Get the value of an HTML attribute from an element. Can retrieve any attribute including 'href', 'src', 'value', 'data-*' attributes, 'class', 'id', etc. Returns an empty string if the attribute doesn't exist or the element is not found.",
|
|
1895
1928
|
"tags": [
|
|
1896
1929
|
"General"
|
|
1897
1930
|
],
|
|
@@ -1916,7 +1949,7 @@
|
|
|
1916
1949
|
},
|
|
1917
1950
|
"index": {
|
|
1918
1951
|
"type": "string",
|
|
1919
|
-
"description": "When multiple elements match the selector, get attribute from the Nth element (0-based).
|
|
1952
|
+
"description": "When multiple elements match the selector, get attribute from the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1920
1953
|
}
|
|
1921
1954
|
},
|
|
1922
1955
|
"required": [
|
|
@@ -1965,7 +1998,7 @@
|
|
|
1965
1998
|
},
|
|
1966
1999
|
"index": {
|
|
1967
2000
|
"type": "string",
|
|
1968
|
-
"description": "When multiple elements match the selector, get bounding box of the Nth element (0-based).
|
|
2001
|
+
"description": "When multiple elements match the selector, get bounding box of the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
1969
2002
|
}
|
|
1970
2003
|
},
|
|
1971
2004
|
"required": [
|
|
@@ -2427,7 +2460,7 @@
|
|
|
2427
2460
|
},
|
|
2428
2461
|
"index": {
|
|
2429
2462
|
"type": "string",
|
|
2430
|
-
"description": "When multiple elements match the selector, highlight the Nth element (0-based).
|
|
2463
|
+
"description": "When multiple elements match the selector, highlight the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
2431
2464
|
}
|
|
2432
2465
|
},
|
|
2433
2466
|
"required": [
|
|
@@ -3335,7 +3368,7 @@
|
|
|
3335
3368
|
},
|
|
3336
3369
|
"max_results": {
|
|
3337
3370
|
"type": "string",
|
|
3338
|
-
"description": "Maximum number of results to return (default:
|
|
3371
|
+
"description": "Maximum number of results to return (default: 5)"
|
|
3339
3372
|
}
|
|
3340
3373
|
},
|
|
3341
3374
|
"required": [
|
|
@@ -3435,7 +3468,7 @@
|
|
|
3435
3468
|
},
|
|
3436
3469
|
"index": {
|
|
3437
3470
|
"type": "string",
|
|
3438
|
-
"description": "When multiple elements match the selector, scroll to the Nth element (0-based).
|
|
3471
|
+
"description": "When multiple elements match the selector, scroll to the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
3439
3472
|
}
|
|
3440
3473
|
},
|
|
3441
3474
|
"required": [
|
|
@@ -3565,7 +3598,7 @@
|
|
|
3565
3598
|
},
|
|
3566
3599
|
"index": {
|
|
3567
3600
|
"type": "string",
|
|
3568
|
-
"description": "When multiple elements match the selector, wait for the Nth element (0-based).
|
|
3601
|
+
"description": "When multiple elements match the selector, wait for the Nth element (0-based). Omit for the first match (querySelector). Use -1 to target the LAST matching element"
|
|
3569
3602
|
}
|
|
3570
3603
|
},
|
|
3571
3604
|
"required": [
|
|
@@ -3843,11 +3876,11 @@
|
|
|
3843
3876
|
},
|
|
3844
3877
|
"width": {
|
|
3845
3878
|
"type": "string",
|
|
3846
|
-
"description": "Viewport width in pixels. Common sizes: 1920 (desktop), 1366 (laptop), 768 (tablet), 375 (mobile)"
|
|
3879
|
+
"description": "Viewport width in pixels. Common sizes: 1920 (desktop), 1366 (laptop), 768 (tablet), 375 (mobile). Minimum 100 (values below are clamped). On Linux/Docker each dimension is capped at 2048 and total area at 4,000,000 px (requests above are scaled down proportionally)"
|
|
3847
3880
|
},
|
|
3848
3881
|
"height": {
|
|
3849
3882
|
"type": "string",
|
|
3850
|
-
"description": "Viewport height in pixels. Common sizes: 1080 (desktop), 768 (laptop), 1024 (tablet), 812 (mobile)"
|
|
3883
|
+
"description": "Viewport height in pixels. Common sizes: 1080 (desktop), 768 (laptop), 1024 (tablet), 812 (mobile). Minimum 100 (values below are clamped). On Linux/Docker each dimension is capped at 2048 and total area at 4,000,000 px (requests above are scaled down proportionally)"
|
|
3851
3884
|
}
|
|
3852
3885
|
},
|
|
3853
3886
|
"required": [
|
|
@@ -4142,7 +4175,7 @@
|
|
|
4142
4175
|
},
|
|
4143
4176
|
"codec": {
|
|
4144
4177
|
"type": "string",
|
|
4145
|
-
"description": "Video codec for encoding. Default: 'libx264' (H.264, widely compatible).
|
|
4178
|
+
"description": "Video codec for encoding. Default: 'libx264' (H.264, widely compatible). Accepted values: 'libx264', 'libx265', 'h264', 'hevc', 'vp8', 'vp9', 'libvpx', 'libvpx-vp9', 'mpeg4', 'copy'. Any other value is rejected and recording fails to start. The codec must also be supported by the system FFmpeg"
|
|
4146
4179
|
}
|
|
4147
4180
|
},
|
|
4148
4181
|
"required": [
|
|
@@ -5170,29 +5203,13 @@
|
|
|
5170
5203
|
"type": "string",
|
|
5171
5204
|
"description": "Password for proxy authentication. Only required if the proxy server requires credentials"
|
|
5172
5205
|
},
|
|
5173
|
-
"stealth": {
|
|
5174
|
-
"type": "boolean",
|
|
5175
|
-
"description": "Enable stealth mode to prevent proxy/VPN detection. Blocks WebRTC leaks, DNS leaks, and other fingerprinting vectors. Default: true"
|
|
5176
|
-
},
|
|
5177
|
-
"block_webrtc": {
|
|
5178
|
-
"type": "boolean",
|
|
5179
|
-
"description": "Block WebRTC to prevent real IP address leaking through STUN/TURN requests. Essential for privacy. Default: true (enabled when stealth mode is on)"
|
|
5180
|
-
},
|
|
5181
5206
|
"spoof_timezone": {
|
|
5182
5207
|
"type": "boolean",
|
|
5183
|
-
"description": "Automatically spoof browser timezone to match proxy location (detected via IP geolocation). Default:
|
|
5184
|
-
},
|
|
5185
|
-
"spoof_language": {
|
|
5186
|
-
"type": "boolean",
|
|
5187
|
-
"description": "Automatically spoof browser language preferences to match proxy location. Default: false"
|
|
5208
|
+
"description": "Automatically spoof browser timezone to match proxy location (detected via IP geolocation). Applied to the live context immediately. Default: true"
|
|
5188
5209
|
},
|
|
5189
5210
|
"timezone_override": {
|
|
5190
5211
|
"type": "string",
|
|
5191
|
-
"description": "Manually set timezone instead of auto-detection. IANA format like 'America/New_York', 'Europe/London'. Takes precedence over spoof_timezone"
|
|
5192
|
-
},
|
|
5193
|
-
"language_override": {
|
|
5194
|
-
"type": "string",
|
|
5195
|
-
"description": "Manually set browser language instead of auto-detection. BCP47 format like 'en-US', 'de-DE'. Takes precedence over spoof_language"
|
|
5212
|
+
"description": "Manually set timezone instead of auto-detection. IANA format like 'America/New_York', 'Europe/London'. Takes precedence over spoof_timezone. Applied to the live context immediately"
|
|
5196
5213
|
},
|
|
5197
5214
|
"ca_cert_path": {
|
|
5198
5215
|
"type": "string",
|
|
@@ -5419,7 +5436,7 @@
|
|
|
5419
5436
|
"properties": {
|
|
5420
5437
|
"context_id": {
|
|
5421
5438
|
"type": "string",
|
|
5422
|
-
"description": "Optional browser context ID. If provided,
|
|
5439
|
+
"description": "Optional browser context ID. If provided, the returned profile snapshots this context's live state (fingerprint, cookies, LLM/proxy config) — use browser_save_profile to persist it to disk. If omitted, creates a standalone profile with a freshly generated random fingerprint."
|
|
5423
5440
|
},
|
|
5424
5441
|
"name": {
|
|
5425
5442
|
"type": "string",
|
|
@@ -6219,7 +6236,7 @@
|
|
|
6219
6236
|
"/api/execute/browser_wait_for_download": {
|
|
6220
6237
|
"post": {
|
|
6221
6238
|
"summary": "Browser Wait For Download",
|
|
6222
|
-
"description": "Block until a specific download completes or times out. Returns
|
|
6239
|
+
"description": "Block until a specific download completes or times out. Returns true on completion; call browser_get_downloads afterwards for the file path and final status. Use after triggering a download to ensure it finishes before proceeding.",
|
|
6223
6240
|
"tags": [
|
|
6224
6241
|
"General"
|
|
6225
6242
|
],
|
package/package.json
CHANGED