doc-detective-common 3.0.4-dev.2 → 3.0.5
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/.github/workflows/npm-test.yml +55 -5
- package/package.json +2 -2
- package/src/schemas/dereferenceSchemas.js +39 -20
- package/src/schemas/output_schemas/checkLink_v3.schema.json +4 -0
- package/src/schemas/output_schemas/click_v3.schema.json +2 -2
- package/src/schemas/output_schemas/config_v3.schema.json +603 -241
- package/src/schemas/output_schemas/context_v3.schema.json +18 -9
- package/src/schemas/output_schemas/find_v3.schema.json +24 -8
- package/src/schemas/output_schemas/goTo_v3.schema.json +6 -2
- package/src/schemas/output_schemas/httpRequest_v3.schema.json +64 -22
- package/src/schemas/output_schemas/openApi_v3.schema.json +4 -2
- package/src/schemas/output_schemas/record_v3.schema.json +9 -3
- package/src/schemas/output_schemas/report_v3.schema.json +618 -248
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +1222 -490
- package/src/schemas/output_schemas/runCode_v3.schema.json +4 -2
- package/src/schemas/output_schemas/runShell_v3.schema.json +8 -2
- package/src/schemas/output_schemas/screenshot_v3.schema.json +28 -9
- package/src/schemas/output_schemas/spec_v3.schema.json +618 -248
- package/src/schemas/output_schemas/step_v3.schema.json +275 -107
- package/src/schemas/output_schemas/test_v3.schema.json +594 -236
- package/src/schemas/output_schemas/type_v3.schema.json +6 -0
- package/src/schemas/output_schemas/wait_v3.schema.json +6 -2
- package/src/schemas/schemas.json +4474 -1994
- package/src/schemas/src_schemas/checkLink_v3.schema.json +25 -7
- package/src/schemas/src_schemas/click_v3.schema.json +13 -5
- package/src/schemas/src_schemas/config_v3.schema.json +67 -23
- package/src/schemas/src_schemas/context_v3.schema.json +46 -13
- package/src/schemas/src_schemas/find_v3.schema.json +17 -6
- package/src/schemas/src_schemas/goTo_v3.schema.json +17 -7
- package/src/schemas/src_schemas/httpRequest_v3.schema.json +71 -20
- package/src/schemas/src_schemas/loadVariables_v3.schema.json +4 -2
- package/src/schemas/src_schemas/openApi_v3.schema.json +26 -8
- package/src/schemas/src_schemas/record_v3.schema.json +20 -7
- package/src/schemas/src_schemas/report_v3.schema.json +9 -3
- package/src/schemas/src_schemas/resolvedTests_v3.schema.json +78 -25
- package/src/schemas/src_schemas/runCode_v3.schema.json +29 -9
- package/src/schemas/src_schemas/runShell_v3.schema.json +40 -14
- package/src/schemas/src_schemas/screenshot_v3.schema.json +45 -14
- package/src/schemas/src_schemas/spec_v3.schema.json +26 -8
- package/src/schemas/src_schemas/step_v3.schema.json +99 -37
- package/src/schemas/src_schemas/stopRecord_v3.schema.json +13 -12
- package/src/schemas/src_schemas/test_v3.schema.json +43 -11
- package/src/schemas/src_schemas/type_v3.schema.json +2 -0
- package/src/schemas/src_schemas/wait_v3.schema.json +34 -26
- package/.github/workflows/npm-publish.yml +0 -62
|
@@ -216,7 +216,8 @@
|
|
|
216
216
|
"type": "integer",
|
|
217
217
|
"description": "Height of the browser window in pixels."
|
|
218
218
|
}
|
|
219
|
-
}
|
|
219
|
+
},
|
|
220
|
+
"title": "Browser Window"
|
|
220
221
|
},
|
|
221
222
|
"viewport": {
|
|
222
223
|
"type": "object",
|
|
@@ -231,9 +232,11 @@
|
|
|
231
232
|
"type": "integer",
|
|
232
233
|
"description": "Height of the viewport in pixels."
|
|
233
234
|
}
|
|
234
|
-
}
|
|
235
|
+
},
|
|
236
|
+
"title": "Browser Viewport"
|
|
235
237
|
}
|
|
236
|
-
}
|
|
238
|
+
},
|
|
239
|
+
"title": "Browser"
|
|
237
240
|
},
|
|
238
241
|
{
|
|
239
242
|
"type": "array",
|
|
@@ -287,7 +290,8 @@
|
|
|
287
290
|
"type": "integer",
|
|
288
291
|
"description": "Height of the browser window in pixels."
|
|
289
292
|
}
|
|
290
|
-
}
|
|
293
|
+
},
|
|
294
|
+
"title": "Browser Window"
|
|
291
295
|
},
|
|
292
296
|
"viewport": {
|
|
293
297
|
"type": "object",
|
|
@@ -302,9 +306,11 @@
|
|
|
302
306
|
"type": "integer",
|
|
303
307
|
"description": "Height of the viewport in pixels."
|
|
304
308
|
}
|
|
305
|
-
}
|
|
309
|
+
},
|
|
310
|
+
"title": "Browser Viewport"
|
|
306
311
|
}
|
|
307
|
-
}
|
|
312
|
+
},
|
|
313
|
+
"title": "Browser"
|
|
308
314
|
}
|
|
309
315
|
]
|
|
310
316
|
}
|
|
@@ -370,7 +376,8 @@
|
|
|
370
376
|
"type": "integer",
|
|
371
377
|
"description": "Height of the browser window in pixels."
|
|
372
378
|
}
|
|
373
|
-
}
|
|
379
|
+
},
|
|
380
|
+
"title": "Browser Window"
|
|
374
381
|
},
|
|
375
382
|
"viewport": {
|
|
376
383
|
"type": "object",
|
|
@@ -385,9 +392,11 @@
|
|
|
385
392
|
"type": "integer",
|
|
386
393
|
"description": "Height of the viewport in pixels."
|
|
387
394
|
}
|
|
388
|
-
}
|
|
395
|
+
},
|
|
396
|
+
"title": "Browser Viewport"
|
|
389
397
|
}
|
|
390
|
-
}
|
|
398
|
+
},
|
|
399
|
+
"title": "Browser"
|
|
391
400
|
}
|
|
392
401
|
}
|
|
393
402
|
},
|
|
@@ -503,7 +512,7 @@
|
|
|
503
512
|
"anyOf": [
|
|
504
513
|
{
|
|
505
514
|
"$comment": "Simple mode: Reference predefined templates by name.",
|
|
506
|
-
"title": "
|
|
515
|
+
"title": "File type (predefined)",
|
|
507
516
|
"type": "string",
|
|
508
517
|
"enum": [
|
|
509
518
|
"markdown",
|
|
@@ -513,7 +522,7 @@
|
|
|
513
522
|
},
|
|
514
523
|
{
|
|
515
524
|
"$comment": "Custom mode: Extend predefined templates or write whole new ones.",
|
|
516
|
-
"title": "
|
|
525
|
+
"title": "File type (custom)",
|
|
517
526
|
"type": "object",
|
|
518
527
|
"required": [
|
|
519
528
|
"extensions"
|
|
@@ -651,7 +660,8 @@
|
|
|
651
660
|
}
|
|
652
661
|
]
|
|
653
662
|
}
|
|
654
|
-
}
|
|
663
|
+
},
|
|
664
|
+
"title": "Inline statement definition"
|
|
655
665
|
},
|
|
656
666
|
"markup": {
|
|
657
667
|
"description": "Markup definitions for the file type.",
|
|
@@ -761,7 +771,8 @@
|
|
|
761
771
|
"type": "string",
|
|
762
772
|
"description": "Runtime expression for a user-defined output value."
|
|
763
773
|
}
|
|
764
|
-
}
|
|
774
|
+
},
|
|
775
|
+
"title": "Outputs (step)"
|
|
765
776
|
},
|
|
766
777
|
"variables": {
|
|
767
778
|
"type": "object",
|
|
@@ -772,9 +783,11 @@
|
|
|
772
783
|
"type": "string",
|
|
773
784
|
"description": "Runtime expression for a user-defined output value."
|
|
774
785
|
}
|
|
775
|
-
}
|
|
786
|
+
},
|
|
787
|
+
"title": "Variables (step)"
|
|
776
788
|
}
|
|
777
|
-
}
|
|
789
|
+
},
|
|
790
|
+
"title": "Common"
|
|
778
791
|
},
|
|
779
792
|
"stepId": {
|
|
780
793
|
"type": "string",
|
|
@@ -793,7 +806,8 @@
|
|
|
793
806
|
"type": "string",
|
|
794
807
|
"description": "Runtime expression for a user-defined output value."
|
|
795
808
|
}
|
|
796
|
-
}
|
|
809
|
+
},
|
|
810
|
+
"title": "Outputs (step)"
|
|
797
811
|
},
|
|
798
812
|
"variables": {
|
|
799
813
|
"type": "object",
|
|
@@ -804,7 +818,8 @@
|
|
|
804
818
|
"type": "string",
|
|
805
819
|
"description": "Runtime expression for a user-defined output value."
|
|
806
820
|
}
|
|
807
|
-
}
|
|
821
|
+
},
|
|
822
|
+
"title": "Variables (step)"
|
|
808
823
|
}
|
|
809
824
|
}
|
|
810
825
|
},
|
|
@@ -834,7 +849,8 @@
|
|
|
834
849
|
"type": "string",
|
|
835
850
|
"description": "Runtime expression for a user-defined output value."
|
|
836
851
|
}
|
|
837
|
-
}
|
|
852
|
+
},
|
|
853
|
+
"title": "Outputs (step)"
|
|
838
854
|
},
|
|
839
855
|
"variables": {
|
|
840
856
|
"type": "object",
|
|
@@ -845,9 +861,11 @@
|
|
|
845
861
|
"type": "string",
|
|
846
862
|
"description": "Runtime expression for a user-defined output value."
|
|
847
863
|
}
|
|
848
|
-
}
|
|
864
|
+
},
|
|
865
|
+
"title": "Variables (step)"
|
|
849
866
|
}
|
|
850
|
-
}
|
|
867
|
+
},
|
|
868
|
+
"title": "Common"
|
|
851
869
|
},
|
|
852
870
|
{
|
|
853
871
|
"type": "object",
|
|
@@ -860,6 +878,7 @@
|
|
|
860
878
|
"title": "checkLink",
|
|
861
879
|
"anyOf": [
|
|
862
880
|
{
|
|
881
|
+
"title": "Check link (detailed)",
|
|
863
882
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
864
883
|
"type": "string",
|
|
865
884
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -868,6 +887,7 @@
|
|
|
868
887
|
]
|
|
869
888
|
},
|
|
870
889
|
{
|
|
890
|
+
"title": "Check link (detailed)",
|
|
871
891
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
872
892
|
"type": "object",
|
|
873
893
|
"additionalProperties": false,
|
|
@@ -921,6 +941,7 @@
|
|
|
921
941
|
"components": {
|
|
922
942
|
"schemas": {
|
|
923
943
|
"string": {
|
|
944
|
+
"title": "Check link (detailed)",
|
|
924
945
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
925
946
|
"type": "string",
|
|
926
947
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -929,6 +950,7 @@
|
|
|
929
950
|
]
|
|
930
951
|
},
|
|
931
952
|
"object": {
|
|
953
|
+
"title": "Check link (detailed)",
|
|
932
954
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
933
955
|
"type": "object",
|
|
934
956
|
"additionalProperties": false,
|
|
@@ -996,7 +1018,8 @@
|
|
|
996
1018
|
}
|
|
997
1019
|
]
|
|
998
1020
|
}
|
|
999
|
-
}
|
|
1021
|
+
},
|
|
1022
|
+
"title": "checkLink"
|
|
1000
1023
|
}
|
|
1001
1024
|
]
|
|
1002
1025
|
},
|
|
@@ -1025,7 +1048,8 @@
|
|
|
1025
1048
|
"type": "string",
|
|
1026
1049
|
"description": "Runtime expression for a user-defined output value."
|
|
1027
1050
|
}
|
|
1028
|
-
}
|
|
1051
|
+
},
|
|
1052
|
+
"title": "Outputs (step)"
|
|
1029
1053
|
},
|
|
1030
1054
|
"variables": {
|
|
1031
1055
|
"type": "object",
|
|
@@ -1036,9 +1060,11 @@
|
|
|
1036
1060
|
"type": "string",
|
|
1037
1061
|
"description": "Runtime expression for a user-defined output value."
|
|
1038
1062
|
}
|
|
1039
|
-
}
|
|
1063
|
+
},
|
|
1064
|
+
"title": "Variables (step)"
|
|
1040
1065
|
}
|
|
1041
|
-
}
|
|
1066
|
+
},
|
|
1067
|
+
"title": "Common"
|
|
1042
1068
|
},
|
|
1043
1069
|
{
|
|
1044
1070
|
"type": "object",
|
|
@@ -1052,7 +1078,7 @@
|
|
|
1052
1078
|
"description": "Click or tap an element.",
|
|
1053
1079
|
"anyOf": [
|
|
1054
1080
|
{
|
|
1055
|
-
"title": "
|
|
1081
|
+
"title": "Click element (simple)",
|
|
1056
1082
|
"type": "string",
|
|
1057
1083
|
"description": "Display text or selector of the element to find."
|
|
1058
1084
|
},
|
|
@@ -1098,7 +1124,7 @@
|
|
|
1098
1124
|
"components": {
|
|
1099
1125
|
"schemas": {
|
|
1100
1126
|
"string": {
|
|
1101
|
-
"title": "
|
|
1127
|
+
"title": "Click element (simple)",
|
|
1102
1128
|
"type": "string",
|
|
1103
1129
|
"description": "Display text or selector of the element to find."
|
|
1104
1130
|
},
|
|
@@ -1162,7 +1188,8 @@
|
|
|
1162
1188
|
}
|
|
1163
1189
|
]
|
|
1164
1190
|
}
|
|
1165
|
-
}
|
|
1191
|
+
},
|
|
1192
|
+
"title": "click"
|
|
1166
1193
|
}
|
|
1167
1194
|
]
|
|
1168
1195
|
},
|
|
@@ -1191,7 +1218,8 @@
|
|
|
1191
1218
|
"type": "string",
|
|
1192
1219
|
"description": "Runtime expression for a user-defined output value."
|
|
1193
1220
|
}
|
|
1194
|
-
}
|
|
1221
|
+
},
|
|
1222
|
+
"title": "Outputs (step)"
|
|
1195
1223
|
},
|
|
1196
1224
|
"variables": {
|
|
1197
1225
|
"type": "object",
|
|
@@ -1202,9 +1230,11 @@
|
|
|
1202
1230
|
"type": "string",
|
|
1203
1231
|
"description": "Runtime expression for a user-defined output value."
|
|
1204
1232
|
}
|
|
1205
|
-
}
|
|
1233
|
+
},
|
|
1234
|
+
"title": "Variables (step)"
|
|
1206
1235
|
}
|
|
1207
|
-
}
|
|
1236
|
+
},
|
|
1237
|
+
"title": "Common"
|
|
1208
1238
|
},
|
|
1209
1239
|
{
|
|
1210
1240
|
"type": "object",
|
|
@@ -1266,7 +1296,7 @@
|
|
|
1266
1296
|
"description": "Click or tap an element.",
|
|
1267
1297
|
"anyOf": [
|
|
1268
1298
|
{
|
|
1269
|
-
"title": "
|
|
1299
|
+
"title": "Click element (simple)",
|
|
1270
1300
|
"type": "string",
|
|
1271
1301
|
"description": "Display text or selector of the element to find."
|
|
1272
1302
|
},
|
|
@@ -1312,7 +1342,7 @@
|
|
|
1312
1342
|
"components": {
|
|
1313
1343
|
"schemas": {
|
|
1314
1344
|
"string": {
|
|
1315
|
-
"title": "
|
|
1345
|
+
"title": "Click element (simple)",
|
|
1316
1346
|
"type": "string",
|
|
1317
1347
|
"description": "Display text or selector of the element to find."
|
|
1318
1348
|
},
|
|
@@ -1388,7 +1418,8 @@
|
|
|
1388
1418
|
"middle"
|
|
1389
1419
|
]
|
|
1390
1420
|
}
|
|
1391
|
-
}
|
|
1421
|
+
},
|
|
1422
|
+
"title": "Find element and click"
|
|
1392
1423
|
}
|
|
1393
1424
|
]
|
|
1394
1425
|
},
|
|
@@ -1401,6 +1432,7 @@
|
|
|
1401
1432
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
1402
1433
|
"anyOf": [
|
|
1403
1434
|
{
|
|
1435
|
+
"title": "Type keys (simple)",
|
|
1404
1436
|
"description": "Sequence of keys to enter.",
|
|
1405
1437
|
"anyOf": [
|
|
1406
1438
|
{
|
|
@@ -1419,9 +1451,11 @@
|
|
|
1419
1451
|
]
|
|
1420
1452
|
},
|
|
1421
1453
|
{
|
|
1454
|
+
"title": "Type keys (detailed)",
|
|
1422
1455
|
"type": "object",
|
|
1423
1456
|
"properties": {
|
|
1424
1457
|
"keys": {
|
|
1458
|
+
"title": "Type keys (simple)",
|
|
1425
1459
|
"description": "Sequence of keys to enter.",
|
|
1426
1460
|
"anyOf": [
|
|
1427
1461
|
{
|
|
@@ -1458,6 +1492,7 @@
|
|
|
1458
1492
|
"components": {
|
|
1459
1493
|
"schemas": {
|
|
1460
1494
|
"keys": {
|
|
1495
|
+
"title": "Type keys (simple)",
|
|
1461
1496
|
"description": "Sequence of keys to enter.",
|
|
1462
1497
|
"anyOf": [
|
|
1463
1498
|
{
|
|
@@ -1476,9 +1511,11 @@
|
|
|
1476
1511
|
]
|
|
1477
1512
|
},
|
|
1478
1513
|
"object": {
|
|
1514
|
+
"title": "Type keys (detailed)",
|
|
1479
1515
|
"type": "object",
|
|
1480
1516
|
"properties": {
|
|
1481
1517
|
"keys": {
|
|
1518
|
+
"title": "Type keys (simple)",
|
|
1482
1519
|
"description": "Sequence of keys to enter.",
|
|
1483
1520
|
"anyOf": [
|
|
1484
1521
|
{
|
|
@@ -1545,7 +1582,8 @@
|
|
|
1545
1582
|
"required": [
|
|
1546
1583
|
"selector",
|
|
1547
1584
|
"elementText"
|
|
1548
|
-
]
|
|
1585
|
+
],
|
|
1586
|
+
"title": "Find element and type"
|
|
1549
1587
|
}
|
|
1550
1588
|
}
|
|
1551
1589
|
]
|
|
@@ -1604,7 +1642,7 @@
|
|
|
1604
1642
|
"description": "Click or tap an element.",
|
|
1605
1643
|
"anyOf": [
|
|
1606
1644
|
{
|
|
1607
|
-
"title": "
|
|
1645
|
+
"title": "Click element (simple)",
|
|
1608
1646
|
"type": "string",
|
|
1609
1647
|
"description": "Display text or selector of the element to find."
|
|
1610
1648
|
},
|
|
@@ -1650,7 +1688,7 @@
|
|
|
1650
1688
|
"components": {
|
|
1651
1689
|
"schemas": {
|
|
1652
1690
|
"string": {
|
|
1653
|
-
"title": "
|
|
1691
|
+
"title": "Click element (simple)",
|
|
1654
1692
|
"type": "string",
|
|
1655
1693
|
"description": "Display text or selector of the element to find."
|
|
1656
1694
|
},
|
|
@@ -1726,7 +1764,8 @@
|
|
|
1726
1764
|
"middle"
|
|
1727
1765
|
]
|
|
1728
1766
|
}
|
|
1729
|
-
}
|
|
1767
|
+
},
|
|
1768
|
+
"title": "Find element and click"
|
|
1730
1769
|
}
|
|
1731
1770
|
]
|
|
1732
1771
|
},
|
|
@@ -1739,6 +1778,7 @@
|
|
|
1739
1778
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
1740
1779
|
"anyOf": [
|
|
1741
1780
|
{
|
|
1781
|
+
"title": "Type keys (simple)",
|
|
1742
1782
|
"description": "Sequence of keys to enter.",
|
|
1743
1783
|
"anyOf": [
|
|
1744
1784
|
{
|
|
@@ -1757,9 +1797,11 @@
|
|
|
1757
1797
|
]
|
|
1758
1798
|
},
|
|
1759
1799
|
{
|
|
1800
|
+
"title": "Type keys (detailed)",
|
|
1760
1801
|
"type": "object",
|
|
1761
1802
|
"properties": {
|
|
1762
1803
|
"keys": {
|
|
1804
|
+
"title": "Type keys (simple)",
|
|
1763
1805
|
"description": "Sequence of keys to enter.",
|
|
1764
1806
|
"anyOf": [
|
|
1765
1807
|
{
|
|
@@ -1796,6 +1838,7 @@
|
|
|
1796
1838
|
"components": {
|
|
1797
1839
|
"schemas": {
|
|
1798
1840
|
"keys": {
|
|
1841
|
+
"title": "Type keys (simple)",
|
|
1799
1842
|
"description": "Sequence of keys to enter.",
|
|
1800
1843
|
"anyOf": [
|
|
1801
1844
|
{
|
|
@@ -1814,9 +1857,11 @@
|
|
|
1814
1857
|
]
|
|
1815
1858
|
},
|
|
1816
1859
|
"object": {
|
|
1860
|
+
"title": "Type keys (detailed)",
|
|
1817
1861
|
"type": "object",
|
|
1818
1862
|
"properties": {
|
|
1819
1863
|
"keys": {
|
|
1864
|
+
"title": "Type keys (simple)",
|
|
1820
1865
|
"description": "Sequence of keys to enter.",
|
|
1821
1866
|
"anyOf": [
|
|
1822
1867
|
{
|
|
@@ -1883,7 +1928,8 @@
|
|
|
1883
1928
|
"required": [
|
|
1884
1929
|
"selector",
|
|
1885
1930
|
"elementText"
|
|
1886
|
-
]
|
|
1931
|
+
],
|
|
1932
|
+
"title": "Find element and type"
|
|
1887
1933
|
}
|
|
1888
1934
|
}
|
|
1889
1935
|
]
|
|
@@ -1926,7 +1972,8 @@
|
|
|
1926
1972
|
}
|
|
1927
1973
|
]
|
|
1928
1974
|
}
|
|
1929
|
-
}
|
|
1975
|
+
},
|
|
1976
|
+
"title": "find"
|
|
1930
1977
|
}
|
|
1931
1978
|
]
|
|
1932
1979
|
},
|
|
@@ -1955,7 +2002,8 @@
|
|
|
1955
2002
|
"type": "string",
|
|
1956
2003
|
"description": "Runtime expression for a user-defined output value."
|
|
1957
2004
|
}
|
|
1958
|
-
}
|
|
2005
|
+
},
|
|
2006
|
+
"title": "Outputs (step)"
|
|
1959
2007
|
},
|
|
1960
2008
|
"variables": {
|
|
1961
2009
|
"type": "object",
|
|
@@ -1966,9 +2014,11 @@
|
|
|
1966
2014
|
"type": "string",
|
|
1967
2015
|
"description": "Runtime expression for a user-defined output value."
|
|
1968
2016
|
}
|
|
1969
|
-
}
|
|
2017
|
+
},
|
|
2018
|
+
"title": "Variables (step)"
|
|
1970
2019
|
}
|
|
1971
|
-
}
|
|
2020
|
+
},
|
|
2021
|
+
"title": "Common"
|
|
1972
2022
|
},
|
|
1973
2023
|
{
|
|
1974
2024
|
"type": "object",
|
|
@@ -1981,6 +2031,7 @@
|
|
|
1981
2031
|
"title": "goTo",
|
|
1982
2032
|
"anyOf": [
|
|
1983
2033
|
{
|
|
2034
|
+
"title": "Go to URL (simple)",
|
|
1984
2035
|
"description": "Navigate to an HTTP or HTTPS URL. Can be a full URL or a path. If a path is provided, navigates relative to the current URL, if any.",
|
|
1985
2036
|
"type": "string",
|
|
1986
2037
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2011,12 +2062,14 @@
|
|
|
2011
2062
|
"trim"
|
|
2012
2063
|
]
|
|
2013
2064
|
}
|
|
2014
|
-
}
|
|
2065
|
+
},
|
|
2066
|
+
"title": "Go to URL (detailed)"
|
|
2015
2067
|
}
|
|
2016
2068
|
],
|
|
2017
2069
|
"components": {
|
|
2018
2070
|
"schemas": {
|
|
2019
2071
|
"string": {
|
|
2072
|
+
"title": "Go to URL (simple)",
|
|
2020
2073
|
"description": "Navigate to an HTTP or HTTPS URL. Can be a full URL or a path. If a path is provided, navigates relative to the current URL, if any.",
|
|
2021
2074
|
"type": "string",
|
|
2022
2075
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2047,7 +2100,8 @@
|
|
|
2047
2100
|
"trim"
|
|
2048
2101
|
]
|
|
2049
2102
|
}
|
|
2050
|
-
}
|
|
2103
|
+
},
|
|
2104
|
+
"title": "Go to URL (detailed)"
|
|
2051
2105
|
}
|
|
2052
2106
|
}
|
|
2053
2107
|
},
|
|
@@ -2063,7 +2117,8 @@
|
|
|
2063
2117
|
}
|
|
2064
2118
|
]
|
|
2065
2119
|
}
|
|
2066
|
-
}
|
|
2120
|
+
},
|
|
2121
|
+
"title": "goTo"
|
|
2067
2122
|
}
|
|
2068
2123
|
]
|
|
2069
2124
|
},
|
|
@@ -2092,7 +2147,8 @@
|
|
|
2092
2147
|
"type": "string",
|
|
2093
2148
|
"description": "Runtime expression for a user-defined output value."
|
|
2094
2149
|
}
|
|
2095
|
-
}
|
|
2150
|
+
},
|
|
2151
|
+
"title": "Outputs (step)"
|
|
2096
2152
|
},
|
|
2097
2153
|
"variables": {
|
|
2098
2154
|
"type": "object",
|
|
@@ -2103,9 +2159,11 @@
|
|
|
2103
2159
|
"type": "string",
|
|
2104
2160
|
"description": "Runtime expression for a user-defined output value."
|
|
2105
2161
|
}
|
|
2106
|
-
}
|
|
2162
|
+
},
|
|
2163
|
+
"title": "Variables (step)"
|
|
2107
2164
|
}
|
|
2108
|
-
}
|
|
2165
|
+
},
|
|
2166
|
+
"title": "Common"
|
|
2109
2167
|
},
|
|
2110
2168
|
{
|
|
2111
2169
|
"type": "object",
|
|
@@ -2119,7 +2177,7 @@
|
|
|
2119
2177
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
2120
2178
|
"anyOf": [
|
|
2121
2179
|
{
|
|
2122
|
-
"title": "
|
|
2180
|
+
"title": "HTTP request (simple)",
|
|
2123
2181
|
"type": "string",
|
|
2124
2182
|
"description": "URL for the HTTP request.",
|
|
2125
2183
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2128,6 +2186,7 @@
|
|
|
2128
2186
|
]
|
|
2129
2187
|
},
|
|
2130
2188
|
{
|
|
2189
|
+
"title": "HTTP request (detailed)",
|
|
2131
2190
|
"type": "object",
|
|
2132
2191
|
"anyOf": [
|
|
2133
2192
|
{
|
|
@@ -2144,7 +2203,7 @@
|
|
|
2144
2203
|
"additionalProperties": false,
|
|
2145
2204
|
"properties": {
|
|
2146
2205
|
"url": {
|
|
2147
|
-
"title": "
|
|
2206
|
+
"title": "HTTP request (simple)",
|
|
2148
2207
|
"type": "string",
|
|
2149
2208
|
"description": "URL for the HTTP request.",
|
|
2150
2209
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2200,7 +2259,8 @@
|
|
|
2200
2259
|
"type": "object",
|
|
2201
2260
|
"readOnly": true,
|
|
2202
2261
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
2203
|
-
"additionalProperties": true
|
|
2262
|
+
"additionalProperties": true,
|
|
2263
|
+
"title": "OpenAPI definition"
|
|
2204
2264
|
},
|
|
2205
2265
|
"operationId": {
|
|
2206
2266
|
"type": "string",
|
|
@@ -2252,7 +2312,8 @@
|
|
|
2252
2312
|
"description": "Request headers to add to requests. For example, to set `Authorization` headers for all requests from the specified OpenAPI document. If specified in both a config and a step, the step value overrides the config value.",
|
|
2253
2313
|
"additionalProperties": {
|
|
2254
2314
|
"type": "string"
|
|
2255
|
-
}
|
|
2315
|
+
},
|
|
2316
|
+
"title": "OpenAPI request headers"
|
|
2256
2317
|
}
|
|
2257
2318
|
},
|
|
2258
2319
|
"components": {
|
|
@@ -2332,7 +2393,8 @@
|
|
|
2332
2393
|
"type": "object",
|
|
2333
2394
|
"required": [
|
|
2334
2395
|
"operationId"
|
|
2335
|
-
]
|
|
2396
|
+
],
|
|
2397
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
2336
2398
|
}
|
|
2337
2399
|
]
|
|
2338
2400
|
}
|
|
@@ -2383,34 +2445,43 @@
|
|
|
2383
2445
|
"type": "object",
|
|
2384
2446
|
"additionalProperties": true,
|
|
2385
2447
|
"properties": {},
|
|
2386
|
-
"default": {}
|
|
2448
|
+
"default": {},
|
|
2449
|
+
"title": "Request headers"
|
|
2387
2450
|
},
|
|
2388
2451
|
"parameters": {
|
|
2389
2452
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
2390
2453
|
"type": "object",
|
|
2391
2454
|
"additionalProperties": true,
|
|
2392
2455
|
"default": {},
|
|
2393
|
-
"properties": {}
|
|
2456
|
+
"properties": {},
|
|
2457
|
+
"title": "Request parameters"
|
|
2394
2458
|
},
|
|
2395
2459
|
"body": {
|
|
2396
2460
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
2397
2461
|
"anyOf": [
|
|
2398
2462
|
{
|
|
2463
|
+
"title": "Request body object",
|
|
2464
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
2399
2465
|
"type": "object",
|
|
2400
2466
|
"additionalProperties": true,
|
|
2401
2467
|
"properties": {}
|
|
2402
2468
|
},
|
|
2403
2469
|
{
|
|
2470
|
+
"title": "Request body array",
|
|
2471
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
2404
2472
|
"type": "array",
|
|
2405
2473
|
"items": {}
|
|
2406
2474
|
},
|
|
2407
2475
|
{
|
|
2476
|
+
"title": "Request body string",
|
|
2477
|
+
"description": "String to include as the body of the HTTP request.",
|
|
2408
2478
|
"type": "string"
|
|
2409
2479
|
}
|
|
2410
2480
|
],
|
|
2411
2481
|
"default": {}
|
|
2412
2482
|
}
|
|
2413
|
-
}
|
|
2483
|
+
},
|
|
2484
|
+
"title": "Request"
|
|
2414
2485
|
},
|
|
2415
2486
|
"response": {
|
|
2416
2487
|
"type": "object",
|
|
@@ -2421,7 +2492,8 @@
|
|
|
2421
2492
|
"type": "object",
|
|
2422
2493
|
"additionalProperties": true,
|
|
2423
2494
|
"properties": {},
|
|
2424
|
-
"default": {}
|
|
2495
|
+
"default": {},
|
|
2496
|
+
"title": "Response headers"
|
|
2425
2497
|
},
|
|
2426
2498
|
"body": {
|
|
2427
2499
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -2429,19 +2501,26 @@
|
|
|
2429
2501
|
{
|
|
2430
2502
|
"type": "object",
|
|
2431
2503
|
"additionalProperties": true,
|
|
2432
|
-
"properties": {}
|
|
2504
|
+
"properties": {},
|
|
2505
|
+
"title": "Response body object",
|
|
2506
|
+
"description": "JSON key/value pairs expected in the response."
|
|
2433
2507
|
},
|
|
2434
2508
|
{
|
|
2509
|
+
"title": "Response body array",
|
|
2510
|
+
"description": "JSON array expected in the response.",
|
|
2435
2511
|
"type": "array",
|
|
2436
2512
|
"items": {}
|
|
2437
2513
|
},
|
|
2438
2514
|
{
|
|
2515
|
+
"title": "Response body string",
|
|
2516
|
+
"description": "String expected in the response.",
|
|
2439
2517
|
"type": "string"
|
|
2440
2518
|
}
|
|
2441
2519
|
],
|
|
2442
2520
|
"default": {}
|
|
2443
2521
|
}
|
|
2444
|
-
}
|
|
2522
|
+
},
|
|
2523
|
+
"title": "Response"
|
|
2445
2524
|
},
|
|
2446
2525
|
"allowAdditionalFields": {
|
|
2447
2526
|
"type": "boolean",
|
|
@@ -2479,7 +2558,7 @@
|
|
|
2479
2558
|
"components": {
|
|
2480
2559
|
"schemas": {
|
|
2481
2560
|
"url": {
|
|
2482
|
-
"title": "
|
|
2561
|
+
"title": "HTTP request (simple)",
|
|
2483
2562
|
"type": "string",
|
|
2484
2563
|
"description": "URL for the HTTP request.",
|
|
2485
2564
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2488,6 +2567,7 @@
|
|
|
2488
2567
|
]
|
|
2489
2568
|
},
|
|
2490
2569
|
"object": {
|
|
2570
|
+
"title": "HTTP request (detailed)",
|
|
2491
2571
|
"type": "object",
|
|
2492
2572
|
"anyOf": [
|
|
2493
2573
|
{
|
|
@@ -2504,7 +2584,7 @@
|
|
|
2504
2584
|
"additionalProperties": false,
|
|
2505
2585
|
"properties": {
|
|
2506
2586
|
"url": {
|
|
2507
|
-
"title": "
|
|
2587
|
+
"title": "HTTP request (simple)",
|
|
2508
2588
|
"type": "string",
|
|
2509
2589
|
"description": "URL for the HTTP request.",
|
|
2510
2590
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2560,7 +2640,8 @@
|
|
|
2560
2640
|
"type": "object",
|
|
2561
2641
|
"readOnly": true,
|
|
2562
2642
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
2563
|
-
"additionalProperties": true
|
|
2643
|
+
"additionalProperties": true,
|
|
2644
|
+
"title": "OpenAPI definition"
|
|
2564
2645
|
},
|
|
2565
2646
|
"operationId": {
|
|
2566
2647
|
"type": "string",
|
|
@@ -2612,7 +2693,8 @@
|
|
|
2612
2693
|
"description": "Request headers to add to requests. For example, to set `Authorization` headers for all requests from the specified OpenAPI document. If specified in both a config and a step, the step value overrides the config value.",
|
|
2613
2694
|
"additionalProperties": {
|
|
2614
2695
|
"type": "string"
|
|
2615
|
-
}
|
|
2696
|
+
},
|
|
2697
|
+
"title": "OpenAPI request headers"
|
|
2616
2698
|
}
|
|
2617
2699
|
},
|
|
2618
2700
|
"components": {
|
|
@@ -2692,7 +2774,8 @@
|
|
|
2692
2774
|
"type": "object",
|
|
2693
2775
|
"required": [
|
|
2694
2776
|
"operationId"
|
|
2695
|
-
]
|
|
2777
|
+
],
|
|
2778
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
2696
2779
|
}
|
|
2697
2780
|
]
|
|
2698
2781
|
}
|
|
@@ -2743,34 +2826,43 @@
|
|
|
2743
2826
|
"type": "object",
|
|
2744
2827
|
"additionalProperties": true,
|
|
2745
2828
|
"properties": {},
|
|
2746
|
-
"default": {}
|
|
2829
|
+
"default": {},
|
|
2830
|
+
"title": "Request headers"
|
|
2747
2831
|
},
|
|
2748
2832
|
"parameters": {
|
|
2749
2833
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
2750
2834
|
"type": "object",
|
|
2751
2835
|
"additionalProperties": true,
|
|
2752
2836
|
"default": {},
|
|
2753
|
-
"properties": {}
|
|
2837
|
+
"properties": {},
|
|
2838
|
+
"title": "Request parameters"
|
|
2754
2839
|
},
|
|
2755
2840
|
"body": {
|
|
2756
2841
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
2757
2842
|
"anyOf": [
|
|
2758
2843
|
{
|
|
2844
|
+
"title": "Request body object",
|
|
2845
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
2759
2846
|
"type": "object",
|
|
2760
2847
|
"additionalProperties": true,
|
|
2761
2848
|
"properties": {}
|
|
2762
2849
|
},
|
|
2763
2850
|
{
|
|
2851
|
+
"title": "Request body array",
|
|
2852
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
2764
2853
|
"type": "array",
|
|
2765
2854
|
"items": {}
|
|
2766
2855
|
},
|
|
2767
2856
|
{
|
|
2857
|
+
"title": "Request body string",
|
|
2858
|
+
"description": "String to include as the body of the HTTP request.",
|
|
2768
2859
|
"type": "string"
|
|
2769
2860
|
}
|
|
2770
2861
|
],
|
|
2771
2862
|
"default": {}
|
|
2772
2863
|
}
|
|
2773
|
-
}
|
|
2864
|
+
},
|
|
2865
|
+
"title": "Request"
|
|
2774
2866
|
},
|
|
2775
2867
|
"response": {
|
|
2776
2868
|
"type": "object",
|
|
@@ -2781,7 +2873,8 @@
|
|
|
2781
2873
|
"type": "object",
|
|
2782
2874
|
"additionalProperties": true,
|
|
2783
2875
|
"properties": {},
|
|
2784
|
-
"default": {}
|
|
2876
|
+
"default": {},
|
|
2877
|
+
"title": "Response headers"
|
|
2785
2878
|
},
|
|
2786
2879
|
"body": {
|
|
2787
2880
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -2789,19 +2882,26 @@
|
|
|
2789
2882
|
{
|
|
2790
2883
|
"type": "object",
|
|
2791
2884
|
"additionalProperties": true,
|
|
2792
|
-
"properties": {}
|
|
2885
|
+
"properties": {},
|
|
2886
|
+
"title": "Response body object",
|
|
2887
|
+
"description": "JSON key/value pairs expected in the response."
|
|
2793
2888
|
},
|
|
2794
2889
|
{
|
|
2890
|
+
"title": "Response body array",
|
|
2891
|
+
"description": "JSON array expected in the response.",
|
|
2795
2892
|
"type": "array",
|
|
2796
2893
|
"items": {}
|
|
2797
2894
|
},
|
|
2798
2895
|
{
|
|
2896
|
+
"title": "Response body string",
|
|
2897
|
+
"description": "String expected in the response.",
|
|
2799
2898
|
"type": "string"
|
|
2800
2899
|
}
|
|
2801
2900
|
],
|
|
2802
2901
|
"default": {}
|
|
2803
2902
|
}
|
|
2804
|
-
}
|
|
2903
|
+
},
|
|
2904
|
+
"title": "Response"
|
|
2805
2905
|
},
|
|
2806
2906
|
"allowAdditionalFields": {
|
|
2807
2907
|
"type": "boolean",
|
|
@@ -2976,7 +3076,8 @@
|
|
|
2976
3076
|
}
|
|
2977
3077
|
]
|
|
2978
3078
|
}
|
|
2979
|
-
}
|
|
3079
|
+
},
|
|
3080
|
+
"title": "httpRequest"
|
|
2980
3081
|
}
|
|
2981
3082
|
]
|
|
2982
3083
|
},
|
|
@@ -3005,7 +3106,8 @@
|
|
|
3005
3106
|
"type": "string",
|
|
3006
3107
|
"description": "Runtime expression for a user-defined output value."
|
|
3007
3108
|
}
|
|
3008
|
-
}
|
|
3109
|
+
},
|
|
3110
|
+
"title": "Outputs (step)"
|
|
3009
3111
|
},
|
|
3010
3112
|
"variables": {
|
|
3011
3113
|
"type": "object",
|
|
@@ -3016,9 +3118,11 @@
|
|
|
3016
3118
|
"type": "string",
|
|
3017
3119
|
"description": "Runtime expression for a user-defined output value."
|
|
3018
3120
|
}
|
|
3019
|
-
}
|
|
3121
|
+
},
|
|
3122
|
+
"title": "Variables (step)"
|
|
3020
3123
|
}
|
|
3021
|
-
}
|
|
3124
|
+
},
|
|
3125
|
+
"title": "Common"
|
|
3022
3126
|
},
|
|
3023
3127
|
{
|
|
3024
3128
|
"type": "object",
|
|
@@ -3032,6 +3136,8 @@
|
|
|
3032
3136
|
"description": "Perform a native shell command.",
|
|
3033
3137
|
"anyOf": [
|
|
3034
3138
|
{
|
|
3139
|
+
"title": "Run shell command (simple)",
|
|
3140
|
+
"description": "Command to perform in the machine's default shell.",
|
|
3035
3141
|
"type": "string",
|
|
3036
3142
|
"transform": [
|
|
3037
3143
|
"trim"
|
|
@@ -3113,12 +3219,15 @@
|
|
|
3113
3219
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3114
3220
|
"default": 60000
|
|
3115
3221
|
}
|
|
3116
|
-
}
|
|
3222
|
+
},
|
|
3223
|
+
"title": "Run shell command (detailed)"
|
|
3117
3224
|
}
|
|
3118
3225
|
],
|
|
3119
3226
|
"components": {
|
|
3120
3227
|
"schemas": {
|
|
3121
3228
|
"string": {
|
|
3229
|
+
"title": "Run shell command (simple)",
|
|
3230
|
+
"description": "Command to perform in the machine's default shell.",
|
|
3122
3231
|
"type": "string",
|
|
3123
3232
|
"transform": [
|
|
3124
3233
|
"trim"
|
|
@@ -3200,7 +3309,8 @@
|
|
|
3200
3309
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3201
3310
|
"default": 60000
|
|
3202
3311
|
}
|
|
3203
|
-
}
|
|
3312
|
+
},
|
|
3313
|
+
"title": "Run shell command (detailed)"
|
|
3204
3314
|
}
|
|
3205
3315
|
}
|
|
3206
3316
|
},
|
|
@@ -3256,7 +3366,8 @@
|
|
|
3256
3366
|
}
|
|
3257
3367
|
]
|
|
3258
3368
|
}
|
|
3259
|
-
}
|
|
3369
|
+
},
|
|
3370
|
+
"title": "runShell"
|
|
3260
3371
|
}
|
|
3261
3372
|
]
|
|
3262
3373
|
},
|
|
@@ -3285,7 +3396,8 @@
|
|
|
3285
3396
|
"type": "string",
|
|
3286
3397
|
"description": "Runtime expression for a user-defined output value."
|
|
3287
3398
|
}
|
|
3288
|
-
}
|
|
3399
|
+
},
|
|
3400
|
+
"title": "Outputs (step)"
|
|
3289
3401
|
},
|
|
3290
3402
|
"variables": {
|
|
3291
3403
|
"type": "object",
|
|
@@ -3296,9 +3408,11 @@
|
|
|
3296
3408
|
"type": "string",
|
|
3297
3409
|
"description": "Runtime expression for a user-defined output value."
|
|
3298
3410
|
}
|
|
3299
|
-
}
|
|
3411
|
+
},
|
|
3412
|
+
"title": "Variables (step)"
|
|
3300
3413
|
}
|
|
3301
|
-
}
|
|
3414
|
+
},
|
|
3415
|
+
"title": "Common"
|
|
3302
3416
|
},
|
|
3303
3417
|
{
|
|
3304
3418
|
"type": "object",
|
|
@@ -3396,7 +3510,8 @@
|
|
|
3396
3510
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3397
3511
|
"default": 60000
|
|
3398
3512
|
}
|
|
3399
|
-
}
|
|
3513
|
+
},
|
|
3514
|
+
"title": "Run code (detailed)"
|
|
3400
3515
|
}
|
|
3401
3516
|
],
|
|
3402
3517
|
"components": {
|
|
@@ -3486,7 +3601,8 @@
|
|
|
3486
3601
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3487
3602
|
"default": 60000
|
|
3488
3603
|
}
|
|
3489
|
-
}
|
|
3604
|
+
},
|
|
3605
|
+
"title": "Run code (detailed)"
|
|
3490
3606
|
}
|
|
3491
3607
|
}
|
|
3492
3608
|
},
|
|
@@ -3526,7 +3642,8 @@
|
|
|
3526
3642
|
}
|
|
3527
3643
|
]
|
|
3528
3644
|
}
|
|
3529
|
-
}
|
|
3645
|
+
},
|
|
3646
|
+
"title": "runCode"
|
|
3530
3647
|
}
|
|
3531
3648
|
]
|
|
3532
3649
|
},
|
|
@@ -3555,7 +3672,8 @@
|
|
|
3555
3672
|
"type": "string",
|
|
3556
3673
|
"description": "Runtime expression for a user-defined output value."
|
|
3557
3674
|
}
|
|
3558
|
-
}
|
|
3675
|
+
},
|
|
3676
|
+
"title": "Outputs (step)"
|
|
3559
3677
|
},
|
|
3560
3678
|
"variables": {
|
|
3561
3679
|
"type": "object",
|
|
@@ -3566,9 +3684,11 @@
|
|
|
3566
3684
|
"type": "string",
|
|
3567
3685
|
"description": "Runtime expression for a user-defined output value."
|
|
3568
3686
|
}
|
|
3569
|
-
}
|
|
3687
|
+
},
|
|
3688
|
+
"title": "Variables (step)"
|
|
3570
3689
|
}
|
|
3571
|
-
}
|
|
3690
|
+
},
|
|
3691
|
+
"title": "Common"
|
|
3572
3692
|
},
|
|
3573
3693
|
{
|
|
3574
3694
|
"type": "object",
|
|
@@ -3582,6 +3702,7 @@
|
|
|
3582
3702
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
3583
3703
|
"anyOf": [
|
|
3584
3704
|
{
|
|
3705
|
+
"title": "Type keys (simple)",
|
|
3585
3706
|
"description": "Sequence of keys to enter.",
|
|
3586
3707
|
"anyOf": [
|
|
3587
3708
|
{
|
|
@@ -3600,9 +3721,11 @@
|
|
|
3600
3721
|
]
|
|
3601
3722
|
},
|
|
3602
3723
|
{
|
|
3724
|
+
"title": "Type keys (detailed)",
|
|
3603
3725
|
"type": "object",
|
|
3604
3726
|
"properties": {
|
|
3605
3727
|
"keys": {
|
|
3728
|
+
"title": "Type keys (simple)",
|
|
3606
3729
|
"description": "Sequence of keys to enter.",
|
|
3607
3730
|
"anyOf": [
|
|
3608
3731
|
{
|
|
@@ -3639,6 +3762,7 @@
|
|
|
3639
3762
|
"components": {
|
|
3640
3763
|
"schemas": {
|
|
3641
3764
|
"keys": {
|
|
3765
|
+
"title": "Type keys (simple)",
|
|
3642
3766
|
"description": "Sequence of keys to enter.",
|
|
3643
3767
|
"anyOf": [
|
|
3644
3768
|
{
|
|
@@ -3657,9 +3781,11 @@
|
|
|
3657
3781
|
]
|
|
3658
3782
|
},
|
|
3659
3783
|
"object": {
|
|
3784
|
+
"title": "Type keys (detailed)",
|
|
3660
3785
|
"type": "object",
|
|
3661
3786
|
"properties": {
|
|
3662
3787
|
"keys": {
|
|
3788
|
+
"title": "Type keys (simple)",
|
|
3663
3789
|
"description": "Sequence of keys to enter.",
|
|
3664
3790
|
"anyOf": [
|
|
3665
3791
|
{
|
|
@@ -3720,7 +3846,8 @@
|
|
|
3720
3846
|
}
|
|
3721
3847
|
]
|
|
3722
3848
|
}
|
|
3723
|
-
}
|
|
3849
|
+
},
|
|
3850
|
+
"title": "type"
|
|
3724
3851
|
}
|
|
3725
3852
|
]
|
|
3726
3853
|
},
|
|
@@ -3749,7 +3876,8 @@
|
|
|
3749
3876
|
"type": "string",
|
|
3750
3877
|
"description": "Runtime expression for a user-defined output value."
|
|
3751
3878
|
}
|
|
3752
|
-
}
|
|
3879
|
+
},
|
|
3880
|
+
"title": "Outputs (step)"
|
|
3753
3881
|
},
|
|
3754
3882
|
"variables": {
|
|
3755
3883
|
"type": "object",
|
|
@@ -3760,9 +3888,11 @@
|
|
|
3760
3888
|
"type": "string",
|
|
3761
3889
|
"description": "Runtime expression for a user-defined output value."
|
|
3762
3890
|
}
|
|
3763
|
-
}
|
|
3891
|
+
},
|
|
3892
|
+
"title": "Variables (step)"
|
|
3764
3893
|
}
|
|
3765
|
-
}
|
|
3894
|
+
},
|
|
3895
|
+
"title": "Common"
|
|
3766
3896
|
},
|
|
3767
3897
|
{
|
|
3768
3898
|
"type": "object",
|
|
@@ -3776,6 +3906,7 @@
|
|
|
3776
3906
|
"description": "Takes a screenshot in PNG format.",
|
|
3777
3907
|
"anyOf": [
|
|
3778
3908
|
{
|
|
3909
|
+
"title": "Screenshot (simple)",
|
|
3779
3910
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3780
3911
|
"type": "string",
|
|
3781
3912
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3788,6 +3919,7 @@
|
|
|
3788
3919
|
"additionalProperties": false,
|
|
3789
3920
|
"properties": {
|
|
3790
3921
|
"path": {
|
|
3922
|
+
"title": "Screenshot (simple)",
|
|
3791
3923
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3792
3924
|
"type": "string",
|
|
3793
3925
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3822,7 +3954,7 @@
|
|
|
3822
3954
|
"crop": {
|
|
3823
3955
|
"anyOf": [
|
|
3824
3956
|
{
|
|
3825
|
-
"title": "Crop by element",
|
|
3957
|
+
"title": "Crop by element (simple)",
|
|
3826
3958
|
"type": "string",
|
|
3827
3959
|
"description": "Display text or selector of the element to screenshot."
|
|
3828
3960
|
},
|
|
@@ -3855,6 +3987,7 @@
|
|
|
3855
3987
|
"padding": {
|
|
3856
3988
|
"anyOf": [
|
|
3857
3989
|
{
|
|
3990
|
+
"title": "Padding (simple)",
|
|
3858
3991
|
"type": "number",
|
|
3859
3992
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
3860
3993
|
"minimum": 0
|
|
@@ -3879,7 +4012,9 @@
|
|
|
3879
4012
|
"type": "number",
|
|
3880
4013
|
"minimum": 0
|
|
3881
4014
|
}
|
|
3882
|
-
}
|
|
4015
|
+
},
|
|
4016
|
+
"title": "Padding (detailed)",
|
|
4017
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
3883
4018
|
}
|
|
3884
4019
|
]
|
|
3885
4020
|
}
|
|
@@ -3887,15 +4022,19 @@
|
|
|
3887
4022
|
}
|
|
3888
4023
|
]
|
|
3889
4024
|
}
|
|
3890
|
-
}
|
|
4025
|
+
},
|
|
4026
|
+
"title": "Capture screenshot (detailed)"
|
|
3891
4027
|
},
|
|
3892
4028
|
{
|
|
3893
|
-
"type": "boolean"
|
|
4029
|
+
"type": "boolean",
|
|
4030
|
+
"title": "Capture screenshot",
|
|
4031
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
3894
4032
|
}
|
|
3895
4033
|
],
|
|
3896
4034
|
"components": {
|
|
3897
4035
|
"schemas": {
|
|
3898
4036
|
"path": {
|
|
4037
|
+
"title": "Screenshot (simple)",
|
|
3899
4038
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3900
4039
|
"type": "string",
|
|
3901
4040
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3908,6 +4047,7 @@
|
|
|
3908
4047
|
"additionalProperties": false,
|
|
3909
4048
|
"properties": {
|
|
3910
4049
|
"path": {
|
|
4050
|
+
"title": "Screenshot (simple)",
|
|
3911
4051
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3912
4052
|
"type": "string",
|
|
3913
4053
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3942,7 +4082,7 @@
|
|
|
3942
4082
|
"crop": {
|
|
3943
4083
|
"anyOf": [
|
|
3944
4084
|
{
|
|
3945
|
-
"title": "Crop by element",
|
|
4085
|
+
"title": "Crop by element (simple)",
|
|
3946
4086
|
"type": "string",
|
|
3947
4087
|
"description": "Display text or selector of the element to screenshot."
|
|
3948
4088
|
},
|
|
@@ -3975,6 +4115,7 @@
|
|
|
3975
4115
|
"padding": {
|
|
3976
4116
|
"anyOf": [
|
|
3977
4117
|
{
|
|
4118
|
+
"title": "Padding (simple)",
|
|
3978
4119
|
"type": "number",
|
|
3979
4120
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
3980
4121
|
"minimum": 0
|
|
@@ -3999,7 +4140,9 @@
|
|
|
3999
4140
|
"type": "number",
|
|
4000
4141
|
"minimum": 0
|
|
4001
4142
|
}
|
|
4002
|
-
}
|
|
4143
|
+
},
|
|
4144
|
+
"title": "Padding (detailed)",
|
|
4145
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4003
4146
|
}
|
|
4004
4147
|
]
|
|
4005
4148
|
}
|
|
@@ -4007,7 +4150,8 @@
|
|
|
4007
4150
|
}
|
|
4008
4151
|
]
|
|
4009
4152
|
}
|
|
4010
|
-
}
|
|
4153
|
+
},
|
|
4154
|
+
"title": "Capture screenshot (detailed)"
|
|
4011
4155
|
},
|
|
4012
4156
|
"crop_element": {
|
|
4013
4157
|
"title": "Crop by element (detailed)",
|
|
@@ -4038,6 +4182,7 @@
|
|
|
4038
4182
|
"padding": {
|
|
4039
4183
|
"anyOf": [
|
|
4040
4184
|
{
|
|
4185
|
+
"title": "Padding (simple)",
|
|
4041
4186
|
"type": "number",
|
|
4042
4187
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
4043
4188
|
"minimum": 0
|
|
@@ -4062,7 +4207,9 @@
|
|
|
4062
4207
|
"type": "number",
|
|
4063
4208
|
"minimum": 0
|
|
4064
4209
|
}
|
|
4065
|
-
}
|
|
4210
|
+
},
|
|
4211
|
+
"title": "Padding (detailed)",
|
|
4212
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4066
4213
|
}
|
|
4067
4214
|
]
|
|
4068
4215
|
}
|
|
@@ -4088,7 +4235,9 @@
|
|
|
4088
4235
|
"type": "number",
|
|
4089
4236
|
"minimum": 0
|
|
4090
4237
|
}
|
|
4091
|
-
}
|
|
4238
|
+
},
|
|
4239
|
+
"title": "Padding (detailed)",
|
|
4240
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4092
4241
|
}
|
|
4093
4242
|
}
|
|
4094
4243
|
},
|
|
@@ -4128,7 +4277,8 @@
|
|
|
4128
4277
|
}
|
|
4129
4278
|
]
|
|
4130
4279
|
}
|
|
4131
|
-
}
|
|
4280
|
+
},
|
|
4281
|
+
"title": "screenshot"
|
|
4132
4282
|
}
|
|
4133
4283
|
]
|
|
4134
4284
|
},
|
|
@@ -4157,7 +4307,8 @@
|
|
|
4157
4307
|
"type": "string",
|
|
4158
4308
|
"description": "Runtime expression for a user-defined output value."
|
|
4159
4309
|
}
|
|
4160
|
-
}
|
|
4310
|
+
},
|
|
4311
|
+
"title": "Outputs (step)"
|
|
4161
4312
|
},
|
|
4162
4313
|
"variables": {
|
|
4163
4314
|
"type": "object",
|
|
@@ -4168,9 +4319,11 @@
|
|
|
4168
4319
|
"type": "string",
|
|
4169
4320
|
"description": "Runtime expression for a user-defined output value."
|
|
4170
4321
|
}
|
|
4171
|
-
}
|
|
4322
|
+
},
|
|
4323
|
+
"title": "Variables (step)"
|
|
4172
4324
|
}
|
|
4173
|
-
}
|
|
4325
|
+
},
|
|
4326
|
+
"title": "Common"
|
|
4174
4327
|
},
|
|
4175
4328
|
{
|
|
4176
4329
|
"type": "object",
|
|
@@ -4184,6 +4337,7 @@
|
|
|
4184
4337
|
"description": "Start recording the current browser viewport. Must be followed by a `stopRecord` step. Only runs in Chrome browsers when they are visible. Supported extensions: [ '.mp4', '.webm', '.gif' ]",
|
|
4185
4338
|
"anyOf": [
|
|
4186
4339
|
{
|
|
4340
|
+
"title": "Record (simple)",
|
|
4187
4341
|
"type": "string",
|
|
4188
4342
|
"description": "File path of the recording. Supports the `.mp4`, `.webm`, and `.gif` extensions. If not specified, the file name is the ID of the step, and the extension is `.mp4`.",
|
|
4189
4343
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4217,15 +4371,19 @@
|
|
|
4217
4371
|
"false"
|
|
4218
4372
|
]
|
|
4219
4373
|
}
|
|
4220
|
-
}
|
|
4374
|
+
},
|
|
4375
|
+
"title": "Record (detailed)"
|
|
4221
4376
|
},
|
|
4222
4377
|
{
|
|
4223
|
-
"type": "boolean"
|
|
4378
|
+
"type": "boolean",
|
|
4379
|
+
"title": "Record (boolean)",
|
|
4380
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
4224
4381
|
}
|
|
4225
4382
|
],
|
|
4226
4383
|
"components": {
|
|
4227
4384
|
"schemas": {
|
|
4228
4385
|
"string": {
|
|
4386
|
+
"title": "Record (simple)",
|
|
4229
4387
|
"type": "string",
|
|
4230
4388
|
"description": "File path of the recording. Supports the `.mp4`, `.webm`, and `.gif` extensions. If not specified, the file name is the ID of the step, and the extension is `.mp4`.",
|
|
4231
4389
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4259,7 +4417,8 @@
|
|
|
4259
4417
|
"false"
|
|
4260
4418
|
]
|
|
4261
4419
|
}
|
|
4262
|
-
}
|
|
4420
|
+
},
|
|
4421
|
+
"title": "Record (detailed)"
|
|
4263
4422
|
}
|
|
4264
4423
|
}
|
|
4265
4424
|
},
|
|
@@ -4273,7 +4432,8 @@
|
|
|
4273
4432
|
}
|
|
4274
4433
|
]
|
|
4275
4434
|
}
|
|
4276
|
-
}
|
|
4435
|
+
},
|
|
4436
|
+
"title": "record"
|
|
4277
4437
|
}
|
|
4278
4438
|
]
|
|
4279
4439
|
},
|
|
@@ -4302,7 +4462,8 @@
|
|
|
4302
4462
|
"type": "string",
|
|
4303
4463
|
"description": "Runtime expression for a user-defined output value."
|
|
4304
4464
|
}
|
|
4305
|
-
}
|
|
4465
|
+
},
|
|
4466
|
+
"title": "Outputs (step)"
|
|
4306
4467
|
},
|
|
4307
4468
|
"variables": {
|
|
4308
4469
|
"type": "object",
|
|
@@ -4313,9 +4474,11 @@
|
|
|
4313
4474
|
"type": "string",
|
|
4314
4475
|
"description": "Runtime expression for a user-defined output value."
|
|
4315
4476
|
}
|
|
4316
|
-
}
|
|
4477
|
+
},
|
|
4478
|
+
"title": "Variables (step)"
|
|
4317
4479
|
}
|
|
4318
|
-
}
|
|
4480
|
+
},
|
|
4481
|
+
"title": "Common"
|
|
4319
4482
|
},
|
|
4320
4483
|
{
|
|
4321
4484
|
"type": "object",
|
|
@@ -4337,7 +4500,8 @@
|
|
|
4337
4500
|
true
|
|
4338
4501
|
]
|
|
4339
4502
|
}
|
|
4340
|
-
}
|
|
4503
|
+
},
|
|
4504
|
+
"title": "stopRecord"
|
|
4341
4505
|
}
|
|
4342
4506
|
]
|
|
4343
4507
|
},
|
|
@@ -4366,7 +4530,8 @@
|
|
|
4366
4530
|
"type": "string",
|
|
4367
4531
|
"description": "Runtime expression for a user-defined output value."
|
|
4368
4532
|
}
|
|
4369
|
-
}
|
|
4533
|
+
},
|
|
4534
|
+
"title": "Outputs (step)"
|
|
4370
4535
|
},
|
|
4371
4536
|
"variables": {
|
|
4372
4537
|
"type": "object",
|
|
@@ -4377,11 +4542,15 @@
|
|
|
4377
4542
|
"type": "string",
|
|
4378
4543
|
"description": "Runtime expression for a user-defined output value."
|
|
4379
4544
|
}
|
|
4380
|
-
}
|
|
4545
|
+
},
|
|
4546
|
+
"title": "Variables (step)"
|
|
4381
4547
|
}
|
|
4382
|
-
}
|
|
4548
|
+
},
|
|
4549
|
+
"title": "Common"
|
|
4383
4550
|
},
|
|
4384
4551
|
{
|
|
4552
|
+
"title": "loadVariables",
|
|
4553
|
+
"type": "object",
|
|
4385
4554
|
"required": [
|
|
4386
4555
|
"loadVariables"
|
|
4387
4556
|
],
|
|
@@ -4424,7 +4593,8 @@
|
|
|
4424
4593
|
"type": "string",
|
|
4425
4594
|
"description": "Runtime expression for a user-defined output value."
|
|
4426
4595
|
}
|
|
4427
|
-
}
|
|
4596
|
+
},
|
|
4597
|
+
"title": "Outputs (step)"
|
|
4428
4598
|
},
|
|
4429
4599
|
"variables": {
|
|
4430
4600
|
"type": "object",
|
|
@@ -4435,11 +4605,15 @@
|
|
|
4435
4605
|
"type": "string",
|
|
4436
4606
|
"description": "Runtime expression for a user-defined output value."
|
|
4437
4607
|
}
|
|
4438
|
-
}
|
|
4608
|
+
},
|
|
4609
|
+
"title": "Variables (step)"
|
|
4439
4610
|
}
|
|
4440
|
-
}
|
|
4611
|
+
},
|
|
4612
|
+
"title": "Common"
|
|
4441
4613
|
},
|
|
4442
4614
|
{
|
|
4615
|
+
"title": "wait",
|
|
4616
|
+
"type": "object",
|
|
4443
4617
|
"required": [
|
|
4444
4618
|
"wait"
|
|
4445
4619
|
],
|
|
@@ -4451,9 +4625,11 @@
|
|
|
4451
4625
|
"default": 5000,
|
|
4452
4626
|
"anyOf": [
|
|
4453
4627
|
{
|
|
4454
|
-
"type": "number"
|
|
4628
|
+
"type": "number",
|
|
4629
|
+
"title": "Wait (simple)"
|
|
4455
4630
|
},
|
|
4456
4631
|
{
|
|
4632
|
+
"title": "Wait (environment variable)",
|
|
4457
4633
|
"type": "string",
|
|
4458
4634
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4459
4635
|
"transform": [
|
|
@@ -4461,12 +4637,14 @@
|
|
|
4461
4637
|
]
|
|
4462
4638
|
},
|
|
4463
4639
|
{
|
|
4464
|
-
"type": "boolean"
|
|
4640
|
+
"type": "boolean",
|
|
4641
|
+
"title": "Wait (boolean)"
|
|
4465
4642
|
}
|
|
4466
4643
|
],
|
|
4467
4644
|
"components": {
|
|
4468
4645
|
"schemas": {
|
|
4469
4646
|
"string": {
|
|
4647
|
+
"title": "Wait (environment variable)",
|
|
4470
4648
|
"type": "string",
|
|
4471
4649
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4472
4650
|
"transform": [
|
|
@@ -4839,13 +5017,14 @@
|
|
|
4839
5017
|
}
|
|
4840
5018
|
]
|
|
4841
5019
|
}
|
|
4842
|
-
}
|
|
5020
|
+
},
|
|
5021
|
+
"title": "Markup definition"
|
|
4843
5022
|
}
|
|
4844
5023
|
}
|
|
4845
5024
|
}
|
|
4846
5025
|
},
|
|
4847
5026
|
{
|
|
4848
|
-
"title": "
|
|
5027
|
+
"title": "File type (executable)",
|
|
4849
5028
|
"$comment": "Executable mode: Convert executable inputs directly into tests.",
|
|
4850
5029
|
"type": "object",
|
|
4851
5030
|
"required": [
|
|
@@ -4880,6 +5059,8 @@
|
|
|
4880
5059
|
"description": "Perform a native shell command.",
|
|
4881
5060
|
"anyOf": [
|
|
4882
5061
|
{
|
|
5062
|
+
"title": "Run shell command (simple)",
|
|
5063
|
+
"description": "Command to perform in the machine's default shell.",
|
|
4883
5064
|
"type": "string",
|
|
4884
5065
|
"transform": [
|
|
4885
5066
|
"trim"
|
|
@@ -4961,12 +5142,15 @@
|
|
|
4961
5142
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
4962
5143
|
"default": 60000
|
|
4963
5144
|
}
|
|
4964
|
-
}
|
|
5145
|
+
},
|
|
5146
|
+
"title": "Run shell command (detailed)"
|
|
4965
5147
|
}
|
|
4966
5148
|
],
|
|
4967
5149
|
"components": {
|
|
4968
5150
|
"schemas": {
|
|
4969
5151
|
"string": {
|
|
5152
|
+
"title": "Run shell command (simple)",
|
|
5153
|
+
"description": "Command to perform in the machine's default shell.",
|
|
4970
5154
|
"type": "string",
|
|
4971
5155
|
"transform": [
|
|
4972
5156
|
"trim"
|
|
@@ -5048,7 +5232,8 @@
|
|
|
5048
5232
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
5049
5233
|
"default": 60000
|
|
5050
5234
|
}
|
|
5051
|
-
}
|
|
5235
|
+
},
|
|
5236
|
+
"title": "Run shell command (detailed)"
|
|
5052
5237
|
}
|
|
5053
5238
|
}
|
|
5054
5239
|
},
|
|
@@ -5154,7 +5339,8 @@
|
|
|
5154
5339
|
"type": "object",
|
|
5155
5340
|
"readOnly": true,
|
|
5156
5341
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
5157
|
-
"additionalProperties": true
|
|
5342
|
+
"additionalProperties": true,
|
|
5343
|
+
"title": "OpenAPI definition"
|
|
5158
5344
|
},
|
|
5159
5345
|
"operationId": {
|
|
5160
5346
|
"type": "string",
|
|
@@ -5206,7 +5392,8 @@
|
|
|
5206
5392
|
"description": "Request headers to add to requests. For example, to set `Authorization` headers for all requests from the specified OpenAPI document. If specified in both a config and a step, the step value overrides the config value.",
|
|
5207
5393
|
"additionalProperties": {
|
|
5208
5394
|
"type": "string"
|
|
5209
|
-
}
|
|
5395
|
+
},
|
|
5396
|
+
"title": "OpenAPI request headers"
|
|
5210
5397
|
}
|
|
5211
5398
|
},
|
|
5212
5399
|
"components": {
|
|
@@ -5292,12 +5479,14 @@
|
|
|
5292
5479
|
"required": [
|
|
5293
5480
|
"name",
|
|
5294
5481
|
"descriptionPath"
|
|
5295
|
-
]
|
|
5482
|
+
],
|
|
5483
|
+
"title": "OpenAPI description (test)"
|
|
5296
5484
|
}
|
|
5297
5485
|
]
|
|
5298
5486
|
}
|
|
5299
5487
|
}
|
|
5300
|
-
}
|
|
5488
|
+
},
|
|
5489
|
+
"title": "Integrations options"
|
|
5301
5490
|
},
|
|
5302
5491
|
"telemetry": {
|
|
5303
5492
|
"description": "Options around sending telemetry for Doc Detective usage.",
|
|
@@ -5319,12 +5508,13 @@
|
|
|
5319
5508
|
],
|
|
5320
5509
|
"default": {
|
|
5321
5510
|
"send": true
|
|
5322
|
-
}
|
|
5511
|
+
},
|
|
5512
|
+
"title": "Telemetry options"
|
|
5323
5513
|
},
|
|
5324
5514
|
"environment": {
|
|
5325
5515
|
"type": "object",
|
|
5326
5516
|
"description": "Environment information for the system running Doc Detective.",
|
|
5327
|
-
"
|
|
5517
|
+
"readOnly": true,
|
|
5328
5518
|
"additionalProperties": false,
|
|
5329
5519
|
"required": [
|
|
5330
5520
|
"platform"
|
|
@@ -5353,7 +5543,8 @@
|
|
|
5353
5543
|
"x64"
|
|
5354
5544
|
]
|
|
5355
5545
|
}
|
|
5356
|
-
}
|
|
5546
|
+
},
|
|
5547
|
+
"title": "Environment details"
|
|
5357
5548
|
}
|
|
5358
5549
|
},
|
|
5359
5550
|
"components": {
|
|
@@ -5361,7 +5552,7 @@
|
|
|
5361
5552
|
"environment": {
|
|
5362
5553
|
"type": "object",
|
|
5363
5554
|
"description": "Environment information for the system running Doc Detective.",
|
|
5364
|
-
"
|
|
5555
|
+
"readOnly": true,
|
|
5365
5556
|
"additionalProperties": false,
|
|
5366
5557
|
"required": [
|
|
5367
5558
|
"platform"
|
|
@@ -5390,7 +5581,8 @@
|
|
|
5390
5581
|
"x64"
|
|
5391
5582
|
]
|
|
5392
5583
|
}
|
|
5393
|
-
}
|
|
5584
|
+
},
|
|
5585
|
+
"title": "Environment details"
|
|
5394
5586
|
},
|
|
5395
5587
|
"markupDefinition": {
|
|
5396
5588
|
"type": "object",
|
|
@@ -5496,7 +5688,8 @@
|
|
|
5496
5688
|
"type": "string",
|
|
5497
5689
|
"description": "Runtime expression for a user-defined output value."
|
|
5498
5690
|
}
|
|
5499
|
-
}
|
|
5691
|
+
},
|
|
5692
|
+
"title": "Outputs (step)"
|
|
5500
5693
|
},
|
|
5501
5694
|
"variables": {
|
|
5502
5695
|
"type": "object",
|
|
@@ -5507,9 +5700,11 @@
|
|
|
5507
5700
|
"type": "string",
|
|
5508
5701
|
"description": "Runtime expression for a user-defined output value."
|
|
5509
5702
|
}
|
|
5510
|
-
}
|
|
5703
|
+
},
|
|
5704
|
+
"title": "Variables (step)"
|
|
5511
5705
|
}
|
|
5512
|
-
}
|
|
5706
|
+
},
|
|
5707
|
+
"title": "Common"
|
|
5513
5708
|
},
|
|
5514
5709
|
"stepId": {
|
|
5515
5710
|
"type": "string",
|
|
@@ -5528,7 +5723,8 @@
|
|
|
5528
5723
|
"type": "string",
|
|
5529
5724
|
"description": "Runtime expression for a user-defined output value."
|
|
5530
5725
|
}
|
|
5531
|
-
}
|
|
5726
|
+
},
|
|
5727
|
+
"title": "Outputs (step)"
|
|
5532
5728
|
},
|
|
5533
5729
|
"variables": {
|
|
5534
5730
|
"type": "object",
|
|
@@ -5539,7 +5735,8 @@
|
|
|
5539
5735
|
"type": "string",
|
|
5540
5736
|
"description": "Runtime expression for a user-defined output value."
|
|
5541
5737
|
}
|
|
5542
|
-
}
|
|
5738
|
+
},
|
|
5739
|
+
"title": "Variables (step)"
|
|
5543
5740
|
}
|
|
5544
5741
|
}
|
|
5545
5742
|
},
|
|
@@ -5569,7 +5766,8 @@
|
|
|
5569
5766
|
"type": "string",
|
|
5570
5767
|
"description": "Runtime expression for a user-defined output value."
|
|
5571
5768
|
}
|
|
5572
|
-
}
|
|
5769
|
+
},
|
|
5770
|
+
"title": "Outputs (step)"
|
|
5573
5771
|
},
|
|
5574
5772
|
"variables": {
|
|
5575
5773
|
"type": "object",
|
|
@@ -5580,9 +5778,11 @@
|
|
|
5580
5778
|
"type": "string",
|
|
5581
5779
|
"description": "Runtime expression for a user-defined output value."
|
|
5582
5780
|
}
|
|
5583
|
-
}
|
|
5781
|
+
},
|
|
5782
|
+
"title": "Variables (step)"
|
|
5584
5783
|
}
|
|
5585
|
-
}
|
|
5784
|
+
},
|
|
5785
|
+
"title": "Common"
|
|
5586
5786
|
},
|
|
5587
5787
|
{
|
|
5588
5788
|
"type": "object",
|
|
@@ -5595,6 +5795,7 @@
|
|
|
5595
5795
|
"title": "checkLink",
|
|
5596
5796
|
"anyOf": [
|
|
5597
5797
|
{
|
|
5798
|
+
"title": "Check link (detailed)",
|
|
5598
5799
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5599
5800
|
"type": "string",
|
|
5600
5801
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5603,6 +5804,7 @@
|
|
|
5603
5804
|
]
|
|
5604
5805
|
},
|
|
5605
5806
|
{
|
|
5807
|
+
"title": "Check link (detailed)",
|
|
5606
5808
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5607
5809
|
"type": "object",
|
|
5608
5810
|
"additionalProperties": false,
|
|
@@ -5656,6 +5858,7 @@
|
|
|
5656
5858
|
"components": {
|
|
5657
5859
|
"schemas": {
|
|
5658
5860
|
"string": {
|
|
5861
|
+
"title": "Check link (detailed)",
|
|
5659
5862
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5660
5863
|
"type": "string",
|
|
5661
5864
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5664,6 +5867,7 @@
|
|
|
5664
5867
|
]
|
|
5665
5868
|
},
|
|
5666
5869
|
"object": {
|
|
5870
|
+
"title": "Check link (detailed)",
|
|
5667
5871
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5668
5872
|
"type": "object",
|
|
5669
5873
|
"additionalProperties": false,
|
|
@@ -5731,7 +5935,8 @@
|
|
|
5731
5935
|
}
|
|
5732
5936
|
]
|
|
5733
5937
|
}
|
|
5734
|
-
}
|
|
5938
|
+
},
|
|
5939
|
+
"title": "checkLink"
|
|
5735
5940
|
}
|
|
5736
5941
|
]
|
|
5737
5942
|
},
|
|
@@ -5760,7 +5965,8 @@
|
|
|
5760
5965
|
"type": "string",
|
|
5761
5966
|
"description": "Runtime expression for a user-defined output value."
|
|
5762
5967
|
}
|
|
5763
|
-
}
|
|
5968
|
+
},
|
|
5969
|
+
"title": "Outputs (step)"
|
|
5764
5970
|
},
|
|
5765
5971
|
"variables": {
|
|
5766
5972
|
"type": "object",
|
|
@@ -5771,9 +5977,11 @@
|
|
|
5771
5977
|
"type": "string",
|
|
5772
5978
|
"description": "Runtime expression for a user-defined output value."
|
|
5773
5979
|
}
|
|
5774
|
-
}
|
|
5980
|
+
},
|
|
5981
|
+
"title": "Variables (step)"
|
|
5775
5982
|
}
|
|
5776
|
-
}
|
|
5983
|
+
},
|
|
5984
|
+
"title": "Common"
|
|
5777
5985
|
},
|
|
5778
5986
|
{
|
|
5779
5987
|
"type": "object",
|
|
@@ -5787,7 +5995,7 @@
|
|
|
5787
5995
|
"description": "Click or tap an element.",
|
|
5788
5996
|
"anyOf": [
|
|
5789
5997
|
{
|
|
5790
|
-
"title": "
|
|
5998
|
+
"title": "Click element (simple)",
|
|
5791
5999
|
"type": "string",
|
|
5792
6000
|
"description": "Display text or selector of the element to find."
|
|
5793
6001
|
},
|
|
@@ -5833,7 +6041,7 @@
|
|
|
5833
6041
|
"components": {
|
|
5834
6042
|
"schemas": {
|
|
5835
6043
|
"string": {
|
|
5836
|
-
"title": "
|
|
6044
|
+
"title": "Click element (simple)",
|
|
5837
6045
|
"type": "string",
|
|
5838
6046
|
"description": "Display text or selector of the element to find."
|
|
5839
6047
|
},
|
|
@@ -5897,7 +6105,8 @@
|
|
|
5897
6105
|
}
|
|
5898
6106
|
]
|
|
5899
6107
|
}
|
|
5900
|
-
}
|
|
6108
|
+
},
|
|
6109
|
+
"title": "click"
|
|
5901
6110
|
}
|
|
5902
6111
|
]
|
|
5903
6112
|
},
|
|
@@ -5926,7 +6135,8 @@
|
|
|
5926
6135
|
"type": "string",
|
|
5927
6136
|
"description": "Runtime expression for a user-defined output value."
|
|
5928
6137
|
}
|
|
5929
|
-
}
|
|
6138
|
+
},
|
|
6139
|
+
"title": "Outputs (step)"
|
|
5930
6140
|
},
|
|
5931
6141
|
"variables": {
|
|
5932
6142
|
"type": "object",
|
|
@@ -5937,9 +6147,11 @@
|
|
|
5937
6147
|
"type": "string",
|
|
5938
6148
|
"description": "Runtime expression for a user-defined output value."
|
|
5939
6149
|
}
|
|
5940
|
-
}
|
|
6150
|
+
},
|
|
6151
|
+
"title": "Variables (step)"
|
|
5941
6152
|
}
|
|
5942
|
-
}
|
|
6153
|
+
},
|
|
6154
|
+
"title": "Common"
|
|
5943
6155
|
},
|
|
5944
6156
|
{
|
|
5945
6157
|
"type": "object",
|
|
@@ -6001,7 +6213,7 @@
|
|
|
6001
6213
|
"description": "Click or tap an element.",
|
|
6002
6214
|
"anyOf": [
|
|
6003
6215
|
{
|
|
6004
|
-
"title": "
|
|
6216
|
+
"title": "Click element (simple)",
|
|
6005
6217
|
"type": "string",
|
|
6006
6218
|
"description": "Display text or selector of the element to find."
|
|
6007
6219
|
},
|
|
@@ -6047,7 +6259,7 @@
|
|
|
6047
6259
|
"components": {
|
|
6048
6260
|
"schemas": {
|
|
6049
6261
|
"string": {
|
|
6050
|
-
"title": "
|
|
6262
|
+
"title": "Click element (simple)",
|
|
6051
6263
|
"type": "string",
|
|
6052
6264
|
"description": "Display text or selector of the element to find."
|
|
6053
6265
|
},
|
|
@@ -6123,7 +6335,8 @@
|
|
|
6123
6335
|
"middle"
|
|
6124
6336
|
]
|
|
6125
6337
|
}
|
|
6126
|
-
}
|
|
6338
|
+
},
|
|
6339
|
+
"title": "Find element and click"
|
|
6127
6340
|
}
|
|
6128
6341
|
]
|
|
6129
6342
|
},
|
|
@@ -6136,6 +6349,7 @@
|
|
|
6136
6349
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
6137
6350
|
"anyOf": [
|
|
6138
6351
|
{
|
|
6352
|
+
"title": "Type keys (simple)",
|
|
6139
6353
|
"description": "Sequence of keys to enter.",
|
|
6140
6354
|
"anyOf": [
|
|
6141
6355
|
{
|
|
@@ -6154,9 +6368,11 @@
|
|
|
6154
6368
|
]
|
|
6155
6369
|
},
|
|
6156
6370
|
{
|
|
6371
|
+
"title": "Type keys (detailed)",
|
|
6157
6372
|
"type": "object",
|
|
6158
6373
|
"properties": {
|
|
6159
6374
|
"keys": {
|
|
6375
|
+
"title": "Type keys (simple)",
|
|
6160
6376
|
"description": "Sequence of keys to enter.",
|
|
6161
6377
|
"anyOf": [
|
|
6162
6378
|
{
|
|
@@ -6193,6 +6409,7 @@
|
|
|
6193
6409
|
"components": {
|
|
6194
6410
|
"schemas": {
|
|
6195
6411
|
"keys": {
|
|
6412
|
+
"title": "Type keys (simple)",
|
|
6196
6413
|
"description": "Sequence of keys to enter.",
|
|
6197
6414
|
"anyOf": [
|
|
6198
6415
|
{
|
|
@@ -6211,9 +6428,11 @@
|
|
|
6211
6428
|
]
|
|
6212
6429
|
},
|
|
6213
6430
|
"object": {
|
|
6431
|
+
"title": "Type keys (detailed)",
|
|
6214
6432
|
"type": "object",
|
|
6215
6433
|
"properties": {
|
|
6216
6434
|
"keys": {
|
|
6435
|
+
"title": "Type keys (simple)",
|
|
6217
6436
|
"description": "Sequence of keys to enter.",
|
|
6218
6437
|
"anyOf": [
|
|
6219
6438
|
{
|
|
@@ -6280,7 +6499,8 @@
|
|
|
6280
6499
|
"required": [
|
|
6281
6500
|
"selector",
|
|
6282
6501
|
"elementText"
|
|
6283
|
-
]
|
|
6502
|
+
],
|
|
6503
|
+
"title": "Find element and type"
|
|
6284
6504
|
}
|
|
6285
6505
|
}
|
|
6286
6506
|
]
|
|
@@ -6339,7 +6559,7 @@
|
|
|
6339
6559
|
"description": "Click or tap an element.",
|
|
6340
6560
|
"anyOf": [
|
|
6341
6561
|
{
|
|
6342
|
-
"title": "
|
|
6562
|
+
"title": "Click element (simple)",
|
|
6343
6563
|
"type": "string",
|
|
6344
6564
|
"description": "Display text or selector of the element to find."
|
|
6345
6565
|
},
|
|
@@ -6385,7 +6605,7 @@
|
|
|
6385
6605
|
"components": {
|
|
6386
6606
|
"schemas": {
|
|
6387
6607
|
"string": {
|
|
6388
|
-
"title": "
|
|
6608
|
+
"title": "Click element (simple)",
|
|
6389
6609
|
"type": "string",
|
|
6390
6610
|
"description": "Display text or selector of the element to find."
|
|
6391
6611
|
},
|
|
@@ -6461,7 +6681,8 @@
|
|
|
6461
6681
|
"middle"
|
|
6462
6682
|
]
|
|
6463
6683
|
}
|
|
6464
|
-
}
|
|
6684
|
+
},
|
|
6685
|
+
"title": "Find element and click"
|
|
6465
6686
|
}
|
|
6466
6687
|
]
|
|
6467
6688
|
},
|
|
@@ -6474,6 +6695,7 @@
|
|
|
6474
6695
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
6475
6696
|
"anyOf": [
|
|
6476
6697
|
{
|
|
6698
|
+
"title": "Type keys (simple)",
|
|
6477
6699
|
"description": "Sequence of keys to enter.",
|
|
6478
6700
|
"anyOf": [
|
|
6479
6701
|
{
|
|
@@ -6492,9 +6714,11 @@
|
|
|
6492
6714
|
]
|
|
6493
6715
|
},
|
|
6494
6716
|
{
|
|
6717
|
+
"title": "Type keys (detailed)",
|
|
6495
6718
|
"type": "object",
|
|
6496
6719
|
"properties": {
|
|
6497
6720
|
"keys": {
|
|
6721
|
+
"title": "Type keys (simple)",
|
|
6498
6722
|
"description": "Sequence of keys to enter.",
|
|
6499
6723
|
"anyOf": [
|
|
6500
6724
|
{
|
|
@@ -6531,6 +6755,7 @@
|
|
|
6531
6755
|
"components": {
|
|
6532
6756
|
"schemas": {
|
|
6533
6757
|
"keys": {
|
|
6758
|
+
"title": "Type keys (simple)",
|
|
6534
6759
|
"description": "Sequence of keys to enter.",
|
|
6535
6760
|
"anyOf": [
|
|
6536
6761
|
{
|
|
@@ -6549,9 +6774,11 @@
|
|
|
6549
6774
|
]
|
|
6550
6775
|
},
|
|
6551
6776
|
"object": {
|
|
6777
|
+
"title": "Type keys (detailed)",
|
|
6552
6778
|
"type": "object",
|
|
6553
6779
|
"properties": {
|
|
6554
6780
|
"keys": {
|
|
6781
|
+
"title": "Type keys (simple)",
|
|
6555
6782
|
"description": "Sequence of keys to enter.",
|
|
6556
6783
|
"anyOf": [
|
|
6557
6784
|
{
|
|
@@ -6618,7 +6845,8 @@
|
|
|
6618
6845
|
"required": [
|
|
6619
6846
|
"selector",
|
|
6620
6847
|
"elementText"
|
|
6621
|
-
]
|
|
6848
|
+
],
|
|
6849
|
+
"title": "Find element and type"
|
|
6622
6850
|
}
|
|
6623
6851
|
}
|
|
6624
6852
|
]
|
|
@@ -6661,7 +6889,8 @@
|
|
|
6661
6889
|
}
|
|
6662
6890
|
]
|
|
6663
6891
|
}
|
|
6664
|
-
}
|
|
6892
|
+
},
|
|
6893
|
+
"title": "find"
|
|
6665
6894
|
}
|
|
6666
6895
|
]
|
|
6667
6896
|
},
|
|
@@ -6690,7 +6919,8 @@
|
|
|
6690
6919
|
"type": "string",
|
|
6691
6920
|
"description": "Runtime expression for a user-defined output value."
|
|
6692
6921
|
}
|
|
6693
|
-
}
|
|
6922
|
+
},
|
|
6923
|
+
"title": "Outputs (step)"
|
|
6694
6924
|
},
|
|
6695
6925
|
"variables": {
|
|
6696
6926
|
"type": "object",
|
|
@@ -6701,9 +6931,11 @@
|
|
|
6701
6931
|
"type": "string",
|
|
6702
6932
|
"description": "Runtime expression for a user-defined output value."
|
|
6703
6933
|
}
|
|
6704
|
-
}
|
|
6934
|
+
},
|
|
6935
|
+
"title": "Variables (step)"
|
|
6705
6936
|
}
|
|
6706
|
-
}
|
|
6937
|
+
},
|
|
6938
|
+
"title": "Common"
|
|
6707
6939
|
},
|
|
6708
6940
|
{
|
|
6709
6941
|
"type": "object",
|
|
@@ -6716,6 +6948,7 @@
|
|
|
6716
6948
|
"title": "goTo",
|
|
6717
6949
|
"anyOf": [
|
|
6718
6950
|
{
|
|
6951
|
+
"title": "Go to URL (simple)",
|
|
6719
6952
|
"description": "Navigate to an HTTP or HTTPS URL. Can be a full URL or a path. If a path is provided, navigates relative to the current URL, if any.",
|
|
6720
6953
|
"type": "string",
|
|
6721
6954
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6746,12 +6979,14 @@
|
|
|
6746
6979
|
"trim"
|
|
6747
6980
|
]
|
|
6748
6981
|
}
|
|
6749
|
-
}
|
|
6982
|
+
},
|
|
6983
|
+
"title": "Go to URL (detailed)"
|
|
6750
6984
|
}
|
|
6751
6985
|
],
|
|
6752
6986
|
"components": {
|
|
6753
6987
|
"schemas": {
|
|
6754
6988
|
"string": {
|
|
6989
|
+
"title": "Go to URL (simple)",
|
|
6755
6990
|
"description": "Navigate to an HTTP or HTTPS URL. Can be a full URL or a path. If a path is provided, navigates relative to the current URL, if any.",
|
|
6756
6991
|
"type": "string",
|
|
6757
6992
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6782,7 +7017,8 @@
|
|
|
6782
7017
|
"trim"
|
|
6783
7018
|
]
|
|
6784
7019
|
}
|
|
6785
|
-
}
|
|
7020
|
+
},
|
|
7021
|
+
"title": "Go to URL (detailed)"
|
|
6786
7022
|
}
|
|
6787
7023
|
}
|
|
6788
7024
|
},
|
|
@@ -6798,7 +7034,8 @@
|
|
|
6798
7034
|
}
|
|
6799
7035
|
]
|
|
6800
7036
|
}
|
|
6801
|
-
}
|
|
7037
|
+
},
|
|
7038
|
+
"title": "goTo"
|
|
6802
7039
|
}
|
|
6803
7040
|
]
|
|
6804
7041
|
},
|
|
@@ -6827,7 +7064,8 @@
|
|
|
6827
7064
|
"type": "string",
|
|
6828
7065
|
"description": "Runtime expression for a user-defined output value."
|
|
6829
7066
|
}
|
|
6830
|
-
}
|
|
7067
|
+
},
|
|
7068
|
+
"title": "Outputs (step)"
|
|
6831
7069
|
},
|
|
6832
7070
|
"variables": {
|
|
6833
7071
|
"type": "object",
|
|
@@ -6838,9 +7076,11 @@
|
|
|
6838
7076
|
"type": "string",
|
|
6839
7077
|
"description": "Runtime expression for a user-defined output value."
|
|
6840
7078
|
}
|
|
6841
|
-
}
|
|
7079
|
+
},
|
|
7080
|
+
"title": "Variables (step)"
|
|
6842
7081
|
}
|
|
6843
|
-
}
|
|
7082
|
+
},
|
|
7083
|
+
"title": "Common"
|
|
6844
7084
|
},
|
|
6845
7085
|
{
|
|
6846
7086
|
"type": "object",
|
|
@@ -6854,7 +7094,7 @@
|
|
|
6854
7094
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
6855
7095
|
"anyOf": [
|
|
6856
7096
|
{
|
|
6857
|
-
"title": "
|
|
7097
|
+
"title": "HTTP request (simple)",
|
|
6858
7098
|
"type": "string",
|
|
6859
7099
|
"description": "URL for the HTTP request.",
|
|
6860
7100
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6863,6 +7103,7 @@
|
|
|
6863
7103
|
]
|
|
6864
7104
|
},
|
|
6865
7105
|
{
|
|
7106
|
+
"title": "HTTP request (detailed)",
|
|
6866
7107
|
"type": "object",
|
|
6867
7108
|
"anyOf": [
|
|
6868
7109
|
{
|
|
@@ -6879,7 +7120,7 @@
|
|
|
6879
7120
|
"additionalProperties": false,
|
|
6880
7121
|
"properties": {
|
|
6881
7122
|
"url": {
|
|
6882
|
-
"title": "
|
|
7123
|
+
"title": "HTTP request (simple)",
|
|
6883
7124
|
"type": "string",
|
|
6884
7125
|
"description": "URL for the HTTP request.",
|
|
6885
7126
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6935,7 +7176,8 @@
|
|
|
6935
7176
|
"type": "object",
|
|
6936
7177
|
"readOnly": true,
|
|
6937
7178
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
6938
|
-
"additionalProperties": true
|
|
7179
|
+
"additionalProperties": true,
|
|
7180
|
+
"title": "OpenAPI definition"
|
|
6939
7181
|
},
|
|
6940
7182
|
"operationId": {
|
|
6941
7183
|
"type": "string",
|
|
@@ -6987,7 +7229,8 @@
|
|
|
6987
7229
|
"description": "Request headers to add to requests. For example, to set `Authorization` headers for all requests from the specified OpenAPI document. If specified in both a config and a step, the step value overrides the config value.",
|
|
6988
7230
|
"additionalProperties": {
|
|
6989
7231
|
"type": "string"
|
|
6990
|
-
}
|
|
7232
|
+
},
|
|
7233
|
+
"title": "OpenAPI request headers"
|
|
6991
7234
|
}
|
|
6992
7235
|
},
|
|
6993
7236
|
"components": {
|
|
@@ -7067,7 +7310,8 @@
|
|
|
7067
7310
|
"type": "object",
|
|
7068
7311
|
"required": [
|
|
7069
7312
|
"operationId"
|
|
7070
|
-
]
|
|
7313
|
+
],
|
|
7314
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
7071
7315
|
}
|
|
7072
7316
|
]
|
|
7073
7317
|
}
|
|
@@ -7118,34 +7362,43 @@
|
|
|
7118
7362
|
"type": "object",
|
|
7119
7363
|
"additionalProperties": true,
|
|
7120
7364
|
"properties": {},
|
|
7121
|
-
"default": {}
|
|
7365
|
+
"default": {},
|
|
7366
|
+
"title": "Request headers"
|
|
7122
7367
|
},
|
|
7123
7368
|
"parameters": {
|
|
7124
7369
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
7125
7370
|
"type": "object",
|
|
7126
7371
|
"additionalProperties": true,
|
|
7127
7372
|
"default": {},
|
|
7128
|
-
"properties": {}
|
|
7373
|
+
"properties": {},
|
|
7374
|
+
"title": "Request parameters"
|
|
7129
7375
|
},
|
|
7130
7376
|
"body": {
|
|
7131
7377
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
7132
7378
|
"anyOf": [
|
|
7133
7379
|
{
|
|
7380
|
+
"title": "Request body object",
|
|
7381
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
7134
7382
|
"type": "object",
|
|
7135
7383
|
"additionalProperties": true,
|
|
7136
7384
|
"properties": {}
|
|
7137
7385
|
},
|
|
7138
7386
|
{
|
|
7387
|
+
"title": "Request body array",
|
|
7388
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
7139
7389
|
"type": "array",
|
|
7140
7390
|
"items": {}
|
|
7141
7391
|
},
|
|
7142
7392
|
{
|
|
7393
|
+
"title": "Request body string",
|
|
7394
|
+
"description": "String to include as the body of the HTTP request.",
|
|
7143
7395
|
"type": "string"
|
|
7144
7396
|
}
|
|
7145
7397
|
],
|
|
7146
7398
|
"default": {}
|
|
7147
7399
|
}
|
|
7148
|
-
}
|
|
7400
|
+
},
|
|
7401
|
+
"title": "Request"
|
|
7149
7402
|
},
|
|
7150
7403
|
"response": {
|
|
7151
7404
|
"type": "object",
|
|
@@ -7156,7 +7409,8 @@
|
|
|
7156
7409
|
"type": "object",
|
|
7157
7410
|
"additionalProperties": true,
|
|
7158
7411
|
"properties": {},
|
|
7159
|
-
"default": {}
|
|
7412
|
+
"default": {},
|
|
7413
|
+
"title": "Response headers"
|
|
7160
7414
|
},
|
|
7161
7415
|
"body": {
|
|
7162
7416
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -7164,19 +7418,26 @@
|
|
|
7164
7418
|
{
|
|
7165
7419
|
"type": "object",
|
|
7166
7420
|
"additionalProperties": true,
|
|
7167
|
-
"properties": {}
|
|
7421
|
+
"properties": {},
|
|
7422
|
+
"title": "Response body object",
|
|
7423
|
+
"description": "JSON key/value pairs expected in the response."
|
|
7168
7424
|
},
|
|
7169
7425
|
{
|
|
7426
|
+
"title": "Response body array",
|
|
7427
|
+
"description": "JSON array expected in the response.",
|
|
7170
7428
|
"type": "array",
|
|
7171
7429
|
"items": {}
|
|
7172
7430
|
},
|
|
7173
7431
|
{
|
|
7432
|
+
"title": "Response body string",
|
|
7433
|
+
"description": "String expected in the response.",
|
|
7174
7434
|
"type": "string"
|
|
7175
7435
|
}
|
|
7176
7436
|
],
|
|
7177
7437
|
"default": {}
|
|
7178
7438
|
}
|
|
7179
|
-
}
|
|
7439
|
+
},
|
|
7440
|
+
"title": "Response"
|
|
7180
7441
|
},
|
|
7181
7442
|
"allowAdditionalFields": {
|
|
7182
7443
|
"type": "boolean",
|
|
@@ -7214,7 +7475,7 @@
|
|
|
7214
7475
|
"components": {
|
|
7215
7476
|
"schemas": {
|
|
7216
7477
|
"url": {
|
|
7217
|
-
"title": "
|
|
7478
|
+
"title": "HTTP request (simple)",
|
|
7218
7479
|
"type": "string",
|
|
7219
7480
|
"description": "URL for the HTTP request.",
|
|
7220
7481
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -7223,6 +7484,7 @@
|
|
|
7223
7484
|
]
|
|
7224
7485
|
},
|
|
7225
7486
|
"object": {
|
|
7487
|
+
"title": "HTTP request (detailed)",
|
|
7226
7488
|
"type": "object",
|
|
7227
7489
|
"anyOf": [
|
|
7228
7490
|
{
|
|
@@ -7239,7 +7501,7 @@
|
|
|
7239
7501
|
"additionalProperties": false,
|
|
7240
7502
|
"properties": {
|
|
7241
7503
|
"url": {
|
|
7242
|
-
"title": "
|
|
7504
|
+
"title": "HTTP request (simple)",
|
|
7243
7505
|
"type": "string",
|
|
7244
7506
|
"description": "URL for the HTTP request.",
|
|
7245
7507
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -7295,7 +7557,8 @@
|
|
|
7295
7557
|
"type": "object",
|
|
7296
7558
|
"readOnly": true,
|
|
7297
7559
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
7298
|
-
"additionalProperties": true
|
|
7560
|
+
"additionalProperties": true,
|
|
7561
|
+
"title": "OpenAPI definition"
|
|
7299
7562
|
},
|
|
7300
7563
|
"operationId": {
|
|
7301
7564
|
"type": "string",
|
|
@@ -7347,7 +7610,8 @@
|
|
|
7347
7610
|
"description": "Request headers to add to requests. For example, to set `Authorization` headers for all requests from the specified OpenAPI document. If specified in both a config and a step, the step value overrides the config value.",
|
|
7348
7611
|
"additionalProperties": {
|
|
7349
7612
|
"type": "string"
|
|
7350
|
-
}
|
|
7613
|
+
},
|
|
7614
|
+
"title": "OpenAPI request headers"
|
|
7351
7615
|
}
|
|
7352
7616
|
},
|
|
7353
7617
|
"components": {
|
|
@@ -7427,7 +7691,8 @@
|
|
|
7427
7691
|
"type": "object",
|
|
7428
7692
|
"required": [
|
|
7429
7693
|
"operationId"
|
|
7430
|
-
]
|
|
7694
|
+
],
|
|
7695
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
7431
7696
|
}
|
|
7432
7697
|
]
|
|
7433
7698
|
}
|
|
@@ -7478,34 +7743,43 @@
|
|
|
7478
7743
|
"type": "object",
|
|
7479
7744
|
"additionalProperties": true,
|
|
7480
7745
|
"properties": {},
|
|
7481
|
-
"default": {}
|
|
7746
|
+
"default": {},
|
|
7747
|
+
"title": "Request headers"
|
|
7482
7748
|
},
|
|
7483
7749
|
"parameters": {
|
|
7484
7750
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
7485
7751
|
"type": "object",
|
|
7486
7752
|
"additionalProperties": true,
|
|
7487
7753
|
"default": {},
|
|
7488
|
-
"properties": {}
|
|
7754
|
+
"properties": {},
|
|
7755
|
+
"title": "Request parameters"
|
|
7489
7756
|
},
|
|
7490
7757
|
"body": {
|
|
7491
7758
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
7492
7759
|
"anyOf": [
|
|
7493
7760
|
{
|
|
7761
|
+
"title": "Request body object",
|
|
7762
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
7494
7763
|
"type": "object",
|
|
7495
7764
|
"additionalProperties": true,
|
|
7496
7765
|
"properties": {}
|
|
7497
7766
|
},
|
|
7498
7767
|
{
|
|
7768
|
+
"title": "Request body array",
|
|
7769
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
7499
7770
|
"type": "array",
|
|
7500
7771
|
"items": {}
|
|
7501
7772
|
},
|
|
7502
7773
|
{
|
|
7774
|
+
"title": "Request body string",
|
|
7775
|
+
"description": "String to include as the body of the HTTP request.",
|
|
7503
7776
|
"type": "string"
|
|
7504
7777
|
}
|
|
7505
7778
|
],
|
|
7506
7779
|
"default": {}
|
|
7507
7780
|
}
|
|
7508
|
-
}
|
|
7781
|
+
},
|
|
7782
|
+
"title": "Request"
|
|
7509
7783
|
},
|
|
7510
7784
|
"response": {
|
|
7511
7785
|
"type": "object",
|
|
@@ -7516,7 +7790,8 @@
|
|
|
7516
7790
|
"type": "object",
|
|
7517
7791
|
"additionalProperties": true,
|
|
7518
7792
|
"properties": {},
|
|
7519
|
-
"default": {}
|
|
7793
|
+
"default": {},
|
|
7794
|
+
"title": "Response headers"
|
|
7520
7795
|
},
|
|
7521
7796
|
"body": {
|
|
7522
7797
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -7524,19 +7799,26 @@
|
|
|
7524
7799
|
{
|
|
7525
7800
|
"type": "object",
|
|
7526
7801
|
"additionalProperties": true,
|
|
7527
|
-
"properties": {}
|
|
7802
|
+
"properties": {},
|
|
7803
|
+
"title": "Response body object",
|
|
7804
|
+
"description": "JSON key/value pairs expected in the response."
|
|
7528
7805
|
},
|
|
7529
7806
|
{
|
|
7807
|
+
"title": "Response body array",
|
|
7808
|
+
"description": "JSON array expected in the response.",
|
|
7530
7809
|
"type": "array",
|
|
7531
7810
|
"items": {}
|
|
7532
7811
|
},
|
|
7533
7812
|
{
|
|
7813
|
+
"title": "Response body string",
|
|
7814
|
+
"description": "String expected in the response.",
|
|
7534
7815
|
"type": "string"
|
|
7535
7816
|
}
|
|
7536
7817
|
],
|
|
7537
7818
|
"default": {}
|
|
7538
7819
|
}
|
|
7539
|
-
}
|
|
7820
|
+
},
|
|
7821
|
+
"title": "Response"
|
|
7540
7822
|
},
|
|
7541
7823
|
"allowAdditionalFields": {
|
|
7542
7824
|
"type": "boolean",
|
|
@@ -7711,7 +7993,8 @@
|
|
|
7711
7993
|
}
|
|
7712
7994
|
]
|
|
7713
7995
|
}
|
|
7714
|
-
}
|
|
7996
|
+
},
|
|
7997
|
+
"title": "httpRequest"
|
|
7715
7998
|
}
|
|
7716
7999
|
]
|
|
7717
8000
|
},
|
|
@@ -7740,7 +8023,8 @@
|
|
|
7740
8023
|
"type": "string",
|
|
7741
8024
|
"description": "Runtime expression for a user-defined output value."
|
|
7742
8025
|
}
|
|
7743
|
-
}
|
|
8026
|
+
},
|
|
8027
|
+
"title": "Outputs (step)"
|
|
7744
8028
|
},
|
|
7745
8029
|
"variables": {
|
|
7746
8030
|
"type": "object",
|
|
@@ -7751,9 +8035,11 @@
|
|
|
7751
8035
|
"type": "string",
|
|
7752
8036
|
"description": "Runtime expression for a user-defined output value."
|
|
7753
8037
|
}
|
|
7754
|
-
}
|
|
8038
|
+
},
|
|
8039
|
+
"title": "Variables (step)"
|
|
7755
8040
|
}
|
|
7756
|
-
}
|
|
8041
|
+
},
|
|
8042
|
+
"title": "Common"
|
|
7757
8043
|
},
|
|
7758
8044
|
{
|
|
7759
8045
|
"type": "object",
|
|
@@ -7767,6 +8053,8 @@
|
|
|
7767
8053
|
"description": "Perform a native shell command.",
|
|
7768
8054
|
"anyOf": [
|
|
7769
8055
|
{
|
|
8056
|
+
"title": "Run shell command (simple)",
|
|
8057
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7770
8058
|
"type": "string",
|
|
7771
8059
|
"transform": [
|
|
7772
8060
|
"trim"
|
|
@@ -7848,12 +8136,15 @@
|
|
|
7848
8136
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7849
8137
|
"default": 60000
|
|
7850
8138
|
}
|
|
7851
|
-
}
|
|
8139
|
+
},
|
|
8140
|
+
"title": "Run shell command (detailed)"
|
|
7852
8141
|
}
|
|
7853
8142
|
],
|
|
7854
8143
|
"components": {
|
|
7855
8144
|
"schemas": {
|
|
7856
8145
|
"string": {
|
|
8146
|
+
"title": "Run shell command (simple)",
|
|
8147
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7857
8148
|
"type": "string",
|
|
7858
8149
|
"transform": [
|
|
7859
8150
|
"trim"
|
|
@@ -7935,7 +8226,8 @@
|
|
|
7935
8226
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7936
8227
|
"default": 60000
|
|
7937
8228
|
}
|
|
7938
|
-
}
|
|
8229
|
+
},
|
|
8230
|
+
"title": "Run shell command (detailed)"
|
|
7939
8231
|
}
|
|
7940
8232
|
}
|
|
7941
8233
|
},
|
|
@@ -7991,7 +8283,8 @@
|
|
|
7991
8283
|
}
|
|
7992
8284
|
]
|
|
7993
8285
|
}
|
|
7994
|
-
}
|
|
8286
|
+
},
|
|
8287
|
+
"title": "runShell"
|
|
7995
8288
|
}
|
|
7996
8289
|
]
|
|
7997
8290
|
},
|
|
@@ -8020,7 +8313,8 @@
|
|
|
8020
8313
|
"type": "string",
|
|
8021
8314
|
"description": "Runtime expression for a user-defined output value."
|
|
8022
8315
|
}
|
|
8023
|
-
}
|
|
8316
|
+
},
|
|
8317
|
+
"title": "Outputs (step)"
|
|
8024
8318
|
},
|
|
8025
8319
|
"variables": {
|
|
8026
8320
|
"type": "object",
|
|
@@ -8031,9 +8325,11 @@
|
|
|
8031
8325
|
"type": "string",
|
|
8032
8326
|
"description": "Runtime expression for a user-defined output value."
|
|
8033
8327
|
}
|
|
8034
|
-
}
|
|
8328
|
+
},
|
|
8329
|
+
"title": "Variables (step)"
|
|
8035
8330
|
}
|
|
8036
|
-
}
|
|
8331
|
+
},
|
|
8332
|
+
"title": "Common"
|
|
8037
8333
|
},
|
|
8038
8334
|
{
|
|
8039
8335
|
"type": "object",
|
|
@@ -8131,7 +8427,8 @@
|
|
|
8131
8427
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
8132
8428
|
"default": 60000
|
|
8133
8429
|
}
|
|
8134
|
-
}
|
|
8430
|
+
},
|
|
8431
|
+
"title": "Run code (detailed)"
|
|
8135
8432
|
}
|
|
8136
8433
|
],
|
|
8137
8434
|
"components": {
|
|
@@ -8221,7 +8518,8 @@
|
|
|
8221
8518
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
8222
8519
|
"default": 60000
|
|
8223
8520
|
}
|
|
8224
|
-
}
|
|
8521
|
+
},
|
|
8522
|
+
"title": "Run code (detailed)"
|
|
8225
8523
|
}
|
|
8226
8524
|
}
|
|
8227
8525
|
},
|
|
@@ -8261,7 +8559,8 @@
|
|
|
8261
8559
|
}
|
|
8262
8560
|
]
|
|
8263
8561
|
}
|
|
8264
|
-
}
|
|
8562
|
+
},
|
|
8563
|
+
"title": "runCode"
|
|
8265
8564
|
}
|
|
8266
8565
|
]
|
|
8267
8566
|
},
|
|
@@ -8290,7 +8589,8 @@
|
|
|
8290
8589
|
"type": "string",
|
|
8291
8590
|
"description": "Runtime expression for a user-defined output value."
|
|
8292
8591
|
}
|
|
8293
|
-
}
|
|
8592
|
+
},
|
|
8593
|
+
"title": "Outputs (step)"
|
|
8294
8594
|
},
|
|
8295
8595
|
"variables": {
|
|
8296
8596
|
"type": "object",
|
|
@@ -8301,9 +8601,11 @@
|
|
|
8301
8601
|
"type": "string",
|
|
8302
8602
|
"description": "Runtime expression for a user-defined output value."
|
|
8303
8603
|
}
|
|
8304
|
-
}
|
|
8604
|
+
},
|
|
8605
|
+
"title": "Variables (step)"
|
|
8305
8606
|
}
|
|
8306
|
-
}
|
|
8607
|
+
},
|
|
8608
|
+
"title": "Common"
|
|
8307
8609
|
},
|
|
8308
8610
|
{
|
|
8309
8611
|
"type": "object",
|
|
@@ -8317,6 +8619,7 @@
|
|
|
8317
8619
|
"description": "Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.",
|
|
8318
8620
|
"anyOf": [
|
|
8319
8621
|
{
|
|
8622
|
+
"title": "Type keys (simple)",
|
|
8320
8623
|
"description": "Sequence of keys to enter.",
|
|
8321
8624
|
"anyOf": [
|
|
8322
8625
|
{
|
|
@@ -8335,9 +8638,11 @@
|
|
|
8335
8638
|
]
|
|
8336
8639
|
},
|
|
8337
8640
|
{
|
|
8641
|
+
"title": "Type keys (detailed)",
|
|
8338
8642
|
"type": "object",
|
|
8339
8643
|
"properties": {
|
|
8340
8644
|
"keys": {
|
|
8645
|
+
"title": "Type keys (simple)",
|
|
8341
8646
|
"description": "Sequence of keys to enter.",
|
|
8342
8647
|
"anyOf": [
|
|
8343
8648
|
{
|
|
@@ -8374,6 +8679,7 @@
|
|
|
8374
8679
|
"components": {
|
|
8375
8680
|
"schemas": {
|
|
8376
8681
|
"keys": {
|
|
8682
|
+
"title": "Type keys (simple)",
|
|
8377
8683
|
"description": "Sequence of keys to enter.",
|
|
8378
8684
|
"anyOf": [
|
|
8379
8685
|
{
|
|
@@ -8392,9 +8698,11 @@
|
|
|
8392
8698
|
]
|
|
8393
8699
|
},
|
|
8394
8700
|
"object": {
|
|
8701
|
+
"title": "Type keys (detailed)",
|
|
8395
8702
|
"type": "object",
|
|
8396
8703
|
"properties": {
|
|
8397
8704
|
"keys": {
|
|
8705
|
+
"title": "Type keys (simple)",
|
|
8398
8706
|
"description": "Sequence of keys to enter.",
|
|
8399
8707
|
"anyOf": [
|
|
8400
8708
|
{
|
|
@@ -8455,7 +8763,8 @@
|
|
|
8455
8763
|
}
|
|
8456
8764
|
]
|
|
8457
8765
|
}
|
|
8458
|
-
}
|
|
8766
|
+
},
|
|
8767
|
+
"title": "type"
|
|
8459
8768
|
}
|
|
8460
8769
|
]
|
|
8461
8770
|
},
|
|
@@ -8484,7 +8793,8 @@
|
|
|
8484
8793
|
"type": "string",
|
|
8485
8794
|
"description": "Runtime expression for a user-defined output value."
|
|
8486
8795
|
}
|
|
8487
|
-
}
|
|
8796
|
+
},
|
|
8797
|
+
"title": "Outputs (step)"
|
|
8488
8798
|
},
|
|
8489
8799
|
"variables": {
|
|
8490
8800
|
"type": "object",
|
|
@@ -8495,9 +8805,11 @@
|
|
|
8495
8805
|
"type": "string",
|
|
8496
8806
|
"description": "Runtime expression for a user-defined output value."
|
|
8497
8807
|
}
|
|
8498
|
-
}
|
|
8808
|
+
},
|
|
8809
|
+
"title": "Variables (step)"
|
|
8499
8810
|
}
|
|
8500
|
-
}
|
|
8811
|
+
},
|
|
8812
|
+
"title": "Common"
|
|
8501
8813
|
},
|
|
8502
8814
|
{
|
|
8503
8815
|
"type": "object",
|
|
@@ -8511,6 +8823,7 @@
|
|
|
8511
8823
|
"description": "Takes a screenshot in PNG format.",
|
|
8512
8824
|
"anyOf": [
|
|
8513
8825
|
{
|
|
8826
|
+
"title": "Screenshot (simple)",
|
|
8514
8827
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8515
8828
|
"type": "string",
|
|
8516
8829
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8523,6 +8836,7 @@
|
|
|
8523
8836
|
"additionalProperties": false,
|
|
8524
8837
|
"properties": {
|
|
8525
8838
|
"path": {
|
|
8839
|
+
"title": "Screenshot (simple)",
|
|
8526
8840
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8527
8841
|
"type": "string",
|
|
8528
8842
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8557,7 +8871,7 @@
|
|
|
8557
8871
|
"crop": {
|
|
8558
8872
|
"anyOf": [
|
|
8559
8873
|
{
|
|
8560
|
-
"title": "Crop by element",
|
|
8874
|
+
"title": "Crop by element (simple)",
|
|
8561
8875
|
"type": "string",
|
|
8562
8876
|
"description": "Display text or selector of the element to screenshot."
|
|
8563
8877
|
},
|
|
@@ -8590,6 +8904,7 @@
|
|
|
8590
8904
|
"padding": {
|
|
8591
8905
|
"anyOf": [
|
|
8592
8906
|
{
|
|
8907
|
+
"title": "Padding (simple)",
|
|
8593
8908
|
"type": "number",
|
|
8594
8909
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8595
8910
|
"minimum": 0
|
|
@@ -8614,7 +8929,9 @@
|
|
|
8614
8929
|
"type": "number",
|
|
8615
8930
|
"minimum": 0
|
|
8616
8931
|
}
|
|
8617
|
-
}
|
|
8932
|
+
},
|
|
8933
|
+
"title": "Padding (detailed)",
|
|
8934
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8618
8935
|
}
|
|
8619
8936
|
]
|
|
8620
8937
|
}
|
|
@@ -8622,15 +8939,19 @@
|
|
|
8622
8939
|
}
|
|
8623
8940
|
]
|
|
8624
8941
|
}
|
|
8625
|
-
}
|
|
8942
|
+
},
|
|
8943
|
+
"title": "Capture screenshot (detailed)"
|
|
8626
8944
|
},
|
|
8627
8945
|
{
|
|
8628
|
-
"type": "boolean"
|
|
8946
|
+
"type": "boolean",
|
|
8947
|
+
"title": "Capture screenshot",
|
|
8948
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
8629
8949
|
}
|
|
8630
8950
|
],
|
|
8631
8951
|
"components": {
|
|
8632
8952
|
"schemas": {
|
|
8633
8953
|
"path": {
|
|
8954
|
+
"title": "Screenshot (simple)",
|
|
8634
8955
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8635
8956
|
"type": "string",
|
|
8636
8957
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8643,6 +8964,7 @@
|
|
|
8643
8964
|
"additionalProperties": false,
|
|
8644
8965
|
"properties": {
|
|
8645
8966
|
"path": {
|
|
8967
|
+
"title": "Screenshot (simple)",
|
|
8646
8968
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8647
8969
|
"type": "string",
|
|
8648
8970
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8677,7 +8999,7 @@
|
|
|
8677
8999
|
"crop": {
|
|
8678
9000
|
"anyOf": [
|
|
8679
9001
|
{
|
|
8680
|
-
"title": "Crop by element",
|
|
9002
|
+
"title": "Crop by element (simple)",
|
|
8681
9003
|
"type": "string",
|
|
8682
9004
|
"description": "Display text or selector of the element to screenshot."
|
|
8683
9005
|
},
|
|
@@ -8710,6 +9032,7 @@
|
|
|
8710
9032
|
"padding": {
|
|
8711
9033
|
"anyOf": [
|
|
8712
9034
|
{
|
|
9035
|
+
"title": "Padding (simple)",
|
|
8713
9036
|
"type": "number",
|
|
8714
9037
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8715
9038
|
"minimum": 0
|
|
@@ -8734,7 +9057,9 @@
|
|
|
8734
9057
|
"type": "number",
|
|
8735
9058
|
"minimum": 0
|
|
8736
9059
|
}
|
|
8737
|
-
}
|
|
9060
|
+
},
|
|
9061
|
+
"title": "Padding (detailed)",
|
|
9062
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8738
9063
|
}
|
|
8739
9064
|
]
|
|
8740
9065
|
}
|
|
@@ -8742,7 +9067,8 @@
|
|
|
8742
9067
|
}
|
|
8743
9068
|
]
|
|
8744
9069
|
}
|
|
8745
|
-
}
|
|
9070
|
+
},
|
|
9071
|
+
"title": "Capture screenshot (detailed)"
|
|
8746
9072
|
},
|
|
8747
9073
|
"crop_element": {
|
|
8748
9074
|
"title": "Crop by element (detailed)",
|
|
@@ -8773,6 +9099,7 @@
|
|
|
8773
9099
|
"padding": {
|
|
8774
9100
|
"anyOf": [
|
|
8775
9101
|
{
|
|
9102
|
+
"title": "Padding (simple)",
|
|
8776
9103
|
"type": "number",
|
|
8777
9104
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8778
9105
|
"minimum": 0
|
|
@@ -8797,7 +9124,9 @@
|
|
|
8797
9124
|
"type": "number",
|
|
8798
9125
|
"minimum": 0
|
|
8799
9126
|
}
|
|
8800
|
-
}
|
|
9127
|
+
},
|
|
9128
|
+
"title": "Padding (detailed)",
|
|
9129
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8801
9130
|
}
|
|
8802
9131
|
]
|
|
8803
9132
|
}
|
|
@@ -8823,7 +9152,9 @@
|
|
|
8823
9152
|
"type": "number",
|
|
8824
9153
|
"minimum": 0
|
|
8825
9154
|
}
|
|
8826
|
-
}
|
|
9155
|
+
},
|
|
9156
|
+
"title": "Padding (detailed)",
|
|
9157
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8827
9158
|
}
|
|
8828
9159
|
}
|
|
8829
9160
|
},
|
|
@@ -8863,7 +9194,8 @@
|
|
|
8863
9194
|
}
|
|
8864
9195
|
]
|
|
8865
9196
|
}
|
|
8866
|
-
}
|
|
9197
|
+
},
|
|
9198
|
+
"title": "screenshot"
|
|
8867
9199
|
}
|
|
8868
9200
|
]
|
|
8869
9201
|
},
|
|
@@ -8892,7 +9224,8 @@
|
|
|
8892
9224
|
"type": "string",
|
|
8893
9225
|
"description": "Runtime expression for a user-defined output value."
|
|
8894
9226
|
}
|
|
8895
|
-
}
|
|
9227
|
+
},
|
|
9228
|
+
"title": "Outputs (step)"
|
|
8896
9229
|
},
|
|
8897
9230
|
"variables": {
|
|
8898
9231
|
"type": "object",
|
|
@@ -8903,9 +9236,11 @@
|
|
|
8903
9236
|
"type": "string",
|
|
8904
9237
|
"description": "Runtime expression for a user-defined output value."
|
|
8905
9238
|
}
|
|
8906
|
-
}
|
|
9239
|
+
},
|
|
9240
|
+
"title": "Variables (step)"
|
|
8907
9241
|
}
|
|
8908
|
-
}
|
|
9242
|
+
},
|
|
9243
|
+
"title": "Common"
|
|
8909
9244
|
},
|
|
8910
9245
|
{
|
|
8911
9246
|
"type": "object",
|
|
@@ -8919,6 +9254,7 @@
|
|
|
8919
9254
|
"description": "Start recording the current browser viewport. Must be followed by a `stopRecord` step. Only runs in Chrome browsers when they are visible. Supported extensions: [ '.mp4', '.webm', '.gif' ]",
|
|
8920
9255
|
"anyOf": [
|
|
8921
9256
|
{
|
|
9257
|
+
"title": "Record (simple)",
|
|
8922
9258
|
"type": "string",
|
|
8923
9259
|
"description": "File path of the recording. Supports the `.mp4`, `.webm`, and `.gif` extensions. If not specified, the file name is the ID of the step, and the extension is `.mp4`.",
|
|
8924
9260
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8952,15 +9288,19 @@
|
|
|
8952
9288
|
"false"
|
|
8953
9289
|
]
|
|
8954
9290
|
}
|
|
8955
|
-
}
|
|
9291
|
+
},
|
|
9292
|
+
"title": "Record (detailed)"
|
|
8956
9293
|
},
|
|
8957
9294
|
{
|
|
8958
|
-
"type": "boolean"
|
|
9295
|
+
"type": "boolean",
|
|
9296
|
+
"title": "Record (boolean)",
|
|
9297
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
8959
9298
|
}
|
|
8960
9299
|
],
|
|
8961
9300
|
"components": {
|
|
8962
9301
|
"schemas": {
|
|
8963
9302
|
"string": {
|
|
9303
|
+
"title": "Record (simple)",
|
|
8964
9304
|
"type": "string",
|
|
8965
9305
|
"description": "File path of the recording. Supports the `.mp4`, `.webm`, and `.gif` extensions. If not specified, the file name is the ID of the step, and the extension is `.mp4`.",
|
|
8966
9306
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8994,7 +9334,8 @@
|
|
|
8994
9334
|
"false"
|
|
8995
9335
|
]
|
|
8996
9336
|
}
|
|
8997
|
-
}
|
|
9337
|
+
},
|
|
9338
|
+
"title": "Record (detailed)"
|
|
8998
9339
|
}
|
|
8999
9340
|
}
|
|
9000
9341
|
},
|
|
@@ -9008,7 +9349,8 @@
|
|
|
9008
9349
|
}
|
|
9009
9350
|
]
|
|
9010
9351
|
}
|
|
9011
|
-
}
|
|
9352
|
+
},
|
|
9353
|
+
"title": "record"
|
|
9012
9354
|
}
|
|
9013
9355
|
]
|
|
9014
9356
|
},
|
|
@@ -9037,7 +9379,8 @@
|
|
|
9037
9379
|
"type": "string",
|
|
9038
9380
|
"description": "Runtime expression for a user-defined output value."
|
|
9039
9381
|
}
|
|
9040
|
-
}
|
|
9382
|
+
},
|
|
9383
|
+
"title": "Outputs (step)"
|
|
9041
9384
|
},
|
|
9042
9385
|
"variables": {
|
|
9043
9386
|
"type": "object",
|
|
@@ -9048,9 +9391,11 @@
|
|
|
9048
9391
|
"type": "string",
|
|
9049
9392
|
"description": "Runtime expression for a user-defined output value."
|
|
9050
9393
|
}
|
|
9051
|
-
}
|
|
9394
|
+
},
|
|
9395
|
+
"title": "Variables (step)"
|
|
9052
9396
|
}
|
|
9053
|
-
}
|
|
9397
|
+
},
|
|
9398
|
+
"title": "Common"
|
|
9054
9399
|
},
|
|
9055
9400
|
{
|
|
9056
9401
|
"type": "object",
|
|
@@ -9072,7 +9417,8 @@
|
|
|
9072
9417
|
true
|
|
9073
9418
|
]
|
|
9074
9419
|
}
|
|
9075
|
-
}
|
|
9420
|
+
},
|
|
9421
|
+
"title": "stopRecord"
|
|
9076
9422
|
}
|
|
9077
9423
|
]
|
|
9078
9424
|
},
|
|
@@ -9101,7 +9447,8 @@
|
|
|
9101
9447
|
"type": "string",
|
|
9102
9448
|
"description": "Runtime expression for a user-defined output value."
|
|
9103
9449
|
}
|
|
9104
|
-
}
|
|
9450
|
+
},
|
|
9451
|
+
"title": "Outputs (step)"
|
|
9105
9452
|
},
|
|
9106
9453
|
"variables": {
|
|
9107
9454
|
"type": "object",
|
|
@@ -9112,11 +9459,15 @@
|
|
|
9112
9459
|
"type": "string",
|
|
9113
9460
|
"description": "Runtime expression for a user-defined output value."
|
|
9114
9461
|
}
|
|
9115
|
-
}
|
|
9462
|
+
},
|
|
9463
|
+
"title": "Variables (step)"
|
|
9116
9464
|
}
|
|
9117
|
-
}
|
|
9465
|
+
},
|
|
9466
|
+
"title": "Common"
|
|
9118
9467
|
},
|
|
9119
9468
|
{
|
|
9469
|
+
"title": "loadVariables",
|
|
9470
|
+
"type": "object",
|
|
9120
9471
|
"required": [
|
|
9121
9472
|
"loadVariables"
|
|
9122
9473
|
],
|
|
@@ -9159,7 +9510,8 @@
|
|
|
9159
9510
|
"type": "string",
|
|
9160
9511
|
"description": "Runtime expression for a user-defined output value."
|
|
9161
9512
|
}
|
|
9162
|
-
}
|
|
9513
|
+
},
|
|
9514
|
+
"title": "Outputs (step)"
|
|
9163
9515
|
},
|
|
9164
9516
|
"variables": {
|
|
9165
9517
|
"type": "object",
|
|
@@ -9170,11 +9522,15 @@
|
|
|
9170
9522
|
"type": "string",
|
|
9171
9523
|
"description": "Runtime expression for a user-defined output value."
|
|
9172
9524
|
}
|
|
9173
|
-
}
|
|
9525
|
+
},
|
|
9526
|
+
"title": "Variables (step)"
|
|
9174
9527
|
}
|
|
9175
|
-
}
|
|
9528
|
+
},
|
|
9529
|
+
"title": "Common"
|
|
9176
9530
|
},
|
|
9177
9531
|
{
|
|
9532
|
+
"title": "wait",
|
|
9533
|
+
"type": "object",
|
|
9178
9534
|
"required": [
|
|
9179
9535
|
"wait"
|
|
9180
9536
|
],
|
|
@@ -9186,9 +9542,11 @@
|
|
|
9186
9542
|
"default": 5000,
|
|
9187
9543
|
"anyOf": [
|
|
9188
9544
|
{
|
|
9189
|
-
"type": "number"
|
|
9545
|
+
"type": "number",
|
|
9546
|
+
"title": "Wait (simple)"
|
|
9190
9547
|
},
|
|
9191
9548
|
{
|
|
9549
|
+
"title": "Wait (environment variable)",
|
|
9192
9550
|
"type": "string",
|
|
9193
9551
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
9194
9552
|
"transform": [
|
|
@@ -9196,12 +9554,14 @@
|
|
|
9196
9554
|
]
|
|
9197
9555
|
},
|
|
9198
9556
|
{
|
|
9199
|
-
"type": "boolean"
|
|
9557
|
+
"type": "boolean",
|
|
9558
|
+
"title": "Wait (boolean)"
|
|
9200
9559
|
}
|
|
9201
9560
|
],
|
|
9202
9561
|
"components": {
|
|
9203
9562
|
"schemas": {
|
|
9204
9563
|
"string": {
|
|
9564
|
+
"title": "Wait (environment variable)",
|
|
9205
9565
|
"type": "string",
|
|
9206
9566
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
9207
9567
|
"transform": [
|
|
@@ -9574,7 +9934,8 @@
|
|
|
9574
9934
|
}
|
|
9575
9935
|
]
|
|
9576
9936
|
}
|
|
9577
|
-
}
|
|
9937
|
+
},
|
|
9938
|
+
"title": "Markup definition"
|
|
9578
9939
|
},
|
|
9579
9940
|
"markupActionString": {
|
|
9580
9941
|
"type": "string",
|
|
@@ -9693,7 +10054,8 @@
|
|
|
9693
10054
|
}
|
|
9694
10055
|
]
|
|
9695
10056
|
}
|
|
9696
|
-
}
|
|
10057
|
+
},
|
|
10058
|
+
"title": "Inline statement definition"
|
|
9697
10059
|
},
|
|
9698
10060
|
"stringOrArray": {
|
|
9699
10061
|
"anyOf": [
|