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
|
@@ -115,7 +115,8 @@
|
|
|
115
115
|
"type": "integer",
|
|
116
116
|
"description": "Height of the browser window in pixels."
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
},
|
|
119
|
+
"title": "Browser Window"
|
|
119
120
|
},
|
|
120
121
|
"viewport": {
|
|
121
122
|
"type": "object",
|
|
@@ -130,9 +131,11 @@
|
|
|
130
131
|
"type": "integer",
|
|
131
132
|
"description": "Height of the viewport in pixels."
|
|
132
133
|
}
|
|
133
|
-
}
|
|
134
|
+
},
|
|
135
|
+
"title": "Browser Viewport"
|
|
134
136
|
}
|
|
135
|
-
}
|
|
137
|
+
},
|
|
138
|
+
"title": "Browser"
|
|
136
139
|
},
|
|
137
140
|
{
|
|
138
141
|
"type": "array",
|
|
@@ -186,7 +189,8 @@
|
|
|
186
189
|
"type": "integer",
|
|
187
190
|
"description": "Height of the browser window in pixels."
|
|
188
191
|
}
|
|
189
|
-
}
|
|
192
|
+
},
|
|
193
|
+
"title": "Browser Window"
|
|
190
194
|
},
|
|
191
195
|
"viewport": {
|
|
192
196
|
"type": "object",
|
|
@@ -201,9 +205,11 @@
|
|
|
201
205
|
"type": "integer",
|
|
202
206
|
"description": "Height of the viewport in pixels."
|
|
203
207
|
}
|
|
204
|
-
}
|
|
208
|
+
},
|
|
209
|
+
"title": "Browser Viewport"
|
|
205
210
|
}
|
|
206
|
-
}
|
|
211
|
+
},
|
|
212
|
+
"title": "Browser"
|
|
207
213
|
}
|
|
208
214
|
]
|
|
209
215
|
}
|
|
@@ -269,7 +275,8 @@
|
|
|
269
275
|
"type": "integer",
|
|
270
276
|
"description": "Height of the browser window in pixels."
|
|
271
277
|
}
|
|
272
|
-
}
|
|
278
|
+
},
|
|
279
|
+
"title": "Browser Window"
|
|
273
280
|
},
|
|
274
281
|
"viewport": {
|
|
275
282
|
"type": "object",
|
|
@@ -284,9 +291,11 @@
|
|
|
284
291
|
"type": "integer",
|
|
285
292
|
"description": "Height of the viewport in pixels."
|
|
286
293
|
}
|
|
287
|
-
}
|
|
294
|
+
},
|
|
295
|
+
"title": "Browser Viewport"
|
|
288
296
|
}
|
|
289
|
-
}
|
|
297
|
+
},
|
|
298
|
+
"title": "Browser"
|
|
290
299
|
}
|
|
291
300
|
}
|
|
292
301
|
},
|
|
@@ -423,7 +432,8 @@
|
|
|
423
432
|
"type": "object",
|
|
424
433
|
"readOnly": true,
|
|
425
434
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
426
|
-
"additionalProperties": true
|
|
435
|
+
"additionalProperties": true,
|
|
436
|
+
"title": "OpenAPI definition"
|
|
427
437
|
},
|
|
428
438
|
"operationId": {
|
|
429
439
|
"type": "string",
|
|
@@ -475,7 +485,8 @@
|
|
|
475
485
|
"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.",
|
|
476
486
|
"additionalProperties": {
|
|
477
487
|
"type": "string"
|
|
478
|
-
}
|
|
488
|
+
},
|
|
489
|
+
"title": "OpenAPI request headers"
|
|
479
490
|
}
|
|
480
491
|
},
|
|
481
492
|
"components": {
|
|
@@ -561,7 +572,8 @@
|
|
|
561
572
|
"required": [
|
|
562
573
|
"name",
|
|
563
574
|
"descriptionPath"
|
|
564
|
-
]
|
|
575
|
+
],
|
|
576
|
+
"title": "OpenAPI description (test)"
|
|
565
577
|
}
|
|
566
578
|
]
|
|
567
579
|
}
|
|
@@ -608,7 +620,8 @@
|
|
|
608
620
|
"type": "string",
|
|
609
621
|
"description": "Runtime expression for a user-defined output value."
|
|
610
622
|
}
|
|
611
|
-
}
|
|
623
|
+
},
|
|
624
|
+
"title": "Outputs (step)"
|
|
612
625
|
},
|
|
613
626
|
"variables": {
|
|
614
627
|
"type": "object",
|
|
@@ -619,9 +632,11 @@
|
|
|
619
632
|
"type": "string",
|
|
620
633
|
"description": "Runtime expression for a user-defined output value."
|
|
621
634
|
}
|
|
622
|
-
}
|
|
635
|
+
},
|
|
636
|
+
"title": "Variables (step)"
|
|
623
637
|
}
|
|
624
|
-
}
|
|
638
|
+
},
|
|
639
|
+
"title": "Common"
|
|
625
640
|
},
|
|
626
641
|
"stepId": {
|
|
627
642
|
"type": "string",
|
|
@@ -640,7 +655,8 @@
|
|
|
640
655
|
"type": "string",
|
|
641
656
|
"description": "Runtime expression for a user-defined output value."
|
|
642
657
|
}
|
|
643
|
-
}
|
|
658
|
+
},
|
|
659
|
+
"title": "Outputs (step)"
|
|
644
660
|
},
|
|
645
661
|
"variables": {
|
|
646
662
|
"type": "object",
|
|
@@ -651,7 +667,8 @@
|
|
|
651
667
|
"type": "string",
|
|
652
668
|
"description": "Runtime expression for a user-defined output value."
|
|
653
669
|
}
|
|
654
|
-
}
|
|
670
|
+
},
|
|
671
|
+
"title": "Variables (step)"
|
|
655
672
|
}
|
|
656
673
|
}
|
|
657
674
|
},
|
|
@@ -681,7 +698,8 @@
|
|
|
681
698
|
"type": "string",
|
|
682
699
|
"description": "Runtime expression for a user-defined output value."
|
|
683
700
|
}
|
|
684
|
-
}
|
|
701
|
+
},
|
|
702
|
+
"title": "Outputs (step)"
|
|
685
703
|
},
|
|
686
704
|
"variables": {
|
|
687
705
|
"type": "object",
|
|
@@ -692,9 +710,11 @@
|
|
|
692
710
|
"type": "string",
|
|
693
711
|
"description": "Runtime expression for a user-defined output value."
|
|
694
712
|
}
|
|
695
|
-
}
|
|
713
|
+
},
|
|
714
|
+
"title": "Variables (step)"
|
|
696
715
|
}
|
|
697
|
-
}
|
|
716
|
+
},
|
|
717
|
+
"title": "Common"
|
|
698
718
|
},
|
|
699
719
|
{
|
|
700
720
|
"type": "object",
|
|
@@ -707,6 +727,7 @@
|
|
|
707
727
|
"title": "checkLink",
|
|
708
728
|
"anyOf": [
|
|
709
729
|
{
|
|
730
|
+
"title": "Check link (detailed)",
|
|
710
731
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
711
732
|
"type": "string",
|
|
712
733
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -715,6 +736,7 @@
|
|
|
715
736
|
]
|
|
716
737
|
},
|
|
717
738
|
{
|
|
739
|
+
"title": "Check link (detailed)",
|
|
718
740
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
719
741
|
"type": "object",
|
|
720
742
|
"additionalProperties": false,
|
|
@@ -768,6 +790,7 @@
|
|
|
768
790
|
"components": {
|
|
769
791
|
"schemas": {
|
|
770
792
|
"string": {
|
|
793
|
+
"title": "Check link (detailed)",
|
|
771
794
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
772
795
|
"type": "string",
|
|
773
796
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -776,6 +799,7 @@
|
|
|
776
799
|
]
|
|
777
800
|
},
|
|
778
801
|
"object": {
|
|
802
|
+
"title": "Check link (detailed)",
|
|
779
803
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
780
804
|
"type": "object",
|
|
781
805
|
"additionalProperties": false,
|
|
@@ -843,7 +867,8 @@
|
|
|
843
867
|
}
|
|
844
868
|
]
|
|
845
869
|
}
|
|
846
|
-
}
|
|
870
|
+
},
|
|
871
|
+
"title": "checkLink"
|
|
847
872
|
}
|
|
848
873
|
]
|
|
849
874
|
},
|
|
@@ -872,7 +897,8 @@
|
|
|
872
897
|
"type": "string",
|
|
873
898
|
"description": "Runtime expression for a user-defined output value."
|
|
874
899
|
}
|
|
875
|
-
}
|
|
900
|
+
},
|
|
901
|
+
"title": "Outputs (step)"
|
|
876
902
|
},
|
|
877
903
|
"variables": {
|
|
878
904
|
"type": "object",
|
|
@@ -883,9 +909,11 @@
|
|
|
883
909
|
"type": "string",
|
|
884
910
|
"description": "Runtime expression for a user-defined output value."
|
|
885
911
|
}
|
|
886
|
-
}
|
|
912
|
+
},
|
|
913
|
+
"title": "Variables (step)"
|
|
887
914
|
}
|
|
888
|
-
}
|
|
915
|
+
},
|
|
916
|
+
"title": "Common"
|
|
889
917
|
},
|
|
890
918
|
{
|
|
891
919
|
"type": "object",
|
|
@@ -899,7 +927,7 @@
|
|
|
899
927
|
"description": "Click or tap an element.",
|
|
900
928
|
"anyOf": [
|
|
901
929
|
{
|
|
902
|
-
"title": "
|
|
930
|
+
"title": "Click element (simple)",
|
|
903
931
|
"type": "string",
|
|
904
932
|
"description": "Display text or selector of the element to find."
|
|
905
933
|
},
|
|
@@ -945,7 +973,7 @@
|
|
|
945
973
|
"components": {
|
|
946
974
|
"schemas": {
|
|
947
975
|
"string": {
|
|
948
|
-
"title": "
|
|
976
|
+
"title": "Click element (simple)",
|
|
949
977
|
"type": "string",
|
|
950
978
|
"description": "Display text or selector of the element to find."
|
|
951
979
|
},
|
|
@@ -1009,7 +1037,8 @@
|
|
|
1009
1037
|
}
|
|
1010
1038
|
]
|
|
1011
1039
|
}
|
|
1012
|
-
}
|
|
1040
|
+
},
|
|
1041
|
+
"title": "click"
|
|
1013
1042
|
}
|
|
1014
1043
|
]
|
|
1015
1044
|
},
|
|
@@ -1038,7 +1067,8 @@
|
|
|
1038
1067
|
"type": "string",
|
|
1039
1068
|
"description": "Runtime expression for a user-defined output value."
|
|
1040
1069
|
}
|
|
1041
|
-
}
|
|
1070
|
+
},
|
|
1071
|
+
"title": "Outputs (step)"
|
|
1042
1072
|
},
|
|
1043
1073
|
"variables": {
|
|
1044
1074
|
"type": "object",
|
|
@@ -1049,9 +1079,11 @@
|
|
|
1049
1079
|
"type": "string",
|
|
1050
1080
|
"description": "Runtime expression for a user-defined output value."
|
|
1051
1081
|
}
|
|
1052
|
-
}
|
|
1082
|
+
},
|
|
1083
|
+
"title": "Variables (step)"
|
|
1053
1084
|
}
|
|
1054
|
-
}
|
|
1085
|
+
},
|
|
1086
|
+
"title": "Common"
|
|
1055
1087
|
},
|
|
1056
1088
|
{
|
|
1057
1089
|
"type": "object",
|
|
@@ -1113,7 +1145,7 @@
|
|
|
1113
1145
|
"description": "Click or tap an element.",
|
|
1114
1146
|
"anyOf": [
|
|
1115
1147
|
{
|
|
1116
|
-
"title": "
|
|
1148
|
+
"title": "Click element (simple)",
|
|
1117
1149
|
"type": "string",
|
|
1118
1150
|
"description": "Display text or selector of the element to find."
|
|
1119
1151
|
},
|
|
@@ -1159,7 +1191,7 @@
|
|
|
1159
1191
|
"components": {
|
|
1160
1192
|
"schemas": {
|
|
1161
1193
|
"string": {
|
|
1162
|
-
"title": "
|
|
1194
|
+
"title": "Click element (simple)",
|
|
1163
1195
|
"type": "string",
|
|
1164
1196
|
"description": "Display text or selector of the element to find."
|
|
1165
1197
|
},
|
|
@@ -1235,7 +1267,8 @@
|
|
|
1235
1267
|
"middle"
|
|
1236
1268
|
]
|
|
1237
1269
|
}
|
|
1238
|
-
}
|
|
1270
|
+
},
|
|
1271
|
+
"title": "Find element and click"
|
|
1239
1272
|
}
|
|
1240
1273
|
]
|
|
1241
1274
|
},
|
|
@@ -1248,6 +1281,7 @@
|
|
|
1248
1281
|
"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$`.",
|
|
1249
1282
|
"anyOf": [
|
|
1250
1283
|
{
|
|
1284
|
+
"title": "Type keys (simple)",
|
|
1251
1285
|
"description": "Sequence of keys to enter.",
|
|
1252
1286
|
"anyOf": [
|
|
1253
1287
|
{
|
|
@@ -1266,9 +1300,11 @@
|
|
|
1266
1300
|
]
|
|
1267
1301
|
},
|
|
1268
1302
|
{
|
|
1303
|
+
"title": "Type keys (detailed)",
|
|
1269
1304
|
"type": "object",
|
|
1270
1305
|
"properties": {
|
|
1271
1306
|
"keys": {
|
|
1307
|
+
"title": "Type keys (simple)",
|
|
1272
1308
|
"description": "Sequence of keys to enter.",
|
|
1273
1309
|
"anyOf": [
|
|
1274
1310
|
{
|
|
@@ -1305,6 +1341,7 @@
|
|
|
1305
1341
|
"components": {
|
|
1306
1342
|
"schemas": {
|
|
1307
1343
|
"keys": {
|
|
1344
|
+
"title": "Type keys (simple)",
|
|
1308
1345
|
"description": "Sequence of keys to enter.",
|
|
1309
1346
|
"anyOf": [
|
|
1310
1347
|
{
|
|
@@ -1323,9 +1360,11 @@
|
|
|
1323
1360
|
]
|
|
1324
1361
|
},
|
|
1325
1362
|
"object": {
|
|
1363
|
+
"title": "Type keys (detailed)",
|
|
1326
1364
|
"type": "object",
|
|
1327
1365
|
"properties": {
|
|
1328
1366
|
"keys": {
|
|
1367
|
+
"title": "Type keys (simple)",
|
|
1329
1368
|
"description": "Sequence of keys to enter.",
|
|
1330
1369
|
"anyOf": [
|
|
1331
1370
|
{
|
|
@@ -1392,7 +1431,8 @@
|
|
|
1392
1431
|
"required": [
|
|
1393
1432
|
"selector",
|
|
1394
1433
|
"elementText"
|
|
1395
|
-
]
|
|
1434
|
+
],
|
|
1435
|
+
"title": "Find element and type"
|
|
1396
1436
|
}
|
|
1397
1437
|
}
|
|
1398
1438
|
]
|
|
@@ -1451,7 +1491,7 @@
|
|
|
1451
1491
|
"description": "Click or tap an element.",
|
|
1452
1492
|
"anyOf": [
|
|
1453
1493
|
{
|
|
1454
|
-
"title": "
|
|
1494
|
+
"title": "Click element (simple)",
|
|
1455
1495
|
"type": "string",
|
|
1456
1496
|
"description": "Display text or selector of the element to find."
|
|
1457
1497
|
},
|
|
@@ -1497,7 +1537,7 @@
|
|
|
1497
1537
|
"components": {
|
|
1498
1538
|
"schemas": {
|
|
1499
1539
|
"string": {
|
|
1500
|
-
"title": "
|
|
1540
|
+
"title": "Click element (simple)",
|
|
1501
1541
|
"type": "string",
|
|
1502
1542
|
"description": "Display text or selector of the element to find."
|
|
1503
1543
|
},
|
|
@@ -1573,7 +1613,8 @@
|
|
|
1573
1613
|
"middle"
|
|
1574
1614
|
]
|
|
1575
1615
|
}
|
|
1576
|
-
}
|
|
1616
|
+
},
|
|
1617
|
+
"title": "Find element and click"
|
|
1577
1618
|
}
|
|
1578
1619
|
]
|
|
1579
1620
|
},
|
|
@@ -1586,6 +1627,7 @@
|
|
|
1586
1627
|
"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$`.",
|
|
1587
1628
|
"anyOf": [
|
|
1588
1629
|
{
|
|
1630
|
+
"title": "Type keys (simple)",
|
|
1589
1631
|
"description": "Sequence of keys to enter.",
|
|
1590
1632
|
"anyOf": [
|
|
1591
1633
|
{
|
|
@@ -1604,9 +1646,11 @@
|
|
|
1604
1646
|
]
|
|
1605
1647
|
},
|
|
1606
1648
|
{
|
|
1649
|
+
"title": "Type keys (detailed)",
|
|
1607
1650
|
"type": "object",
|
|
1608
1651
|
"properties": {
|
|
1609
1652
|
"keys": {
|
|
1653
|
+
"title": "Type keys (simple)",
|
|
1610
1654
|
"description": "Sequence of keys to enter.",
|
|
1611
1655
|
"anyOf": [
|
|
1612
1656
|
{
|
|
@@ -1643,6 +1687,7 @@
|
|
|
1643
1687
|
"components": {
|
|
1644
1688
|
"schemas": {
|
|
1645
1689
|
"keys": {
|
|
1690
|
+
"title": "Type keys (simple)",
|
|
1646
1691
|
"description": "Sequence of keys to enter.",
|
|
1647
1692
|
"anyOf": [
|
|
1648
1693
|
{
|
|
@@ -1661,9 +1706,11 @@
|
|
|
1661
1706
|
]
|
|
1662
1707
|
},
|
|
1663
1708
|
"object": {
|
|
1709
|
+
"title": "Type keys (detailed)",
|
|
1664
1710
|
"type": "object",
|
|
1665
1711
|
"properties": {
|
|
1666
1712
|
"keys": {
|
|
1713
|
+
"title": "Type keys (simple)",
|
|
1667
1714
|
"description": "Sequence of keys to enter.",
|
|
1668
1715
|
"anyOf": [
|
|
1669
1716
|
{
|
|
@@ -1730,7 +1777,8 @@
|
|
|
1730
1777
|
"required": [
|
|
1731
1778
|
"selector",
|
|
1732
1779
|
"elementText"
|
|
1733
|
-
]
|
|
1780
|
+
],
|
|
1781
|
+
"title": "Find element and type"
|
|
1734
1782
|
}
|
|
1735
1783
|
}
|
|
1736
1784
|
]
|
|
@@ -1773,7 +1821,8 @@
|
|
|
1773
1821
|
}
|
|
1774
1822
|
]
|
|
1775
1823
|
}
|
|
1776
|
-
}
|
|
1824
|
+
},
|
|
1825
|
+
"title": "find"
|
|
1777
1826
|
}
|
|
1778
1827
|
]
|
|
1779
1828
|
},
|
|
@@ -1802,7 +1851,8 @@
|
|
|
1802
1851
|
"type": "string",
|
|
1803
1852
|
"description": "Runtime expression for a user-defined output value."
|
|
1804
1853
|
}
|
|
1805
|
-
}
|
|
1854
|
+
},
|
|
1855
|
+
"title": "Outputs (step)"
|
|
1806
1856
|
},
|
|
1807
1857
|
"variables": {
|
|
1808
1858
|
"type": "object",
|
|
@@ -1813,9 +1863,11 @@
|
|
|
1813
1863
|
"type": "string",
|
|
1814
1864
|
"description": "Runtime expression for a user-defined output value."
|
|
1815
1865
|
}
|
|
1816
|
-
}
|
|
1866
|
+
},
|
|
1867
|
+
"title": "Variables (step)"
|
|
1817
1868
|
}
|
|
1818
|
-
}
|
|
1869
|
+
},
|
|
1870
|
+
"title": "Common"
|
|
1819
1871
|
},
|
|
1820
1872
|
{
|
|
1821
1873
|
"type": "object",
|
|
@@ -1828,6 +1880,7 @@
|
|
|
1828
1880
|
"title": "goTo",
|
|
1829
1881
|
"anyOf": [
|
|
1830
1882
|
{
|
|
1883
|
+
"title": "Go to URL (simple)",
|
|
1831
1884
|
"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.",
|
|
1832
1885
|
"type": "string",
|
|
1833
1886
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -1858,12 +1911,14 @@
|
|
|
1858
1911
|
"trim"
|
|
1859
1912
|
]
|
|
1860
1913
|
}
|
|
1861
|
-
}
|
|
1914
|
+
},
|
|
1915
|
+
"title": "Go to URL (detailed)"
|
|
1862
1916
|
}
|
|
1863
1917
|
],
|
|
1864
1918
|
"components": {
|
|
1865
1919
|
"schemas": {
|
|
1866
1920
|
"string": {
|
|
1921
|
+
"title": "Go to URL (simple)",
|
|
1867
1922
|
"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.",
|
|
1868
1923
|
"type": "string",
|
|
1869
1924
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -1894,7 +1949,8 @@
|
|
|
1894
1949
|
"trim"
|
|
1895
1950
|
]
|
|
1896
1951
|
}
|
|
1897
|
-
}
|
|
1952
|
+
},
|
|
1953
|
+
"title": "Go to URL (detailed)"
|
|
1898
1954
|
}
|
|
1899
1955
|
}
|
|
1900
1956
|
},
|
|
@@ -1910,7 +1966,8 @@
|
|
|
1910
1966
|
}
|
|
1911
1967
|
]
|
|
1912
1968
|
}
|
|
1913
|
-
}
|
|
1969
|
+
},
|
|
1970
|
+
"title": "goTo"
|
|
1914
1971
|
}
|
|
1915
1972
|
]
|
|
1916
1973
|
},
|
|
@@ -1939,7 +1996,8 @@
|
|
|
1939
1996
|
"type": "string",
|
|
1940
1997
|
"description": "Runtime expression for a user-defined output value."
|
|
1941
1998
|
}
|
|
1942
|
-
}
|
|
1999
|
+
},
|
|
2000
|
+
"title": "Outputs (step)"
|
|
1943
2001
|
},
|
|
1944
2002
|
"variables": {
|
|
1945
2003
|
"type": "object",
|
|
@@ -1950,9 +2008,11 @@
|
|
|
1950
2008
|
"type": "string",
|
|
1951
2009
|
"description": "Runtime expression for a user-defined output value."
|
|
1952
2010
|
}
|
|
1953
|
-
}
|
|
2011
|
+
},
|
|
2012
|
+
"title": "Variables (step)"
|
|
1954
2013
|
}
|
|
1955
|
-
}
|
|
2014
|
+
},
|
|
2015
|
+
"title": "Common"
|
|
1956
2016
|
},
|
|
1957
2017
|
{
|
|
1958
2018
|
"type": "object",
|
|
@@ -1966,7 +2026,7 @@
|
|
|
1966
2026
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
1967
2027
|
"anyOf": [
|
|
1968
2028
|
{
|
|
1969
|
-
"title": "
|
|
2029
|
+
"title": "HTTP request (simple)",
|
|
1970
2030
|
"type": "string",
|
|
1971
2031
|
"description": "URL for the HTTP request.",
|
|
1972
2032
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -1975,6 +2035,7 @@
|
|
|
1975
2035
|
]
|
|
1976
2036
|
},
|
|
1977
2037
|
{
|
|
2038
|
+
"title": "HTTP request (detailed)",
|
|
1978
2039
|
"type": "object",
|
|
1979
2040
|
"anyOf": [
|
|
1980
2041
|
{
|
|
@@ -1991,7 +2052,7 @@
|
|
|
1991
2052
|
"additionalProperties": false,
|
|
1992
2053
|
"properties": {
|
|
1993
2054
|
"url": {
|
|
1994
|
-
"title": "
|
|
2055
|
+
"title": "HTTP request (simple)",
|
|
1995
2056
|
"type": "string",
|
|
1996
2057
|
"description": "URL for the HTTP request.",
|
|
1997
2058
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2047,7 +2108,8 @@
|
|
|
2047
2108
|
"type": "object",
|
|
2048
2109
|
"readOnly": true,
|
|
2049
2110
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
2050
|
-
"additionalProperties": true
|
|
2111
|
+
"additionalProperties": true,
|
|
2112
|
+
"title": "OpenAPI definition"
|
|
2051
2113
|
},
|
|
2052
2114
|
"operationId": {
|
|
2053
2115
|
"type": "string",
|
|
@@ -2099,7 +2161,8 @@
|
|
|
2099
2161
|
"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.",
|
|
2100
2162
|
"additionalProperties": {
|
|
2101
2163
|
"type": "string"
|
|
2102
|
-
}
|
|
2164
|
+
},
|
|
2165
|
+
"title": "OpenAPI request headers"
|
|
2103
2166
|
}
|
|
2104
2167
|
},
|
|
2105
2168
|
"components": {
|
|
@@ -2179,7 +2242,8 @@
|
|
|
2179
2242
|
"type": "object",
|
|
2180
2243
|
"required": [
|
|
2181
2244
|
"operationId"
|
|
2182
|
-
]
|
|
2245
|
+
],
|
|
2246
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
2183
2247
|
}
|
|
2184
2248
|
]
|
|
2185
2249
|
}
|
|
@@ -2230,34 +2294,43 @@
|
|
|
2230
2294
|
"type": "object",
|
|
2231
2295
|
"additionalProperties": true,
|
|
2232
2296
|
"properties": {},
|
|
2233
|
-
"default": {}
|
|
2297
|
+
"default": {},
|
|
2298
|
+
"title": "Request headers"
|
|
2234
2299
|
},
|
|
2235
2300
|
"parameters": {
|
|
2236
2301
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
2237
2302
|
"type": "object",
|
|
2238
2303
|
"additionalProperties": true,
|
|
2239
2304
|
"default": {},
|
|
2240
|
-
"properties": {}
|
|
2305
|
+
"properties": {},
|
|
2306
|
+
"title": "Request parameters"
|
|
2241
2307
|
},
|
|
2242
2308
|
"body": {
|
|
2243
2309
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
2244
2310
|
"anyOf": [
|
|
2245
2311
|
{
|
|
2312
|
+
"title": "Request body object",
|
|
2313
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
2246
2314
|
"type": "object",
|
|
2247
2315
|
"additionalProperties": true,
|
|
2248
2316
|
"properties": {}
|
|
2249
2317
|
},
|
|
2250
2318
|
{
|
|
2319
|
+
"title": "Request body array",
|
|
2320
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
2251
2321
|
"type": "array",
|
|
2252
2322
|
"items": {}
|
|
2253
2323
|
},
|
|
2254
2324
|
{
|
|
2325
|
+
"title": "Request body string",
|
|
2326
|
+
"description": "String to include as the body of the HTTP request.",
|
|
2255
2327
|
"type": "string"
|
|
2256
2328
|
}
|
|
2257
2329
|
],
|
|
2258
2330
|
"default": {}
|
|
2259
2331
|
}
|
|
2260
|
-
}
|
|
2332
|
+
},
|
|
2333
|
+
"title": "Request"
|
|
2261
2334
|
},
|
|
2262
2335
|
"response": {
|
|
2263
2336
|
"type": "object",
|
|
@@ -2268,7 +2341,8 @@
|
|
|
2268
2341
|
"type": "object",
|
|
2269
2342
|
"additionalProperties": true,
|
|
2270
2343
|
"properties": {},
|
|
2271
|
-
"default": {}
|
|
2344
|
+
"default": {},
|
|
2345
|
+
"title": "Response headers"
|
|
2272
2346
|
},
|
|
2273
2347
|
"body": {
|
|
2274
2348
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -2276,19 +2350,26 @@
|
|
|
2276
2350
|
{
|
|
2277
2351
|
"type": "object",
|
|
2278
2352
|
"additionalProperties": true,
|
|
2279
|
-
"properties": {}
|
|
2353
|
+
"properties": {},
|
|
2354
|
+
"title": "Response body object",
|
|
2355
|
+
"description": "JSON key/value pairs expected in the response."
|
|
2280
2356
|
},
|
|
2281
2357
|
{
|
|
2358
|
+
"title": "Response body array",
|
|
2359
|
+
"description": "JSON array expected in the response.",
|
|
2282
2360
|
"type": "array",
|
|
2283
2361
|
"items": {}
|
|
2284
2362
|
},
|
|
2285
2363
|
{
|
|
2364
|
+
"title": "Response body string",
|
|
2365
|
+
"description": "String expected in the response.",
|
|
2286
2366
|
"type": "string"
|
|
2287
2367
|
}
|
|
2288
2368
|
],
|
|
2289
2369
|
"default": {}
|
|
2290
2370
|
}
|
|
2291
|
-
}
|
|
2371
|
+
},
|
|
2372
|
+
"title": "Response"
|
|
2292
2373
|
},
|
|
2293
2374
|
"allowAdditionalFields": {
|
|
2294
2375
|
"type": "boolean",
|
|
@@ -2326,7 +2407,7 @@
|
|
|
2326
2407
|
"components": {
|
|
2327
2408
|
"schemas": {
|
|
2328
2409
|
"url": {
|
|
2329
|
-
"title": "
|
|
2410
|
+
"title": "HTTP request (simple)",
|
|
2330
2411
|
"type": "string",
|
|
2331
2412
|
"description": "URL for the HTTP request.",
|
|
2332
2413
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2335,6 +2416,7 @@
|
|
|
2335
2416
|
]
|
|
2336
2417
|
},
|
|
2337
2418
|
"object": {
|
|
2419
|
+
"title": "HTTP request (detailed)",
|
|
2338
2420
|
"type": "object",
|
|
2339
2421
|
"anyOf": [
|
|
2340
2422
|
{
|
|
@@ -2351,7 +2433,7 @@
|
|
|
2351
2433
|
"additionalProperties": false,
|
|
2352
2434
|
"properties": {
|
|
2353
2435
|
"url": {
|
|
2354
|
-
"title": "
|
|
2436
|
+
"title": "HTTP request (simple)",
|
|
2355
2437
|
"type": "string",
|
|
2356
2438
|
"description": "URL for the HTTP request.",
|
|
2357
2439
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2407,7 +2489,8 @@
|
|
|
2407
2489
|
"type": "object",
|
|
2408
2490
|
"readOnly": true,
|
|
2409
2491
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
2410
|
-
"additionalProperties": true
|
|
2492
|
+
"additionalProperties": true,
|
|
2493
|
+
"title": "OpenAPI definition"
|
|
2411
2494
|
},
|
|
2412
2495
|
"operationId": {
|
|
2413
2496
|
"type": "string",
|
|
@@ -2459,7 +2542,8 @@
|
|
|
2459
2542
|
"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.",
|
|
2460
2543
|
"additionalProperties": {
|
|
2461
2544
|
"type": "string"
|
|
2462
|
-
}
|
|
2545
|
+
},
|
|
2546
|
+
"title": "OpenAPI request headers"
|
|
2463
2547
|
}
|
|
2464
2548
|
},
|
|
2465
2549
|
"components": {
|
|
@@ -2539,7 +2623,8 @@
|
|
|
2539
2623
|
"type": "object",
|
|
2540
2624
|
"required": [
|
|
2541
2625
|
"operationId"
|
|
2542
|
-
]
|
|
2626
|
+
],
|
|
2627
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
2543
2628
|
}
|
|
2544
2629
|
]
|
|
2545
2630
|
}
|
|
@@ -2590,34 +2675,43 @@
|
|
|
2590
2675
|
"type": "object",
|
|
2591
2676
|
"additionalProperties": true,
|
|
2592
2677
|
"properties": {},
|
|
2593
|
-
"default": {}
|
|
2678
|
+
"default": {},
|
|
2679
|
+
"title": "Request headers"
|
|
2594
2680
|
},
|
|
2595
2681
|
"parameters": {
|
|
2596
2682
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
2597
2683
|
"type": "object",
|
|
2598
2684
|
"additionalProperties": true,
|
|
2599
2685
|
"default": {},
|
|
2600
|
-
"properties": {}
|
|
2686
|
+
"properties": {},
|
|
2687
|
+
"title": "Request parameters"
|
|
2601
2688
|
},
|
|
2602
2689
|
"body": {
|
|
2603
2690
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
2604
2691
|
"anyOf": [
|
|
2605
2692
|
{
|
|
2693
|
+
"title": "Request body object",
|
|
2694
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
2606
2695
|
"type": "object",
|
|
2607
2696
|
"additionalProperties": true,
|
|
2608
2697
|
"properties": {}
|
|
2609
2698
|
},
|
|
2610
2699
|
{
|
|
2700
|
+
"title": "Request body array",
|
|
2701
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
2611
2702
|
"type": "array",
|
|
2612
2703
|
"items": {}
|
|
2613
2704
|
},
|
|
2614
2705
|
{
|
|
2706
|
+
"title": "Request body string",
|
|
2707
|
+
"description": "String to include as the body of the HTTP request.",
|
|
2615
2708
|
"type": "string"
|
|
2616
2709
|
}
|
|
2617
2710
|
],
|
|
2618
2711
|
"default": {}
|
|
2619
2712
|
}
|
|
2620
|
-
}
|
|
2713
|
+
},
|
|
2714
|
+
"title": "Request"
|
|
2621
2715
|
},
|
|
2622
2716
|
"response": {
|
|
2623
2717
|
"type": "object",
|
|
@@ -2628,7 +2722,8 @@
|
|
|
2628
2722
|
"type": "object",
|
|
2629
2723
|
"additionalProperties": true,
|
|
2630
2724
|
"properties": {},
|
|
2631
|
-
"default": {}
|
|
2725
|
+
"default": {},
|
|
2726
|
+
"title": "Response headers"
|
|
2632
2727
|
},
|
|
2633
2728
|
"body": {
|
|
2634
2729
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -2636,19 +2731,26 @@
|
|
|
2636
2731
|
{
|
|
2637
2732
|
"type": "object",
|
|
2638
2733
|
"additionalProperties": true,
|
|
2639
|
-
"properties": {}
|
|
2734
|
+
"properties": {},
|
|
2735
|
+
"title": "Response body object",
|
|
2736
|
+
"description": "JSON key/value pairs expected in the response."
|
|
2640
2737
|
},
|
|
2641
2738
|
{
|
|
2739
|
+
"title": "Response body array",
|
|
2740
|
+
"description": "JSON array expected in the response.",
|
|
2642
2741
|
"type": "array",
|
|
2643
2742
|
"items": {}
|
|
2644
2743
|
},
|
|
2645
2744
|
{
|
|
2745
|
+
"title": "Response body string",
|
|
2746
|
+
"description": "String expected in the response.",
|
|
2646
2747
|
"type": "string"
|
|
2647
2748
|
}
|
|
2648
2749
|
],
|
|
2649
2750
|
"default": {}
|
|
2650
2751
|
}
|
|
2651
|
-
}
|
|
2752
|
+
},
|
|
2753
|
+
"title": "Response"
|
|
2652
2754
|
},
|
|
2653
2755
|
"allowAdditionalFields": {
|
|
2654
2756
|
"type": "boolean",
|
|
@@ -2823,7 +2925,8 @@
|
|
|
2823
2925
|
}
|
|
2824
2926
|
]
|
|
2825
2927
|
}
|
|
2826
|
-
}
|
|
2928
|
+
},
|
|
2929
|
+
"title": "httpRequest"
|
|
2827
2930
|
}
|
|
2828
2931
|
]
|
|
2829
2932
|
},
|
|
@@ -2852,7 +2955,8 @@
|
|
|
2852
2955
|
"type": "string",
|
|
2853
2956
|
"description": "Runtime expression for a user-defined output value."
|
|
2854
2957
|
}
|
|
2855
|
-
}
|
|
2958
|
+
},
|
|
2959
|
+
"title": "Outputs (step)"
|
|
2856
2960
|
},
|
|
2857
2961
|
"variables": {
|
|
2858
2962
|
"type": "object",
|
|
@@ -2863,9 +2967,11 @@
|
|
|
2863
2967
|
"type": "string",
|
|
2864
2968
|
"description": "Runtime expression for a user-defined output value."
|
|
2865
2969
|
}
|
|
2866
|
-
}
|
|
2970
|
+
},
|
|
2971
|
+
"title": "Variables (step)"
|
|
2867
2972
|
}
|
|
2868
|
-
}
|
|
2973
|
+
},
|
|
2974
|
+
"title": "Common"
|
|
2869
2975
|
},
|
|
2870
2976
|
{
|
|
2871
2977
|
"type": "object",
|
|
@@ -2879,6 +2985,8 @@
|
|
|
2879
2985
|
"description": "Perform a native shell command.",
|
|
2880
2986
|
"anyOf": [
|
|
2881
2987
|
{
|
|
2988
|
+
"title": "Run shell command (simple)",
|
|
2989
|
+
"description": "Command to perform in the machine's default shell.",
|
|
2882
2990
|
"type": "string",
|
|
2883
2991
|
"transform": [
|
|
2884
2992
|
"trim"
|
|
@@ -2960,12 +3068,15 @@
|
|
|
2960
3068
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
2961
3069
|
"default": 60000
|
|
2962
3070
|
}
|
|
2963
|
-
}
|
|
3071
|
+
},
|
|
3072
|
+
"title": "Run shell command (detailed)"
|
|
2964
3073
|
}
|
|
2965
3074
|
],
|
|
2966
3075
|
"components": {
|
|
2967
3076
|
"schemas": {
|
|
2968
3077
|
"string": {
|
|
3078
|
+
"title": "Run shell command (simple)",
|
|
3079
|
+
"description": "Command to perform in the machine's default shell.",
|
|
2969
3080
|
"type": "string",
|
|
2970
3081
|
"transform": [
|
|
2971
3082
|
"trim"
|
|
@@ -3047,7 +3158,8 @@
|
|
|
3047
3158
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3048
3159
|
"default": 60000
|
|
3049
3160
|
}
|
|
3050
|
-
}
|
|
3161
|
+
},
|
|
3162
|
+
"title": "Run shell command (detailed)"
|
|
3051
3163
|
}
|
|
3052
3164
|
}
|
|
3053
3165
|
},
|
|
@@ -3103,7 +3215,8 @@
|
|
|
3103
3215
|
}
|
|
3104
3216
|
]
|
|
3105
3217
|
}
|
|
3106
|
-
}
|
|
3218
|
+
},
|
|
3219
|
+
"title": "runShell"
|
|
3107
3220
|
}
|
|
3108
3221
|
]
|
|
3109
3222
|
},
|
|
@@ -3132,7 +3245,8 @@
|
|
|
3132
3245
|
"type": "string",
|
|
3133
3246
|
"description": "Runtime expression for a user-defined output value."
|
|
3134
3247
|
}
|
|
3135
|
-
}
|
|
3248
|
+
},
|
|
3249
|
+
"title": "Outputs (step)"
|
|
3136
3250
|
},
|
|
3137
3251
|
"variables": {
|
|
3138
3252
|
"type": "object",
|
|
@@ -3143,9 +3257,11 @@
|
|
|
3143
3257
|
"type": "string",
|
|
3144
3258
|
"description": "Runtime expression for a user-defined output value."
|
|
3145
3259
|
}
|
|
3146
|
-
}
|
|
3260
|
+
},
|
|
3261
|
+
"title": "Variables (step)"
|
|
3147
3262
|
}
|
|
3148
|
-
}
|
|
3263
|
+
},
|
|
3264
|
+
"title": "Common"
|
|
3149
3265
|
},
|
|
3150
3266
|
{
|
|
3151
3267
|
"type": "object",
|
|
@@ -3243,7 +3359,8 @@
|
|
|
3243
3359
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3244
3360
|
"default": 60000
|
|
3245
3361
|
}
|
|
3246
|
-
}
|
|
3362
|
+
},
|
|
3363
|
+
"title": "Run code (detailed)"
|
|
3247
3364
|
}
|
|
3248
3365
|
],
|
|
3249
3366
|
"components": {
|
|
@@ -3333,7 +3450,8 @@
|
|
|
3333
3450
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3334
3451
|
"default": 60000
|
|
3335
3452
|
}
|
|
3336
|
-
}
|
|
3453
|
+
},
|
|
3454
|
+
"title": "Run code (detailed)"
|
|
3337
3455
|
}
|
|
3338
3456
|
}
|
|
3339
3457
|
},
|
|
@@ -3373,7 +3491,8 @@
|
|
|
3373
3491
|
}
|
|
3374
3492
|
]
|
|
3375
3493
|
}
|
|
3376
|
-
}
|
|
3494
|
+
},
|
|
3495
|
+
"title": "runCode"
|
|
3377
3496
|
}
|
|
3378
3497
|
]
|
|
3379
3498
|
},
|
|
@@ -3402,7 +3521,8 @@
|
|
|
3402
3521
|
"type": "string",
|
|
3403
3522
|
"description": "Runtime expression for a user-defined output value."
|
|
3404
3523
|
}
|
|
3405
|
-
}
|
|
3524
|
+
},
|
|
3525
|
+
"title": "Outputs (step)"
|
|
3406
3526
|
},
|
|
3407
3527
|
"variables": {
|
|
3408
3528
|
"type": "object",
|
|
@@ -3413,9 +3533,11 @@
|
|
|
3413
3533
|
"type": "string",
|
|
3414
3534
|
"description": "Runtime expression for a user-defined output value."
|
|
3415
3535
|
}
|
|
3416
|
-
}
|
|
3536
|
+
},
|
|
3537
|
+
"title": "Variables (step)"
|
|
3417
3538
|
}
|
|
3418
|
-
}
|
|
3539
|
+
},
|
|
3540
|
+
"title": "Common"
|
|
3419
3541
|
},
|
|
3420
3542
|
{
|
|
3421
3543
|
"type": "object",
|
|
@@ -3429,6 +3551,7 @@
|
|
|
3429
3551
|
"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$`.",
|
|
3430
3552
|
"anyOf": [
|
|
3431
3553
|
{
|
|
3554
|
+
"title": "Type keys (simple)",
|
|
3432
3555
|
"description": "Sequence of keys to enter.",
|
|
3433
3556
|
"anyOf": [
|
|
3434
3557
|
{
|
|
@@ -3447,9 +3570,11 @@
|
|
|
3447
3570
|
]
|
|
3448
3571
|
},
|
|
3449
3572
|
{
|
|
3573
|
+
"title": "Type keys (detailed)",
|
|
3450
3574
|
"type": "object",
|
|
3451
3575
|
"properties": {
|
|
3452
3576
|
"keys": {
|
|
3577
|
+
"title": "Type keys (simple)",
|
|
3453
3578
|
"description": "Sequence of keys to enter.",
|
|
3454
3579
|
"anyOf": [
|
|
3455
3580
|
{
|
|
@@ -3486,6 +3611,7 @@
|
|
|
3486
3611
|
"components": {
|
|
3487
3612
|
"schemas": {
|
|
3488
3613
|
"keys": {
|
|
3614
|
+
"title": "Type keys (simple)",
|
|
3489
3615
|
"description": "Sequence of keys to enter.",
|
|
3490
3616
|
"anyOf": [
|
|
3491
3617
|
{
|
|
@@ -3504,9 +3630,11 @@
|
|
|
3504
3630
|
]
|
|
3505
3631
|
},
|
|
3506
3632
|
"object": {
|
|
3633
|
+
"title": "Type keys (detailed)",
|
|
3507
3634
|
"type": "object",
|
|
3508
3635
|
"properties": {
|
|
3509
3636
|
"keys": {
|
|
3637
|
+
"title": "Type keys (simple)",
|
|
3510
3638
|
"description": "Sequence of keys to enter.",
|
|
3511
3639
|
"anyOf": [
|
|
3512
3640
|
{
|
|
@@ -3567,7 +3695,8 @@
|
|
|
3567
3695
|
}
|
|
3568
3696
|
]
|
|
3569
3697
|
}
|
|
3570
|
-
}
|
|
3698
|
+
},
|
|
3699
|
+
"title": "type"
|
|
3571
3700
|
}
|
|
3572
3701
|
]
|
|
3573
3702
|
},
|
|
@@ -3596,7 +3725,8 @@
|
|
|
3596
3725
|
"type": "string",
|
|
3597
3726
|
"description": "Runtime expression for a user-defined output value."
|
|
3598
3727
|
}
|
|
3599
|
-
}
|
|
3728
|
+
},
|
|
3729
|
+
"title": "Outputs (step)"
|
|
3600
3730
|
},
|
|
3601
3731
|
"variables": {
|
|
3602
3732
|
"type": "object",
|
|
@@ -3607,9 +3737,11 @@
|
|
|
3607
3737
|
"type": "string",
|
|
3608
3738
|
"description": "Runtime expression for a user-defined output value."
|
|
3609
3739
|
}
|
|
3610
|
-
}
|
|
3740
|
+
},
|
|
3741
|
+
"title": "Variables (step)"
|
|
3611
3742
|
}
|
|
3612
|
-
}
|
|
3743
|
+
},
|
|
3744
|
+
"title": "Common"
|
|
3613
3745
|
},
|
|
3614
3746
|
{
|
|
3615
3747
|
"type": "object",
|
|
@@ -3623,6 +3755,7 @@
|
|
|
3623
3755
|
"description": "Takes a screenshot in PNG format.",
|
|
3624
3756
|
"anyOf": [
|
|
3625
3757
|
{
|
|
3758
|
+
"title": "Screenshot (simple)",
|
|
3626
3759
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3627
3760
|
"type": "string",
|
|
3628
3761
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3635,6 +3768,7 @@
|
|
|
3635
3768
|
"additionalProperties": false,
|
|
3636
3769
|
"properties": {
|
|
3637
3770
|
"path": {
|
|
3771
|
+
"title": "Screenshot (simple)",
|
|
3638
3772
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3639
3773
|
"type": "string",
|
|
3640
3774
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3669,7 +3803,7 @@
|
|
|
3669
3803
|
"crop": {
|
|
3670
3804
|
"anyOf": [
|
|
3671
3805
|
{
|
|
3672
|
-
"title": "Crop by element",
|
|
3806
|
+
"title": "Crop by element (simple)",
|
|
3673
3807
|
"type": "string",
|
|
3674
3808
|
"description": "Display text or selector of the element to screenshot."
|
|
3675
3809
|
},
|
|
@@ -3702,6 +3836,7 @@
|
|
|
3702
3836
|
"padding": {
|
|
3703
3837
|
"anyOf": [
|
|
3704
3838
|
{
|
|
3839
|
+
"title": "Padding (simple)",
|
|
3705
3840
|
"type": "number",
|
|
3706
3841
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
3707
3842
|
"minimum": 0
|
|
@@ -3726,7 +3861,9 @@
|
|
|
3726
3861
|
"type": "number",
|
|
3727
3862
|
"minimum": 0
|
|
3728
3863
|
}
|
|
3729
|
-
}
|
|
3864
|
+
},
|
|
3865
|
+
"title": "Padding (detailed)",
|
|
3866
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
3730
3867
|
}
|
|
3731
3868
|
]
|
|
3732
3869
|
}
|
|
@@ -3734,15 +3871,19 @@
|
|
|
3734
3871
|
}
|
|
3735
3872
|
]
|
|
3736
3873
|
}
|
|
3737
|
-
}
|
|
3874
|
+
},
|
|
3875
|
+
"title": "Capture screenshot (detailed)"
|
|
3738
3876
|
},
|
|
3739
3877
|
{
|
|
3740
|
-
"type": "boolean"
|
|
3878
|
+
"type": "boolean",
|
|
3879
|
+
"title": "Capture screenshot",
|
|
3880
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
3741
3881
|
}
|
|
3742
3882
|
],
|
|
3743
3883
|
"components": {
|
|
3744
3884
|
"schemas": {
|
|
3745
3885
|
"path": {
|
|
3886
|
+
"title": "Screenshot (simple)",
|
|
3746
3887
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3747
3888
|
"type": "string",
|
|
3748
3889
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3755,6 +3896,7 @@
|
|
|
3755
3896
|
"additionalProperties": false,
|
|
3756
3897
|
"properties": {
|
|
3757
3898
|
"path": {
|
|
3899
|
+
"title": "Screenshot (simple)",
|
|
3758
3900
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
3759
3901
|
"type": "string",
|
|
3760
3902
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -3789,7 +3931,7 @@
|
|
|
3789
3931
|
"crop": {
|
|
3790
3932
|
"anyOf": [
|
|
3791
3933
|
{
|
|
3792
|
-
"title": "Crop by element",
|
|
3934
|
+
"title": "Crop by element (simple)",
|
|
3793
3935
|
"type": "string",
|
|
3794
3936
|
"description": "Display text or selector of the element to screenshot."
|
|
3795
3937
|
},
|
|
@@ -3822,6 +3964,7 @@
|
|
|
3822
3964
|
"padding": {
|
|
3823
3965
|
"anyOf": [
|
|
3824
3966
|
{
|
|
3967
|
+
"title": "Padding (simple)",
|
|
3825
3968
|
"type": "number",
|
|
3826
3969
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
3827
3970
|
"minimum": 0
|
|
@@ -3846,7 +3989,9 @@
|
|
|
3846
3989
|
"type": "number",
|
|
3847
3990
|
"minimum": 0
|
|
3848
3991
|
}
|
|
3849
|
-
}
|
|
3992
|
+
},
|
|
3993
|
+
"title": "Padding (detailed)",
|
|
3994
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
3850
3995
|
}
|
|
3851
3996
|
]
|
|
3852
3997
|
}
|
|
@@ -3854,7 +3999,8 @@
|
|
|
3854
3999
|
}
|
|
3855
4000
|
]
|
|
3856
4001
|
}
|
|
3857
|
-
}
|
|
4002
|
+
},
|
|
4003
|
+
"title": "Capture screenshot (detailed)"
|
|
3858
4004
|
},
|
|
3859
4005
|
"crop_element": {
|
|
3860
4006
|
"title": "Crop by element (detailed)",
|
|
@@ -3885,6 +4031,7 @@
|
|
|
3885
4031
|
"padding": {
|
|
3886
4032
|
"anyOf": [
|
|
3887
4033
|
{
|
|
4034
|
+
"title": "Padding (simple)",
|
|
3888
4035
|
"type": "number",
|
|
3889
4036
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
3890
4037
|
"minimum": 0
|
|
@@ -3909,7 +4056,9 @@
|
|
|
3909
4056
|
"type": "number",
|
|
3910
4057
|
"minimum": 0
|
|
3911
4058
|
}
|
|
3912
|
-
}
|
|
4059
|
+
},
|
|
4060
|
+
"title": "Padding (detailed)",
|
|
4061
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
3913
4062
|
}
|
|
3914
4063
|
]
|
|
3915
4064
|
}
|
|
@@ -3935,7 +4084,9 @@
|
|
|
3935
4084
|
"type": "number",
|
|
3936
4085
|
"minimum": 0
|
|
3937
4086
|
}
|
|
3938
|
-
}
|
|
4087
|
+
},
|
|
4088
|
+
"title": "Padding (detailed)",
|
|
4089
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
3939
4090
|
}
|
|
3940
4091
|
}
|
|
3941
4092
|
},
|
|
@@ -3975,7 +4126,8 @@
|
|
|
3975
4126
|
}
|
|
3976
4127
|
]
|
|
3977
4128
|
}
|
|
3978
|
-
}
|
|
4129
|
+
},
|
|
4130
|
+
"title": "screenshot"
|
|
3979
4131
|
}
|
|
3980
4132
|
]
|
|
3981
4133
|
},
|
|
@@ -4004,7 +4156,8 @@
|
|
|
4004
4156
|
"type": "string",
|
|
4005
4157
|
"description": "Runtime expression for a user-defined output value."
|
|
4006
4158
|
}
|
|
4007
|
-
}
|
|
4159
|
+
},
|
|
4160
|
+
"title": "Outputs (step)"
|
|
4008
4161
|
},
|
|
4009
4162
|
"variables": {
|
|
4010
4163
|
"type": "object",
|
|
@@ -4015,9 +4168,11 @@
|
|
|
4015
4168
|
"type": "string",
|
|
4016
4169
|
"description": "Runtime expression for a user-defined output value."
|
|
4017
4170
|
}
|
|
4018
|
-
}
|
|
4171
|
+
},
|
|
4172
|
+
"title": "Variables (step)"
|
|
4019
4173
|
}
|
|
4020
|
-
}
|
|
4174
|
+
},
|
|
4175
|
+
"title": "Common"
|
|
4021
4176
|
},
|
|
4022
4177
|
{
|
|
4023
4178
|
"type": "object",
|
|
@@ -4031,6 +4186,7 @@
|
|
|
4031
4186
|
"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' ]",
|
|
4032
4187
|
"anyOf": [
|
|
4033
4188
|
{
|
|
4189
|
+
"title": "Record (simple)",
|
|
4034
4190
|
"type": "string",
|
|
4035
4191
|
"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`.",
|
|
4036
4192
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4064,15 +4220,19 @@
|
|
|
4064
4220
|
"false"
|
|
4065
4221
|
]
|
|
4066
4222
|
}
|
|
4067
|
-
}
|
|
4223
|
+
},
|
|
4224
|
+
"title": "Record (detailed)"
|
|
4068
4225
|
},
|
|
4069
4226
|
{
|
|
4070
|
-
"type": "boolean"
|
|
4227
|
+
"type": "boolean",
|
|
4228
|
+
"title": "Record (boolean)",
|
|
4229
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
4071
4230
|
}
|
|
4072
4231
|
],
|
|
4073
4232
|
"components": {
|
|
4074
4233
|
"schemas": {
|
|
4075
4234
|
"string": {
|
|
4235
|
+
"title": "Record (simple)",
|
|
4076
4236
|
"type": "string",
|
|
4077
4237
|
"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`.",
|
|
4078
4238
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4106,7 +4266,8 @@
|
|
|
4106
4266
|
"false"
|
|
4107
4267
|
]
|
|
4108
4268
|
}
|
|
4109
|
-
}
|
|
4269
|
+
},
|
|
4270
|
+
"title": "Record (detailed)"
|
|
4110
4271
|
}
|
|
4111
4272
|
}
|
|
4112
4273
|
},
|
|
@@ -4120,7 +4281,8 @@
|
|
|
4120
4281
|
}
|
|
4121
4282
|
]
|
|
4122
4283
|
}
|
|
4123
|
-
}
|
|
4284
|
+
},
|
|
4285
|
+
"title": "record"
|
|
4124
4286
|
}
|
|
4125
4287
|
]
|
|
4126
4288
|
},
|
|
@@ -4149,7 +4311,8 @@
|
|
|
4149
4311
|
"type": "string",
|
|
4150
4312
|
"description": "Runtime expression for a user-defined output value."
|
|
4151
4313
|
}
|
|
4152
|
-
}
|
|
4314
|
+
},
|
|
4315
|
+
"title": "Outputs (step)"
|
|
4153
4316
|
},
|
|
4154
4317
|
"variables": {
|
|
4155
4318
|
"type": "object",
|
|
@@ -4160,9 +4323,11 @@
|
|
|
4160
4323
|
"type": "string",
|
|
4161
4324
|
"description": "Runtime expression for a user-defined output value."
|
|
4162
4325
|
}
|
|
4163
|
-
}
|
|
4326
|
+
},
|
|
4327
|
+
"title": "Variables (step)"
|
|
4164
4328
|
}
|
|
4165
|
-
}
|
|
4329
|
+
},
|
|
4330
|
+
"title": "Common"
|
|
4166
4331
|
},
|
|
4167
4332
|
{
|
|
4168
4333
|
"type": "object",
|
|
@@ -4184,7 +4349,8 @@
|
|
|
4184
4349
|
true
|
|
4185
4350
|
]
|
|
4186
4351
|
}
|
|
4187
|
-
}
|
|
4352
|
+
},
|
|
4353
|
+
"title": "stopRecord"
|
|
4188
4354
|
}
|
|
4189
4355
|
]
|
|
4190
4356
|
},
|
|
@@ -4213,7 +4379,8 @@
|
|
|
4213
4379
|
"type": "string",
|
|
4214
4380
|
"description": "Runtime expression for a user-defined output value."
|
|
4215
4381
|
}
|
|
4216
|
-
}
|
|
4382
|
+
},
|
|
4383
|
+
"title": "Outputs (step)"
|
|
4217
4384
|
},
|
|
4218
4385
|
"variables": {
|
|
4219
4386
|
"type": "object",
|
|
@@ -4224,11 +4391,15 @@
|
|
|
4224
4391
|
"type": "string",
|
|
4225
4392
|
"description": "Runtime expression for a user-defined output value."
|
|
4226
4393
|
}
|
|
4227
|
-
}
|
|
4394
|
+
},
|
|
4395
|
+
"title": "Variables (step)"
|
|
4228
4396
|
}
|
|
4229
|
-
}
|
|
4397
|
+
},
|
|
4398
|
+
"title": "Common"
|
|
4230
4399
|
},
|
|
4231
4400
|
{
|
|
4401
|
+
"title": "loadVariables",
|
|
4402
|
+
"type": "object",
|
|
4232
4403
|
"required": [
|
|
4233
4404
|
"loadVariables"
|
|
4234
4405
|
],
|
|
@@ -4271,7 +4442,8 @@
|
|
|
4271
4442
|
"type": "string",
|
|
4272
4443
|
"description": "Runtime expression for a user-defined output value."
|
|
4273
4444
|
}
|
|
4274
|
-
}
|
|
4445
|
+
},
|
|
4446
|
+
"title": "Outputs (step)"
|
|
4275
4447
|
},
|
|
4276
4448
|
"variables": {
|
|
4277
4449
|
"type": "object",
|
|
@@ -4282,11 +4454,15 @@
|
|
|
4282
4454
|
"type": "string",
|
|
4283
4455
|
"description": "Runtime expression for a user-defined output value."
|
|
4284
4456
|
}
|
|
4285
|
-
}
|
|
4457
|
+
},
|
|
4458
|
+
"title": "Variables (step)"
|
|
4286
4459
|
}
|
|
4287
|
-
}
|
|
4460
|
+
},
|
|
4461
|
+
"title": "Common"
|
|
4288
4462
|
},
|
|
4289
4463
|
{
|
|
4464
|
+
"title": "wait",
|
|
4465
|
+
"type": "object",
|
|
4290
4466
|
"required": [
|
|
4291
4467
|
"wait"
|
|
4292
4468
|
],
|
|
@@ -4298,9 +4474,11 @@
|
|
|
4298
4474
|
"default": 5000,
|
|
4299
4475
|
"anyOf": [
|
|
4300
4476
|
{
|
|
4301
|
-
"type": "number"
|
|
4477
|
+
"type": "number",
|
|
4478
|
+
"title": "Wait (simple)"
|
|
4302
4479
|
},
|
|
4303
4480
|
{
|
|
4481
|
+
"title": "Wait (environment variable)",
|
|
4304
4482
|
"type": "string",
|
|
4305
4483
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4306
4484
|
"transform": [
|
|
@@ -4308,12 +4486,14 @@
|
|
|
4308
4486
|
]
|
|
4309
4487
|
},
|
|
4310
4488
|
{
|
|
4311
|
-
"type": "boolean"
|
|
4489
|
+
"type": "boolean",
|
|
4490
|
+
"title": "Wait (boolean)"
|
|
4312
4491
|
}
|
|
4313
4492
|
],
|
|
4314
4493
|
"components": {
|
|
4315
4494
|
"schemas": {
|
|
4316
4495
|
"string": {
|
|
4496
|
+
"title": "Wait (environment variable)",
|
|
4317
4497
|
"type": "string",
|
|
4318
4498
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4319
4499
|
"transform": [
|
|
@@ -4731,7 +4911,8 @@
|
|
|
4731
4911
|
"type": "integer",
|
|
4732
4912
|
"description": "Height of the browser window in pixels."
|
|
4733
4913
|
}
|
|
4734
|
-
}
|
|
4914
|
+
},
|
|
4915
|
+
"title": "Browser Window"
|
|
4735
4916
|
},
|
|
4736
4917
|
"viewport": {
|
|
4737
4918
|
"type": "object",
|
|
@@ -4746,9 +4927,11 @@
|
|
|
4746
4927
|
"type": "integer",
|
|
4747
4928
|
"description": "Height of the viewport in pixels."
|
|
4748
4929
|
}
|
|
4749
|
-
}
|
|
4930
|
+
},
|
|
4931
|
+
"title": "Browser Viewport"
|
|
4750
4932
|
}
|
|
4751
|
-
}
|
|
4933
|
+
},
|
|
4934
|
+
"title": "Browser"
|
|
4752
4935
|
},
|
|
4753
4936
|
"openApi": {
|
|
4754
4937
|
"type": "array",
|
|
@@ -4786,7 +4969,8 @@
|
|
|
4786
4969
|
"type": "object",
|
|
4787
4970
|
"readOnly": true,
|
|
4788
4971
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
4789
|
-
"additionalProperties": true
|
|
4972
|
+
"additionalProperties": true,
|
|
4973
|
+
"title": "OpenAPI definition"
|
|
4790
4974
|
},
|
|
4791
4975
|
"operationId": {
|
|
4792
4976
|
"type": "string",
|
|
@@ -4838,7 +5022,8 @@
|
|
|
4838
5022
|
"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.",
|
|
4839
5023
|
"additionalProperties": {
|
|
4840
5024
|
"type": "string"
|
|
4841
|
-
}
|
|
5025
|
+
},
|
|
5026
|
+
"title": "OpenAPI request headers"
|
|
4842
5027
|
}
|
|
4843
5028
|
},
|
|
4844
5029
|
"components": {
|
|
@@ -4924,7 +5109,8 @@
|
|
|
4924
5109
|
"required": [
|
|
4925
5110
|
"name",
|
|
4926
5111
|
"descriptionPath"
|
|
4927
|
-
]
|
|
5112
|
+
],
|
|
5113
|
+
"title": "OpenAPI description (test)"
|
|
4928
5114
|
}
|
|
4929
5115
|
]
|
|
4930
5116
|
}
|
|
@@ -4963,7 +5149,8 @@
|
|
|
4963
5149
|
"type": "string",
|
|
4964
5150
|
"description": "Runtime expression for a user-defined output value."
|
|
4965
5151
|
}
|
|
4966
|
-
}
|
|
5152
|
+
},
|
|
5153
|
+
"title": "Outputs (step)"
|
|
4967
5154
|
},
|
|
4968
5155
|
"variables": {
|
|
4969
5156
|
"type": "object",
|
|
@@ -4974,9 +5161,11 @@
|
|
|
4974
5161
|
"type": "string",
|
|
4975
5162
|
"description": "Runtime expression for a user-defined output value."
|
|
4976
5163
|
}
|
|
4977
|
-
}
|
|
5164
|
+
},
|
|
5165
|
+
"title": "Variables (step)"
|
|
4978
5166
|
}
|
|
4979
|
-
}
|
|
5167
|
+
},
|
|
5168
|
+
"title": "Common"
|
|
4980
5169
|
},
|
|
4981
5170
|
"stepId": {
|
|
4982
5171
|
"type": "string",
|
|
@@ -4995,7 +5184,8 @@
|
|
|
4995
5184
|
"type": "string",
|
|
4996
5185
|
"description": "Runtime expression for a user-defined output value."
|
|
4997
5186
|
}
|
|
4998
|
-
}
|
|
5187
|
+
},
|
|
5188
|
+
"title": "Outputs (step)"
|
|
4999
5189
|
},
|
|
5000
5190
|
"variables": {
|
|
5001
5191
|
"type": "object",
|
|
@@ -5006,7 +5196,8 @@
|
|
|
5006
5196
|
"type": "string",
|
|
5007
5197
|
"description": "Runtime expression for a user-defined output value."
|
|
5008
5198
|
}
|
|
5009
|
-
}
|
|
5199
|
+
},
|
|
5200
|
+
"title": "Variables (step)"
|
|
5010
5201
|
}
|
|
5011
5202
|
}
|
|
5012
5203
|
},
|
|
@@ -5036,7 +5227,8 @@
|
|
|
5036
5227
|
"type": "string",
|
|
5037
5228
|
"description": "Runtime expression for a user-defined output value."
|
|
5038
5229
|
}
|
|
5039
|
-
}
|
|
5230
|
+
},
|
|
5231
|
+
"title": "Outputs (step)"
|
|
5040
5232
|
},
|
|
5041
5233
|
"variables": {
|
|
5042
5234
|
"type": "object",
|
|
@@ -5047,9 +5239,11 @@
|
|
|
5047
5239
|
"type": "string",
|
|
5048
5240
|
"description": "Runtime expression for a user-defined output value."
|
|
5049
5241
|
}
|
|
5050
|
-
}
|
|
5242
|
+
},
|
|
5243
|
+
"title": "Variables (step)"
|
|
5051
5244
|
}
|
|
5052
|
-
}
|
|
5245
|
+
},
|
|
5246
|
+
"title": "Common"
|
|
5053
5247
|
},
|
|
5054
5248
|
{
|
|
5055
5249
|
"type": "object",
|
|
@@ -5062,6 +5256,7 @@
|
|
|
5062
5256
|
"title": "checkLink",
|
|
5063
5257
|
"anyOf": [
|
|
5064
5258
|
{
|
|
5259
|
+
"title": "Check link (detailed)",
|
|
5065
5260
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5066
5261
|
"type": "string",
|
|
5067
5262
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5070,6 +5265,7 @@
|
|
|
5070
5265
|
]
|
|
5071
5266
|
},
|
|
5072
5267
|
{
|
|
5268
|
+
"title": "Check link (detailed)",
|
|
5073
5269
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5074
5270
|
"type": "object",
|
|
5075
5271
|
"additionalProperties": false,
|
|
@@ -5123,6 +5319,7 @@
|
|
|
5123
5319
|
"components": {
|
|
5124
5320
|
"schemas": {
|
|
5125
5321
|
"string": {
|
|
5322
|
+
"title": "Check link (detailed)",
|
|
5126
5323
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5127
5324
|
"type": "string",
|
|
5128
5325
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5131,6 +5328,7 @@
|
|
|
5131
5328
|
]
|
|
5132
5329
|
},
|
|
5133
5330
|
"object": {
|
|
5331
|
+
"title": "Check link (detailed)",
|
|
5134
5332
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5135
5333
|
"type": "object",
|
|
5136
5334
|
"additionalProperties": false,
|
|
@@ -5198,7 +5396,8 @@
|
|
|
5198
5396
|
}
|
|
5199
5397
|
]
|
|
5200
5398
|
}
|
|
5201
|
-
}
|
|
5399
|
+
},
|
|
5400
|
+
"title": "checkLink"
|
|
5202
5401
|
}
|
|
5203
5402
|
]
|
|
5204
5403
|
},
|
|
@@ -5227,7 +5426,8 @@
|
|
|
5227
5426
|
"type": "string",
|
|
5228
5427
|
"description": "Runtime expression for a user-defined output value."
|
|
5229
5428
|
}
|
|
5230
|
-
}
|
|
5429
|
+
},
|
|
5430
|
+
"title": "Outputs (step)"
|
|
5231
5431
|
},
|
|
5232
5432
|
"variables": {
|
|
5233
5433
|
"type": "object",
|
|
@@ -5238,9 +5438,11 @@
|
|
|
5238
5438
|
"type": "string",
|
|
5239
5439
|
"description": "Runtime expression for a user-defined output value."
|
|
5240
5440
|
}
|
|
5241
|
-
}
|
|
5441
|
+
},
|
|
5442
|
+
"title": "Variables (step)"
|
|
5242
5443
|
}
|
|
5243
|
-
}
|
|
5444
|
+
},
|
|
5445
|
+
"title": "Common"
|
|
5244
5446
|
},
|
|
5245
5447
|
{
|
|
5246
5448
|
"type": "object",
|
|
@@ -5254,7 +5456,7 @@
|
|
|
5254
5456
|
"description": "Click or tap an element.",
|
|
5255
5457
|
"anyOf": [
|
|
5256
5458
|
{
|
|
5257
|
-
"title": "
|
|
5459
|
+
"title": "Click element (simple)",
|
|
5258
5460
|
"type": "string",
|
|
5259
5461
|
"description": "Display text or selector of the element to find."
|
|
5260
5462
|
},
|
|
@@ -5300,7 +5502,7 @@
|
|
|
5300
5502
|
"components": {
|
|
5301
5503
|
"schemas": {
|
|
5302
5504
|
"string": {
|
|
5303
|
-
"title": "
|
|
5505
|
+
"title": "Click element (simple)",
|
|
5304
5506
|
"type": "string",
|
|
5305
5507
|
"description": "Display text or selector of the element to find."
|
|
5306
5508
|
},
|
|
@@ -5364,7 +5566,8 @@
|
|
|
5364
5566
|
}
|
|
5365
5567
|
]
|
|
5366
5568
|
}
|
|
5367
|
-
}
|
|
5569
|
+
},
|
|
5570
|
+
"title": "click"
|
|
5368
5571
|
}
|
|
5369
5572
|
]
|
|
5370
5573
|
},
|
|
@@ -5393,7 +5596,8 @@
|
|
|
5393
5596
|
"type": "string",
|
|
5394
5597
|
"description": "Runtime expression for a user-defined output value."
|
|
5395
5598
|
}
|
|
5396
|
-
}
|
|
5599
|
+
},
|
|
5600
|
+
"title": "Outputs (step)"
|
|
5397
5601
|
},
|
|
5398
5602
|
"variables": {
|
|
5399
5603
|
"type": "object",
|
|
@@ -5404,9 +5608,11 @@
|
|
|
5404
5608
|
"type": "string",
|
|
5405
5609
|
"description": "Runtime expression for a user-defined output value."
|
|
5406
5610
|
}
|
|
5407
|
-
}
|
|
5611
|
+
},
|
|
5612
|
+
"title": "Variables (step)"
|
|
5408
5613
|
}
|
|
5409
|
-
}
|
|
5614
|
+
},
|
|
5615
|
+
"title": "Common"
|
|
5410
5616
|
},
|
|
5411
5617
|
{
|
|
5412
5618
|
"type": "object",
|
|
@@ -5468,7 +5674,7 @@
|
|
|
5468
5674
|
"description": "Click or tap an element.",
|
|
5469
5675
|
"anyOf": [
|
|
5470
5676
|
{
|
|
5471
|
-
"title": "
|
|
5677
|
+
"title": "Click element (simple)",
|
|
5472
5678
|
"type": "string",
|
|
5473
5679
|
"description": "Display text or selector of the element to find."
|
|
5474
5680
|
},
|
|
@@ -5514,7 +5720,7 @@
|
|
|
5514
5720
|
"components": {
|
|
5515
5721
|
"schemas": {
|
|
5516
5722
|
"string": {
|
|
5517
|
-
"title": "
|
|
5723
|
+
"title": "Click element (simple)",
|
|
5518
5724
|
"type": "string",
|
|
5519
5725
|
"description": "Display text or selector of the element to find."
|
|
5520
5726
|
},
|
|
@@ -5590,7 +5796,8 @@
|
|
|
5590
5796
|
"middle"
|
|
5591
5797
|
]
|
|
5592
5798
|
}
|
|
5593
|
-
}
|
|
5799
|
+
},
|
|
5800
|
+
"title": "Find element and click"
|
|
5594
5801
|
}
|
|
5595
5802
|
]
|
|
5596
5803
|
},
|
|
@@ -5603,6 +5810,7 @@
|
|
|
5603
5810
|
"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$`.",
|
|
5604
5811
|
"anyOf": [
|
|
5605
5812
|
{
|
|
5813
|
+
"title": "Type keys (simple)",
|
|
5606
5814
|
"description": "Sequence of keys to enter.",
|
|
5607
5815
|
"anyOf": [
|
|
5608
5816
|
{
|
|
@@ -5621,9 +5829,11 @@
|
|
|
5621
5829
|
]
|
|
5622
5830
|
},
|
|
5623
5831
|
{
|
|
5832
|
+
"title": "Type keys (detailed)",
|
|
5624
5833
|
"type": "object",
|
|
5625
5834
|
"properties": {
|
|
5626
5835
|
"keys": {
|
|
5836
|
+
"title": "Type keys (simple)",
|
|
5627
5837
|
"description": "Sequence of keys to enter.",
|
|
5628
5838
|
"anyOf": [
|
|
5629
5839
|
{
|
|
@@ -5660,6 +5870,7 @@
|
|
|
5660
5870
|
"components": {
|
|
5661
5871
|
"schemas": {
|
|
5662
5872
|
"keys": {
|
|
5873
|
+
"title": "Type keys (simple)",
|
|
5663
5874
|
"description": "Sequence of keys to enter.",
|
|
5664
5875
|
"anyOf": [
|
|
5665
5876
|
{
|
|
@@ -5678,9 +5889,11 @@
|
|
|
5678
5889
|
]
|
|
5679
5890
|
},
|
|
5680
5891
|
"object": {
|
|
5892
|
+
"title": "Type keys (detailed)",
|
|
5681
5893
|
"type": "object",
|
|
5682
5894
|
"properties": {
|
|
5683
5895
|
"keys": {
|
|
5896
|
+
"title": "Type keys (simple)",
|
|
5684
5897
|
"description": "Sequence of keys to enter.",
|
|
5685
5898
|
"anyOf": [
|
|
5686
5899
|
{
|
|
@@ -5747,7 +5960,8 @@
|
|
|
5747
5960
|
"required": [
|
|
5748
5961
|
"selector",
|
|
5749
5962
|
"elementText"
|
|
5750
|
-
]
|
|
5963
|
+
],
|
|
5964
|
+
"title": "Find element and type"
|
|
5751
5965
|
}
|
|
5752
5966
|
}
|
|
5753
5967
|
]
|
|
@@ -5806,7 +6020,7 @@
|
|
|
5806
6020
|
"description": "Click or tap an element.",
|
|
5807
6021
|
"anyOf": [
|
|
5808
6022
|
{
|
|
5809
|
-
"title": "
|
|
6023
|
+
"title": "Click element (simple)",
|
|
5810
6024
|
"type": "string",
|
|
5811
6025
|
"description": "Display text or selector of the element to find."
|
|
5812
6026
|
},
|
|
@@ -5852,7 +6066,7 @@
|
|
|
5852
6066
|
"components": {
|
|
5853
6067
|
"schemas": {
|
|
5854
6068
|
"string": {
|
|
5855
|
-
"title": "
|
|
6069
|
+
"title": "Click element (simple)",
|
|
5856
6070
|
"type": "string",
|
|
5857
6071
|
"description": "Display text or selector of the element to find."
|
|
5858
6072
|
},
|
|
@@ -5928,7 +6142,8 @@
|
|
|
5928
6142
|
"middle"
|
|
5929
6143
|
]
|
|
5930
6144
|
}
|
|
5931
|
-
}
|
|
6145
|
+
},
|
|
6146
|
+
"title": "Find element and click"
|
|
5932
6147
|
}
|
|
5933
6148
|
]
|
|
5934
6149
|
},
|
|
@@ -5941,6 +6156,7 @@
|
|
|
5941
6156
|
"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$`.",
|
|
5942
6157
|
"anyOf": [
|
|
5943
6158
|
{
|
|
6159
|
+
"title": "Type keys (simple)",
|
|
5944
6160
|
"description": "Sequence of keys to enter.",
|
|
5945
6161
|
"anyOf": [
|
|
5946
6162
|
{
|
|
@@ -5959,9 +6175,11 @@
|
|
|
5959
6175
|
]
|
|
5960
6176
|
},
|
|
5961
6177
|
{
|
|
6178
|
+
"title": "Type keys (detailed)",
|
|
5962
6179
|
"type": "object",
|
|
5963
6180
|
"properties": {
|
|
5964
6181
|
"keys": {
|
|
6182
|
+
"title": "Type keys (simple)",
|
|
5965
6183
|
"description": "Sequence of keys to enter.",
|
|
5966
6184
|
"anyOf": [
|
|
5967
6185
|
{
|
|
@@ -5998,6 +6216,7 @@
|
|
|
5998
6216
|
"components": {
|
|
5999
6217
|
"schemas": {
|
|
6000
6218
|
"keys": {
|
|
6219
|
+
"title": "Type keys (simple)",
|
|
6001
6220
|
"description": "Sequence of keys to enter.",
|
|
6002
6221
|
"anyOf": [
|
|
6003
6222
|
{
|
|
@@ -6016,9 +6235,11 @@
|
|
|
6016
6235
|
]
|
|
6017
6236
|
},
|
|
6018
6237
|
"object": {
|
|
6238
|
+
"title": "Type keys (detailed)",
|
|
6019
6239
|
"type": "object",
|
|
6020
6240
|
"properties": {
|
|
6021
6241
|
"keys": {
|
|
6242
|
+
"title": "Type keys (simple)",
|
|
6022
6243
|
"description": "Sequence of keys to enter.",
|
|
6023
6244
|
"anyOf": [
|
|
6024
6245
|
{
|
|
@@ -6085,7 +6306,8 @@
|
|
|
6085
6306
|
"required": [
|
|
6086
6307
|
"selector",
|
|
6087
6308
|
"elementText"
|
|
6088
|
-
]
|
|
6309
|
+
],
|
|
6310
|
+
"title": "Find element and type"
|
|
6089
6311
|
}
|
|
6090
6312
|
}
|
|
6091
6313
|
]
|
|
@@ -6128,7 +6350,8 @@
|
|
|
6128
6350
|
}
|
|
6129
6351
|
]
|
|
6130
6352
|
}
|
|
6131
|
-
}
|
|
6353
|
+
},
|
|
6354
|
+
"title": "find"
|
|
6132
6355
|
}
|
|
6133
6356
|
]
|
|
6134
6357
|
},
|
|
@@ -6157,7 +6380,8 @@
|
|
|
6157
6380
|
"type": "string",
|
|
6158
6381
|
"description": "Runtime expression for a user-defined output value."
|
|
6159
6382
|
}
|
|
6160
|
-
}
|
|
6383
|
+
},
|
|
6384
|
+
"title": "Outputs (step)"
|
|
6161
6385
|
},
|
|
6162
6386
|
"variables": {
|
|
6163
6387
|
"type": "object",
|
|
@@ -6168,9 +6392,11 @@
|
|
|
6168
6392
|
"type": "string",
|
|
6169
6393
|
"description": "Runtime expression for a user-defined output value."
|
|
6170
6394
|
}
|
|
6171
|
-
}
|
|
6395
|
+
},
|
|
6396
|
+
"title": "Variables (step)"
|
|
6172
6397
|
}
|
|
6173
|
-
}
|
|
6398
|
+
},
|
|
6399
|
+
"title": "Common"
|
|
6174
6400
|
},
|
|
6175
6401
|
{
|
|
6176
6402
|
"type": "object",
|
|
@@ -6183,6 +6409,7 @@
|
|
|
6183
6409
|
"title": "goTo",
|
|
6184
6410
|
"anyOf": [
|
|
6185
6411
|
{
|
|
6412
|
+
"title": "Go to URL (simple)",
|
|
6186
6413
|
"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.",
|
|
6187
6414
|
"type": "string",
|
|
6188
6415
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6213,12 +6440,14 @@
|
|
|
6213
6440
|
"trim"
|
|
6214
6441
|
]
|
|
6215
6442
|
}
|
|
6216
|
-
}
|
|
6443
|
+
},
|
|
6444
|
+
"title": "Go to URL (detailed)"
|
|
6217
6445
|
}
|
|
6218
6446
|
],
|
|
6219
6447
|
"components": {
|
|
6220
6448
|
"schemas": {
|
|
6221
6449
|
"string": {
|
|
6450
|
+
"title": "Go to URL (simple)",
|
|
6222
6451
|
"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.",
|
|
6223
6452
|
"type": "string",
|
|
6224
6453
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6249,7 +6478,8 @@
|
|
|
6249
6478
|
"trim"
|
|
6250
6479
|
]
|
|
6251
6480
|
}
|
|
6252
|
-
}
|
|
6481
|
+
},
|
|
6482
|
+
"title": "Go to URL (detailed)"
|
|
6253
6483
|
}
|
|
6254
6484
|
}
|
|
6255
6485
|
},
|
|
@@ -6265,7 +6495,8 @@
|
|
|
6265
6495
|
}
|
|
6266
6496
|
]
|
|
6267
6497
|
}
|
|
6268
|
-
}
|
|
6498
|
+
},
|
|
6499
|
+
"title": "goTo"
|
|
6269
6500
|
}
|
|
6270
6501
|
]
|
|
6271
6502
|
},
|
|
@@ -6294,7 +6525,8 @@
|
|
|
6294
6525
|
"type": "string",
|
|
6295
6526
|
"description": "Runtime expression for a user-defined output value."
|
|
6296
6527
|
}
|
|
6297
|
-
}
|
|
6528
|
+
},
|
|
6529
|
+
"title": "Outputs (step)"
|
|
6298
6530
|
},
|
|
6299
6531
|
"variables": {
|
|
6300
6532
|
"type": "object",
|
|
@@ -6305,9 +6537,11 @@
|
|
|
6305
6537
|
"type": "string",
|
|
6306
6538
|
"description": "Runtime expression for a user-defined output value."
|
|
6307
6539
|
}
|
|
6308
|
-
}
|
|
6540
|
+
},
|
|
6541
|
+
"title": "Variables (step)"
|
|
6309
6542
|
}
|
|
6310
|
-
}
|
|
6543
|
+
},
|
|
6544
|
+
"title": "Common"
|
|
6311
6545
|
},
|
|
6312
6546
|
{
|
|
6313
6547
|
"type": "object",
|
|
@@ -6321,7 +6555,7 @@
|
|
|
6321
6555
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
6322
6556
|
"anyOf": [
|
|
6323
6557
|
{
|
|
6324
|
-
"title": "
|
|
6558
|
+
"title": "HTTP request (simple)",
|
|
6325
6559
|
"type": "string",
|
|
6326
6560
|
"description": "URL for the HTTP request.",
|
|
6327
6561
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6330,6 +6564,7 @@
|
|
|
6330
6564
|
]
|
|
6331
6565
|
},
|
|
6332
6566
|
{
|
|
6567
|
+
"title": "HTTP request (detailed)",
|
|
6333
6568
|
"type": "object",
|
|
6334
6569
|
"anyOf": [
|
|
6335
6570
|
{
|
|
@@ -6346,7 +6581,7 @@
|
|
|
6346
6581
|
"additionalProperties": false,
|
|
6347
6582
|
"properties": {
|
|
6348
6583
|
"url": {
|
|
6349
|
-
"title": "
|
|
6584
|
+
"title": "HTTP request (simple)",
|
|
6350
6585
|
"type": "string",
|
|
6351
6586
|
"description": "URL for the HTTP request.",
|
|
6352
6587
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6402,7 +6637,8 @@
|
|
|
6402
6637
|
"type": "object",
|
|
6403
6638
|
"readOnly": true,
|
|
6404
6639
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
6405
|
-
"additionalProperties": true
|
|
6640
|
+
"additionalProperties": true,
|
|
6641
|
+
"title": "OpenAPI definition"
|
|
6406
6642
|
},
|
|
6407
6643
|
"operationId": {
|
|
6408
6644
|
"type": "string",
|
|
@@ -6454,7 +6690,8 @@
|
|
|
6454
6690
|
"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.",
|
|
6455
6691
|
"additionalProperties": {
|
|
6456
6692
|
"type": "string"
|
|
6457
|
-
}
|
|
6693
|
+
},
|
|
6694
|
+
"title": "OpenAPI request headers"
|
|
6458
6695
|
}
|
|
6459
6696
|
},
|
|
6460
6697
|
"components": {
|
|
@@ -6534,7 +6771,8 @@
|
|
|
6534
6771
|
"type": "object",
|
|
6535
6772
|
"required": [
|
|
6536
6773
|
"operationId"
|
|
6537
|
-
]
|
|
6774
|
+
],
|
|
6775
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
6538
6776
|
}
|
|
6539
6777
|
]
|
|
6540
6778
|
}
|
|
@@ -6585,34 +6823,43 @@
|
|
|
6585
6823
|
"type": "object",
|
|
6586
6824
|
"additionalProperties": true,
|
|
6587
6825
|
"properties": {},
|
|
6588
|
-
"default": {}
|
|
6826
|
+
"default": {},
|
|
6827
|
+
"title": "Request headers"
|
|
6589
6828
|
},
|
|
6590
6829
|
"parameters": {
|
|
6591
6830
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
6592
6831
|
"type": "object",
|
|
6593
6832
|
"additionalProperties": true,
|
|
6594
6833
|
"default": {},
|
|
6595
|
-
"properties": {}
|
|
6834
|
+
"properties": {},
|
|
6835
|
+
"title": "Request parameters"
|
|
6596
6836
|
},
|
|
6597
6837
|
"body": {
|
|
6598
6838
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
6599
6839
|
"anyOf": [
|
|
6600
6840
|
{
|
|
6841
|
+
"title": "Request body object",
|
|
6842
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
6601
6843
|
"type": "object",
|
|
6602
6844
|
"additionalProperties": true,
|
|
6603
6845
|
"properties": {}
|
|
6604
6846
|
},
|
|
6605
6847
|
{
|
|
6848
|
+
"title": "Request body array",
|
|
6849
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
6606
6850
|
"type": "array",
|
|
6607
6851
|
"items": {}
|
|
6608
6852
|
},
|
|
6609
6853
|
{
|
|
6854
|
+
"title": "Request body string",
|
|
6855
|
+
"description": "String to include as the body of the HTTP request.",
|
|
6610
6856
|
"type": "string"
|
|
6611
6857
|
}
|
|
6612
6858
|
],
|
|
6613
6859
|
"default": {}
|
|
6614
6860
|
}
|
|
6615
|
-
}
|
|
6861
|
+
},
|
|
6862
|
+
"title": "Request"
|
|
6616
6863
|
},
|
|
6617
6864
|
"response": {
|
|
6618
6865
|
"type": "object",
|
|
@@ -6623,7 +6870,8 @@
|
|
|
6623
6870
|
"type": "object",
|
|
6624
6871
|
"additionalProperties": true,
|
|
6625
6872
|
"properties": {},
|
|
6626
|
-
"default": {}
|
|
6873
|
+
"default": {},
|
|
6874
|
+
"title": "Response headers"
|
|
6627
6875
|
},
|
|
6628
6876
|
"body": {
|
|
6629
6877
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -6631,19 +6879,26 @@
|
|
|
6631
6879
|
{
|
|
6632
6880
|
"type": "object",
|
|
6633
6881
|
"additionalProperties": true,
|
|
6634
|
-
"properties": {}
|
|
6882
|
+
"properties": {},
|
|
6883
|
+
"title": "Response body object",
|
|
6884
|
+
"description": "JSON key/value pairs expected in the response."
|
|
6635
6885
|
},
|
|
6636
6886
|
{
|
|
6887
|
+
"title": "Response body array",
|
|
6888
|
+
"description": "JSON array expected in the response.",
|
|
6637
6889
|
"type": "array",
|
|
6638
6890
|
"items": {}
|
|
6639
6891
|
},
|
|
6640
6892
|
{
|
|
6893
|
+
"title": "Response body string",
|
|
6894
|
+
"description": "String expected in the response.",
|
|
6641
6895
|
"type": "string"
|
|
6642
6896
|
}
|
|
6643
6897
|
],
|
|
6644
6898
|
"default": {}
|
|
6645
6899
|
}
|
|
6646
|
-
}
|
|
6900
|
+
},
|
|
6901
|
+
"title": "Response"
|
|
6647
6902
|
},
|
|
6648
6903
|
"allowAdditionalFields": {
|
|
6649
6904
|
"type": "boolean",
|
|
@@ -6681,7 +6936,7 @@
|
|
|
6681
6936
|
"components": {
|
|
6682
6937
|
"schemas": {
|
|
6683
6938
|
"url": {
|
|
6684
|
-
"title": "
|
|
6939
|
+
"title": "HTTP request (simple)",
|
|
6685
6940
|
"type": "string",
|
|
6686
6941
|
"description": "URL for the HTTP request.",
|
|
6687
6942
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6690,6 +6945,7 @@
|
|
|
6690
6945
|
]
|
|
6691
6946
|
},
|
|
6692
6947
|
"object": {
|
|
6948
|
+
"title": "HTTP request (detailed)",
|
|
6693
6949
|
"type": "object",
|
|
6694
6950
|
"anyOf": [
|
|
6695
6951
|
{
|
|
@@ -6706,7 +6962,7 @@
|
|
|
6706
6962
|
"additionalProperties": false,
|
|
6707
6963
|
"properties": {
|
|
6708
6964
|
"url": {
|
|
6709
|
-
"title": "
|
|
6965
|
+
"title": "HTTP request (simple)",
|
|
6710
6966
|
"type": "string",
|
|
6711
6967
|
"description": "URL for the HTTP request.",
|
|
6712
6968
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6762,7 +7018,8 @@
|
|
|
6762
7018
|
"type": "object",
|
|
6763
7019
|
"readOnly": true,
|
|
6764
7020
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
6765
|
-
"additionalProperties": true
|
|
7021
|
+
"additionalProperties": true,
|
|
7022
|
+
"title": "OpenAPI definition"
|
|
6766
7023
|
},
|
|
6767
7024
|
"operationId": {
|
|
6768
7025
|
"type": "string",
|
|
@@ -6814,7 +7071,8 @@
|
|
|
6814
7071
|
"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.",
|
|
6815
7072
|
"additionalProperties": {
|
|
6816
7073
|
"type": "string"
|
|
6817
|
-
}
|
|
7074
|
+
},
|
|
7075
|
+
"title": "OpenAPI request headers"
|
|
6818
7076
|
}
|
|
6819
7077
|
},
|
|
6820
7078
|
"components": {
|
|
@@ -6894,7 +7152,8 @@
|
|
|
6894
7152
|
"type": "object",
|
|
6895
7153
|
"required": [
|
|
6896
7154
|
"operationId"
|
|
6897
|
-
]
|
|
7155
|
+
],
|
|
7156
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
6898
7157
|
}
|
|
6899
7158
|
]
|
|
6900
7159
|
}
|
|
@@ -6945,34 +7204,43 @@
|
|
|
6945
7204
|
"type": "object",
|
|
6946
7205
|
"additionalProperties": true,
|
|
6947
7206
|
"properties": {},
|
|
6948
|
-
"default": {}
|
|
7207
|
+
"default": {},
|
|
7208
|
+
"title": "Request headers"
|
|
6949
7209
|
},
|
|
6950
7210
|
"parameters": {
|
|
6951
7211
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
6952
7212
|
"type": "object",
|
|
6953
7213
|
"additionalProperties": true,
|
|
6954
7214
|
"default": {},
|
|
6955
|
-
"properties": {}
|
|
7215
|
+
"properties": {},
|
|
7216
|
+
"title": "Request parameters"
|
|
6956
7217
|
},
|
|
6957
7218
|
"body": {
|
|
6958
7219
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
6959
7220
|
"anyOf": [
|
|
6960
7221
|
{
|
|
7222
|
+
"title": "Request body object",
|
|
7223
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
6961
7224
|
"type": "object",
|
|
6962
7225
|
"additionalProperties": true,
|
|
6963
7226
|
"properties": {}
|
|
6964
7227
|
},
|
|
6965
7228
|
{
|
|
7229
|
+
"title": "Request body array",
|
|
7230
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
6966
7231
|
"type": "array",
|
|
6967
7232
|
"items": {}
|
|
6968
7233
|
},
|
|
6969
7234
|
{
|
|
7235
|
+
"title": "Request body string",
|
|
7236
|
+
"description": "String to include as the body of the HTTP request.",
|
|
6970
7237
|
"type": "string"
|
|
6971
7238
|
}
|
|
6972
7239
|
],
|
|
6973
7240
|
"default": {}
|
|
6974
7241
|
}
|
|
6975
|
-
}
|
|
7242
|
+
},
|
|
7243
|
+
"title": "Request"
|
|
6976
7244
|
},
|
|
6977
7245
|
"response": {
|
|
6978
7246
|
"type": "object",
|
|
@@ -6983,7 +7251,8 @@
|
|
|
6983
7251
|
"type": "object",
|
|
6984
7252
|
"additionalProperties": true,
|
|
6985
7253
|
"properties": {},
|
|
6986
|
-
"default": {}
|
|
7254
|
+
"default": {},
|
|
7255
|
+
"title": "Response headers"
|
|
6987
7256
|
},
|
|
6988
7257
|
"body": {
|
|
6989
7258
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -6991,19 +7260,26 @@
|
|
|
6991
7260
|
{
|
|
6992
7261
|
"type": "object",
|
|
6993
7262
|
"additionalProperties": true,
|
|
6994
|
-
"properties": {}
|
|
7263
|
+
"properties": {},
|
|
7264
|
+
"title": "Response body object",
|
|
7265
|
+
"description": "JSON key/value pairs expected in the response."
|
|
6995
7266
|
},
|
|
6996
7267
|
{
|
|
7268
|
+
"title": "Response body array",
|
|
7269
|
+
"description": "JSON array expected in the response.",
|
|
6997
7270
|
"type": "array",
|
|
6998
7271
|
"items": {}
|
|
6999
7272
|
},
|
|
7000
7273
|
{
|
|
7274
|
+
"title": "Response body string",
|
|
7275
|
+
"description": "String expected in the response.",
|
|
7001
7276
|
"type": "string"
|
|
7002
7277
|
}
|
|
7003
7278
|
],
|
|
7004
7279
|
"default": {}
|
|
7005
7280
|
}
|
|
7006
|
-
}
|
|
7281
|
+
},
|
|
7282
|
+
"title": "Response"
|
|
7007
7283
|
},
|
|
7008
7284
|
"allowAdditionalFields": {
|
|
7009
7285
|
"type": "boolean",
|
|
@@ -7178,7 +7454,8 @@
|
|
|
7178
7454
|
}
|
|
7179
7455
|
]
|
|
7180
7456
|
}
|
|
7181
|
-
}
|
|
7457
|
+
},
|
|
7458
|
+
"title": "httpRequest"
|
|
7182
7459
|
}
|
|
7183
7460
|
]
|
|
7184
7461
|
},
|
|
@@ -7207,7 +7484,8 @@
|
|
|
7207
7484
|
"type": "string",
|
|
7208
7485
|
"description": "Runtime expression for a user-defined output value."
|
|
7209
7486
|
}
|
|
7210
|
-
}
|
|
7487
|
+
},
|
|
7488
|
+
"title": "Outputs (step)"
|
|
7211
7489
|
},
|
|
7212
7490
|
"variables": {
|
|
7213
7491
|
"type": "object",
|
|
@@ -7218,9 +7496,11 @@
|
|
|
7218
7496
|
"type": "string",
|
|
7219
7497
|
"description": "Runtime expression for a user-defined output value."
|
|
7220
7498
|
}
|
|
7221
|
-
}
|
|
7499
|
+
},
|
|
7500
|
+
"title": "Variables (step)"
|
|
7222
7501
|
}
|
|
7223
|
-
}
|
|
7502
|
+
},
|
|
7503
|
+
"title": "Common"
|
|
7224
7504
|
},
|
|
7225
7505
|
{
|
|
7226
7506
|
"type": "object",
|
|
@@ -7234,6 +7514,8 @@
|
|
|
7234
7514
|
"description": "Perform a native shell command.",
|
|
7235
7515
|
"anyOf": [
|
|
7236
7516
|
{
|
|
7517
|
+
"title": "Run shell command (simple)",
|
|
7518
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7237
7519
|
"type": "string",
|
|
7238
7520
|
"transform": [
|
|
7239
7521
|
"trim"
|
|
@@ -7315,12 +7597,15 @@
|
|
|
7315
7597
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7316
7598
|
"default": 60000
|
|
7317
7599
|
}
|
|
7318
|
-
}
|
|
7600
|
+
},
|
|
7601
|
+
"title": "Run shell command (detailed)"
|
|
7319
7602
|
}
|
|
7320
7603
|
],
|
|
7321
7604
|
"components": {
|
|
7322
7605
|
"schemas": {
|
|
7323
7606
|
"string": {
|
|
7607
|
+
"title": "Run shell command (simple)",
|
|
7608
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7324
7609
|
"type": "string",
|
|
7325
7610
|
"transform": [
|
|
7326
7611
|
"trim"
|
|
@@ -7402,7 +7687,8 @@
|
|
|
7402
7687
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7403
7688
|
"default": 60000
|
|
7404
7689
|
}
|
|
7405
|
-
}
|
|
7690
|
+
},
|
|
7691
|
+
"title": "Run shell command (detailed)"
|
|
7406
7692
|
}
|
|
7407
7693
|
}
|
|
7408
7694
|
},
|
|
@@ -7458,7 +7744,8 @@
|
|
|
7458
7744
|
}
|
|
7459
7745
|
]
|
|
7460
7746
|
}
|
|
7461
|
-
}
|
|
7747
|
+
},
|
|
7748
|
+
"title": "runShell"
|
|
7462
7749
|
}
|
|
7463
7750
|
]
|
|
7464
7751
|
},
|
|
@@ -7487,7 +7774,8 @@
|
|
|
7487
7774
|
"type": "string",
|
|
7488
7775
|
"description": "Runtime expression for a user-defined output value."
|
|
7489
7776
|
}
|
|
7490
|
-
}
|
|
7777
|
+
},
|
|
7778
|
+
"title": "Outputs (step)"
|
|
7491
7779
|
},
|
|
7492
7780
|
"variables": {
|
|
7493
7781
|
"type": "object",
|
|
@@ -7498,9 +7786,11 @@
|
|
|
7498
7786
|
"type": "string",
|
|
7499
7787
|
"description": "Runtime expression for a user-defined output value."
|
|
7500
7788
|
}
|
|
7501
|
-
}
|
|
7789
|
+
},
|
|
7790
|
+
"title": "Variables (step)"
|
|
7502
7791
|
}
|
|
7503
|
-
}
|
|
7792
|
+
},
|
|
7793
|
+
"title": "Common"
|
|
7504
7794
|
},
|
|
7505
7795
|
{
|
|
7506
7796
|
"type": "object",
|
|
@@ -7598,7 +7888,8 @@
|
|
|
7598
7888
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7599
7889
|
"default": 60000
|
|
7600
7890
|
}
|
|
7601
|
-
}
|
|
7891
|
+
},
|
|
7892
|
+
"title": "Run code (detailed)"
|
|
7602
7893
|
}
|
|
7603
7894
|
],
|
|
7604
7895
|
"components": {
|
|
@@ -7688,7 +7979,8 @@
|
|
|
7688
7979
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7689
7980
|
"default": 60000
|
|
7690
7981
|
}
|
|
7691
|
-
}
|
|
7982
|
+
},
|
|
7983
|
+
"title": "Run code (detailed)"
|
|
7692
7984
|
}
|
|
7693
7985
|
}
|
|
7694
7986
|
},
|
|
@@ -7728,7 +8020,8 @@
|
|
|
7728
8020
|
}
|
|
7729
8021
|
]
|
|
7730
8022
|
}
|
|
7731
|
-
}
|
|
8023
|
+
},
|
|
8024
|
+
"title": "runCode"
|
|
7732
8025
|
}
|
|
7733
8026
|
]
|
|
7734
8027
|
},
|
|
@@ -7757,7 +8050,8 @@
|
|
|
7757
8050
|
"type": "string",
|
|
7758
8051
|
"description": "Runtime expression for a user-defined output value."
|
|
7759
8052
|
}
|
|
7760
|
-
}
|
|
8053
|
+
},
|
|
8054
|
+
"title": "Outputs (step)"
|
|
7761
8055
|
},
|
|
7762
8056
|
"variables": {
|
|
7763
8057
|
"type": "object",
|
|
@@ -7768,9 +8062,11 @@
|
|
|
7768
8062
|
"type": "string",
|
|
7769
8063
|
"description": "Runtime expression for a user-defined output value."
|
|
7770
8064
|
}
|
|
7771
|
-
}
|
|
8065
|
+
},
|
|
8066
|
+
"title": "Variables (step)"
|
|
7772
8067
|
}
|
|
7773
|
-
}
|
|
8068
|
+
},
|
|
8069
|
+
"title": "Common"
|
|
7774
8070
|
},
|
|
7775
8071
|
{
|
|
7776
8072
|
"type": "object",
|
|
@@ -7784,6 +8080,7 @@
|
|
|
7784
8080
|
"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$`.",
|
|
7785
8081
|
"anyOf": [
|
|
7786
8082
|
{
|
|
8083
|
+
"title": "Type keys (simple)",
|
|
7787
8084
|
"description": "Sequence of keys to enter.",
|
|
7788
8085
|
"anyOf": [
|
|
7789
8086
|
{
|
|
@@ -7802,9 +8099,11 @@
|
|
|
7802
8099
|
]
|
|
7803
8100
|
},
|
|
7804
8101
|
{
|
|
8102
|
+
"title": "Type keys (detailed)",
|
|
7805
8103
|
"type": "object",
|
|
7806
8104
|
"properties": {
|
|
7807
8105
|
"keys": {
|
|
8106
|
+
"title": "Type keys (simple)",
|
|
7808
8107
|
"description": "Sequence of keys to enter.",
|
|
7809
8108
|
"anyOf": [
|
|
7810
8109
|
{
|
|
@@ -7841,6 +8140,7 @@
|
|
|
7841
8140
|
"components": {
|
|
7842
8141
|
"schemas": {
|
|
7843
8142
|
"keys": {
|
|
8143
|
+
"title": "Type keys (simple)",
|
|
7844
8144
|
"description": "Sequence of keys to enter.",
|
|
7845
8145
|
"anyOf": [
|
|
7846
8146
|
{
|
|
@@ -7859,9 +8159,11 @@
|
|
|
7859
8159
|
]
|
|
7860
8160
|
},
|
|
7861
8161
|
"object": {
|
|
8162
|
+
"title": "Type keys (detailed)",
|
|
7862
8163
|
"type": "object",
|
|
7863
8164
|
"properties": {
|
|
7864
8165
|
"keys": {
|
|
8166
|
+
"title": "Type keys (simple)",
|
|
7865
8167
|
"description": "Sequence of keys to enter.",
|
|
7866
8168
|
"anyOf": [
|
|
7867
8169
|
{
|
|
@@ -7922,7 +8224,8 @@
|
|
|
7922
8224
|
}
|
|
7923
8225
|
]
|
|
7924
8226
|
}
|
|
7925
|
-
}
|
|
8227
|
+
},
|
|
8228
|
+
"title": "type"
|
|
7926
8229
|
}
|
|
7927
8230
|
]
|
|
7928
8231
|
},
|
|
@@ -7951,7 +8254,8 @@
|
|
|
7951
8254
|
"type": "string",
|
|
7952
8255
|
"description": "Runtime expression for a user-defined output value."
|
|
7953
8256
|
}
|
|
7954
|
-
}
|
|
8257
|
+
},
|
|
8258
|
+
"title": "Outputs (step)"
|
|
7955
8259
|
},
|
|
7956
8260
|
"variables": {
|
|
7957
8261
|
"type": "object",
|
|
@@ -7962,9 +8266,11 @@
|
|
|
7962
8266
|
"type": "string",
|
|
7963
8267
|
"description": "Runtime expression for a user-defined output value."
|
|
7964
8268
|
}
|
|
7965
|
-
}
|
|
8269
|
+
},
|
|
8270
|
+
"title": "Variables (step)"
|
|
7966
8271
|
}
|
|
7967
|
-
}
|
|
8272
|
+
},
|
|
8273
|
+
"title": "Common"
|
|
7968
8274
|
},
|
|
7969
8275
|
{
|
|
7970
8276
|
"type": "object",
|
|
@@ -7978,6 +8284,7 @@
|
|
|
7978
8284
|
"description": "Takes a screenshot in PNG format.",
|
|
7979
8285
|
"anyOf": [
|
|
7980
8286
|
{
|
|
8287
|
+
"title": "Screenshot (simple)",
|
|
7981
8288
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
7982
8289
|
"type": "string",
|
|
7983
8290
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -7990,6 +8297,7 @@
|
|
|
7990
8297
|
"additionalProperties": false,
|
|
7991
8298
|
"properties": {
|
|
7992
8299
|
"path": {
|
|
8300
|
+
"title": "Screenshot (simple)",
|
|
7993
8301
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
7994
8302
|
"type": "string",
|
|
7995
8303
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8024,7 +8332,7 @@
|
|
|
8024
8332
|
"crop": {
|
|
8025
8333
|
"anyOf": [
|
|
8026
8334
|
{
|
|
8027
|
-
"title": "Crop by element",
|
|
8335
|
+
"title": "Crop by element (simple)",
|
|
8028
8336
|
"type": "string",
|
|
8029
8337
|
"description": "Display text or selector of the element to screenshot."
|
|
8030
8338
|
},
|
|
@@ -8057,6 +8365,7 @@
|
|
|
8057
8365
|
"padding": {
|
|
8058
8366
|
"anyOf": [
|
|
8059
8367
|
{
|
|
8368
|
+
"title": "Padding (simple)",
|
|
8060
8369
|
"type": "number",
|
|
8061
8370
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8062
8371
|
"minimum": 0
|
|
@@ -8081,7 +8390,9 @@
|
|
|
8081
8390
|
"type": "number",
|
|
8082
8391
|
"minimum": 0
|
|
8083
8392
|
}
|
|
8084
|
-
}
|
|
8393
|
+
},
|
|
8394
|
+
"title": "Padding (detailed)",
|
|
8395
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8085
8396
|
}
|
|
8086
8397
|
]
|
|
8087
8398
|
}
|
|
@@ -8089,15 +8400,19 @@
|
|
|
8089
8400
|
}
|
|
8090
8401
|
]
|
|
8091
8402
|
}
|
|
8092
|
-
}
|
|
8403
|
+
},
|
|
8404
|
+
"title": "Capture screenshot (detailed)"
|
|
8093
8405
|
},
|
|
8094
8406
|
{
|
|
8095
|
-
"type": "boolean"
|
|
8407
|
+
"type": "boolean",
|
|
8408
|
+
"title": "Capture screenshot",
|
|
8409
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
8096
8410
|
}
|
|
8097
8411
|
],
|
|
8098
8412
|
"components": {
|
|
8099
8413
|
"schemas": {
|
|
8100
8414
|
"path": {
|
|
8415
|
+
"title": "Screenshot (simple)",
|
|
8101
8416
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8102
8417
|
"type": "string",
|
|
8103
8418
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8110,6 +8425,7 @@
|
|
|
8110
8425
|
"additionalProperties": false,
|
|
8111
8426
|
"properties": {
|
|
8112
8427
|
"path": {
|
|
8428
|
+
"title": "Screenshot (simple)",
|
|
8113
8429
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8114
8430
|
"type": "string",
|
|
8115
8431
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8144,7 +8460,7 @@
|
|
|
8144
8460
|
"crop": {
|
|
8145
8461
|
"anyOf": [
|
|
8146
8462
|
{
|
|
8147
|
-
"title": "Crop by element",
|
|
8463
|
+
"title": "Crop by element (simple)",
|
|
8148
8464
|
"type": "string",
|
|
8149
8465
|
"description": "Display text or selector of the element to screenshot."
|
|
8150
8466
|
},
|
|
@@ -8177,6 +8493,7 @@
|
|
|
8177
8493
|
"padding": {
|
|
8178
8494
|
"anyOf": [
|
|
8179
8495
|
{
|
|
8496
|
+
"title": "Padding (simple)",
|
|
8180
8497
|
"type": "number",
|
|
8181
8498
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8182
8499
|
"minimum": 0
|
|
@@ -8201,7 +8518,9 @@
|
|
|
8201
8518
|
"type": "number",
|
|
8202
8519
|
"minimum": 0
|
|
8203
8520
|
}
|
|
8204
|
-
}
|
|
8521
|
+
},
|
|
8522
|
+
"title": "Padding (detailed)",
|
|
8523
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8205
8524
|
}
|
|
8206
8525
|
]
|
|
8207
8526
|
}
|
|
@@ -8209,7 +8528,8 @@
|
|
|
8209
8528
|
}
|
|
8210
8529
|
]
|
|
8211
8530
|
}
|
|
8212
|
-
}
|
|
8531
|
+
},
|
|
8532
|
+
"title": "Capture screenshot (detailed)"
|
|
8213
8533
|
},
|
|
8214
8534
|
"crop_element": {
|
|
8215
8535
|
"title": "Crop by element (detailed)",
|
|
@@ -8240,6 +8560,7 @@
|
|
|
8240
8560
|
"padding": {
|
|
8241
8561
|
"anyOf": [
|
|
8242
8562
|
{
|
|
8563
|
+
"title": "Padding (simple)",
|
|
8243
8564
|
"type": "number",
|
|
8244
8565
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8245
8566
|
"minimum": 0
|
|
@@ -8264,7 +8585,9 @@
|
|
|
8264
8585
|
"type": "number",
|
|
8265
8586
|
"minimum": 0
|
|
8266
8587
|
}
|
|
8267
|
-
}
|
|
8588
|
+
},
|
|
8589
|
+
"title": "Padding (detailed)",
|
|
8590
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8268
8591
|
}
|
|
8269
8592
|
]
|
|
8270
8593
|
}
|
|
@@ -8290,7 +8613,9 @@
|
|
|
8290
8613
|
"type": "number",
|
|
8291
8614
|
"minimum": 0
|
|
8292
8615
|
}
|
|
8293
|
-
}
|
|
8616
|
+
},
|
|
8617
|
+
"title": "Padding (detailed)",
|
|
8618
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8294
8619
|
}
|
|
8295
8620
|
}
|
|
8296
8621
|
},
|
|
@@ -8330,7 +8655,8 @@
|
|
|
8330
8655
|
}
|
|
8331
8656
|
]
|
|
8332
8657
|
}
|
|
8333
|
-
}
|
|
8658
|
+
},
|
|
8659
|
+
"title": "screenshot"
|
|
8334
8660
|
}
|
|
8335
8661
|
]
|
|
8336
8662
|
},
|
|
@@ -8359,7 +8685,8 @@
|
|
|
8359
8685
|
"type": "string",
|
|
8360
8686
|
"description": "Runtime expression for a user-defined output value."
|
|
8361
8687
|
}
|
|
8362
|
-
}
|
|
8688
|
+
},
|
|
8689
|
+
"title": "Outputs (step)"
|
|
8363
8690
|
},
|
|
8364
8691
|
"variables": {
|
|
8365
8692
|
"type": "object",
|
|
@@ -8370,9 +8697,11 @@
|
|
|
8370
8697
|
"type": "string",
|
|
8371
8698
|
"description": "Runtime expression for a user-defined output value."
|
|
8372
8699
|
}
|
|
8373
|
-
}
|
|
8700
|
+
},
|
|
8701
|
+
"title": "Variables (step)"
|
|
8374
8702
|
}
|
|
8375
|
-
}
|
|
8703
|
+
},
|
|
8704
|
+
"title": "Common"
|
|
8376
8705
|
},
|
|
8377
8706
|
{
|
|
8378
8707
|
"type": "object",
|
|
@@ -8386,6 +8715,7 @@
|
|
|
8386
8715
|
"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' ]",
|
|
8387
8716
|
"anyOf": [
|
|
8388
8717
|
{
|
|
8718
|
+
"title": "Record (simple)",
|
|
8389
8719
|
"type": "string",
|
|
8390
8720
|
"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`.",
|
|
8391
8721
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8419,15 +8749,19 @@
|
|
|
8419
8749
|
"false"
|
|
8420
8750
|
]
|
|
8421
8751
|
}
|
|
8422
|
-
}
|
|
8752
|
+
},
|
|
8753
|
+
"title": "Record (detailed)"
|
|
8423
8754
|
},
|
|
8424
8755
|
{
|
|
8425
|
-
"type": "boolean"
|
|
8756
|
+
"type": "boolean",
|
|
8757
|
+
"title": "Record (boolean)",
|
|
8758
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
8426
8759
|
}
|
|
8427
8760
|
],
|
|
8428
8761
|
"components": {
|
|
8429
8762
|
"schemas": {
|
|
8430
8763
|
"string": {
|
|
8764
|
+
"title": "Record (simple)",
|
|
8431
8765
|
"type": "string",
|
|
8432
8766
|
"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`.",
|
|
8433
8767
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8461,7 +8795,8 @@
|
|
|
8461
8795
|
"false"
|
|
8462
8796
|
]
|
|
8463
8797
|
}
|
|
8464
|
-
}
|
|
8798
|
+
},
|
|
8799
|
+
"title": "Record (detailed)"
|
|
8465
8800
|
}
|
|
8466
8801
|
}
|
|
8467
8802
|
},
|
|
@@ -8475,7 +8810,8 @@
|
|
|
8475
8810
|
}
|
|
8476
8811
|
]
|
|
8477
8812
|
}
|
|
8478
|
-
}
|
|
8813
|
+
},
|
|
8814
|
+
"title": "record"
|
|
8479
8815
|
}
|
|
8480
8816
|
]
|
|
8481
8817
|
},
|
|
@@ -8504,7 +8840,8 @@
|
|
|
8504
8840
|
"type": "string",
|
|
8505
8841
|
"description": "Runtime expression for a user-defined output value."
|
|
8506
8842
|
}
|
|
8507
|
-
}
|
|
8843
|
+
},
|
|
8844
|
+
"title": "Outputs (step)"
|
|
8508
8845
|
},
|
|
8509
8846
|
"variables": {
|
|
8510
8847
|
"type": "object",
|
|
@@ -8515,9 +8852,11 @@
|
|
|
8515
8852
|
"type": "string",
|
|
8516
8853
|
"description": "Runtime expression for a user-defined output value."
|
|
8517
8854
|
}
|
|
8518
|
-
}
|
|
8855
|
+
},
|
|
8856
|
+
"title": "Variables (step)"
|
|
8519
8857
|
}
|
|
8520
|
-
}
|
|
8858
|
+
},
|
|
8859
|
+
"title": "Common"
|
|
8521
8860
|
},
|
|
8522
8861
|
{
|
|
8523
8862
|
"type": "object",
|
|
@@ -8539,7 +8878,8 @@
|
|
|
8539
8878
|
true
|
|
8540
8879
|
]
|
|
8541
8880
|
}
|
|
8542
|
-
}
|
|
8881
|
+
},
|
|
8882
|
+
"title": "stopRecord"
|
|
8543
8883
|
}
|
|
8544
8884
|
]
|
|
8545
8885
|
},
|
|
@@ -8568,7 +8908,8 @@
|
|
|
8568
8908
|
"type": "string",
|
|
8569
8909
|
"description": "Runtime expression for a user-defined output value."
|
|
8570
8910
|
}
|
|
8571
|
-
}
|
|
8911
|
+
},
|
|
8912
|
+
"title": "Outputs (step)"
|
|
8572
8913
|
},
|
|
8573
8914
|
"variables": {
|
|
8574
8915
|
"type": "object",
|
|
@@ -8579,11 +8920,15 @@
|
|
|
8579
8920
|
"type": "string",
|
|
8580
8921
|
"description": "Runtime expression for a user-defined output value."
|
|
8581
8922
|
}
|
|
8582
|
-
}
|
|
8923
|
+
},
|
|
8924
|
+
"title": "Variables (step)"
|
|
8583
8925
|
}
|
|
8584
|
-
}
|
|
8926
|
+
},
|
|
8927
|
+
"title": "Common"
|
|
8585
8928
|
},
|
|
8586
8929
|
{
|
|
8930
|
+
"title": "loadVariables",
|
|
8931
|
+
"type": "object",
|
|
8587
8932
|
"required": [
|
|
8588
8933
|
"loadVariables"
|
|
8589
8934
|
],
|
|
@@ -8626,7 +8971,8 @@
|
|
|
8626
8971
|
"type": "string",
|
|
8627
8972
|
"description": "Runtime expression for a user-defined output value."
|
|
8628
8973
|
}
|
|
8629
|
-
}
|
|
8974
|
+
},
|
|
8975
|
+
"title": "Outputs (step)"
|
|
8630
8976
|
},
|
|
8631
8977
|
"variables": {
|
|
8632
8978
|
"type": "object",
|
|
@@ -8637,11 +8983,15 @@
|
|
|
8637
8983
|
"type": "string",
|
|
8638
8984
|
"description": "Runtime expression for a user-defined output value."
|
|
8639
8985
|
}
|
|
8640
|
-
}
|
|
8986
|
+
},
|
|
8987
|
+
"title": "Variables (step)"
|
|
8641
8988
|
}
|
|
8642
|
-
}
|
|
8989
|
+
},
|
|
8990
|
+
"title": "Common"
|
|
8643
8991
|
},
|
|
8644
8992
|
{
|
|
8993
|
+
"title": "wait",
|
|
8994
|
+
"type": "object",
|
|
8645
8995
|
"required": [
|
|
8646
8996
|
"wait"
|
|
8647
8997
|
],
|
|
@@ -8653,9 +9003,11 @@
|
|
|
8653
9003
|
"default": 5000,
|
|
8654
9004
|
"anyOf": [
|
|
8655
9005
|
{
|
|
8656
|
-
"type": "number"
|
|
9006
|
+
"type": "number",
|
|
9007
|
+
"title": "Wait (simple)"
|
|
8657
9008
|
},
|
|
8658
9009
|
{
|
|
9010
|
+
"title": "Wait (environment variable)",
|
|
8659
9011
|
"type": "string",
|
|
8660
9012
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
8661
9013
|
"transform": [
|
|
@@ -8663,12 +9015,14 @@
|
|
|
8663
9015
|
]
|
|
8664
9016
|
},
|
|
8665
9017
|
{
|
|
8666
|
-
"type": "boolean"
|
|
9018
|
+
"type": "boolean",
|
|
9019
|
+
"title": "Wait (boolean)"
|
|
8667
9020
|
}
|
|
8668
9021
|
],
|
|
8669
9022
|
"components": {
|
|
8670
9023
|
"schemas": {
|
|
8671
9024
|
"string": {
|
|
9025
|
+
"title": "Wait (environment variable)",
|
|
8672
9026
|
"type": "string",
|
|
8673
9027
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
8674
9028
|
"transform": [
|
|
@@ -9037,7 +9391,8 @@
|
|
|
9037
9391
|
]
|
|
9038
9392
|
}
|
|
9039
9393
|
}
|
|
9040
|
-
}
|
|
9394
|
+
},
|
|
9395
|
+
"title": "Resolved context"
|
|
9041
9396
|
}
|
|
9042
9397
|
}
|
|
9043
9398
|
},
|
|
@@ -9095,7 +9450,8 @@
|
|
|
9095
9450
|
"type": "object",
|
|
9096
9451
|
"readOnly": true,
|
|
9097
9452
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
9098
|
-
"additionalProperties": true
|
|
9453
|
+
"additionalProperties": true,
|
|
9454
|
+
"title": "OpenAPI definition"
|
|
9099
9455
|
},
|
|
9100
9456
|
"operationId": {
|
|
9101
9457
|
"type": "string",
|
|
@@ -9147,7 +9503,8 @@
|
|
|
9147
9503
|
"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.",
|
|
9148
9504
|
"additionalProperties": {
|
|
9149
9505
|
"type": "string"
|
|
9150
|
-
}
|
|
9506
|
+
},
|
|
9507
|
+
"title": "OpenAPI request headers"
|
|
9151
9508
|
}
|
|
9152
9509
|
},
|
|
9153
9510
|
"components": {
|
|
@@ -9233,7 +9590,8 @@
|
|
|
9233
9590
|
"required": [
|
|
9234
9591
|
"name",
|
|
9235
9592
|
"descriptionPath"
|
|
9236
|
-
]
|
|
9593
|
+
],
|
|
9594
|
+
"title": "OpenAPI description (test)"
|
|
9237
9595
|
}
|
|
9238
9596
|
]
|
|
9239
9597
|
}
|