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
|
@@ -134,7 +134,8 @@
|
|
|
134
134
|
"type": "integer",
|
|
135
135
|
"description": "Height of the browser window in pixels."
|
|
136
136
|
}
|
|
137
|
-
}
|
|
137
|
+
},
|
|
138
|
+
"title": "Browser Window"
|
|
138
139
|
},
|
|
139
140
|
"viewport": {
|
|
140
141
|
"type": "object",
|
|
@@ -149,9 +150,11 @@
|
|
|
149
150
|
"type": "integer",
|
|
150
151
|
"description": "Height of the viewport in pixels."
|
|
151
152
|
}
|
|
152
|
-
}
|
|
153
|
+
},
|
|
154
|
+
"title": "Browser Viewport"
|
|
153
155
|
}
|
|
154
|
-
}
|
|
156
|
+
},
|
|
157
|
+
"title": "Browser"
|
|
155
158
|
},
|
|
156
159
|
{
|
|
157
160
|
"type": "array",
|
|
@@ -205,7 +208,8 @@
|
|
|
205
208
|
"type": "integer",
|
|
206
209
|
"description": "Height of the browser window in pixels."
|
|
207
210
|
}
|
|
208
|
-
}
|
|
211
|
+
},
|
|
212
|
+
"title": "Browser Window"
|
|
209
213
|
},
|
|
210
214
|
"viewport": {
|
|
211
215
|
"type": "object",
|
|
@@ -220,9 +224,11 @@
|
|
|
220
224
|
"type": "integer",
|
|
221
225
|
"description": "Height of the viewport in pixels."
|
|
222
226
|
}
|
|
223
|
-
}
|
|
227
|
+
},
|
|
228
|
+
"title": "Browser Viewport"
|
|
224
229
|
}
|
|
225
|
-
}
|
|
230
|
+
},
|
|
231
|
+
"title": "Browser"
|
|
226
232
|
}
|
|
227
233
|
]
|
|
228
234
|
}
|
|
@@ -288,7 +294,8 @@
|
|
|
288
294
|
"type": "integer",
|
|
289
295
|
"description": "Height of the browser window in pixels."
|
|
290
296
|
}
|
|
291
|
-
}
|
|
297
|
+
},
|
|
298
|
+
"title": "Browser Window"
|
|
292
299
|
},
|
|
293
300
|
"viewport": {
|
|
294
301
|
"type": "object",
|
|
@@ -303,9 +310,11 @@
|
|
|
303
310
|
"type": "integer",
|
|
304
311
|
"description": "Height of the viewport in pixels."
|
|
305
312
|
}
|
|
306
|
-
}
|
|
313
|
+
},
|
|
314
|
+
"title": "Browser Viewport"
|
|
307
315
|
}
|
|
308
|
-
}
|
|
316
|
+
},
|
|
317
|
+
"title": "Browser"
|
|
309
318
|
}
|
|
310
319
|
}
|
|
311
320
|
},
|
|
@@ -442,7 +451,8 @@
|
|
|
442
451
|
"type": "object",
|
|
443
452
|
"readOnly": true,
|
|
444
453
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
445
|
-
"additionalProperties": true
|
|
454
|
+
"additionalProperties": true,
|
|
455
|
+
"title": "OpenAPI definition"
|
|
446
456
|
},
|
|
447
457
|
"operationId": {
|
|
448
458
|
"type": "string",
|
|
@@ -494,7 +504,8 @@
|
|
|
494
504
|
"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.",
|
|
495
505
|
"additionalProperties": {
|
|
496
506
|
"type": "string"
|
|
497
|
-
}
|
|
507
|
+
},
|
|
508
|
+
"title": "OpenAPI request headers"
|
|
498
509
|
}
|
|
499
510
|
},
|
|
500
511
|
"components": {
|
|
@@ -580,7 +591,8 @@
|
|
|
580
591
|
"required": [
|
|
581
592
|
"name",
|
|
582
593
|
"descriptionPath"
|
|
583
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"title": "OpenAPI description (test)"
|
|
584
596
|
}
|
|
585
597
|
]
|
|
586
598
|
}
|
|
@@ -708,7 +720,8 @@
|
|
|
708
720
|
"type": "integer",
|
|
709
721
|
"description": "Height of the browser window in pixels."
|
|
710
722
|
}
|
|
711
|
-
}
|
|
723
|
+
},
|
|
724
|
+
"title": "Browser Window"
|
|
712
725
|
},
|
|
713
726
|
"viewport": {
|
|
714
727
|
"type": "object",
|
|
@@ -723,9 +736,11 @@
|
|
|
723
736
|
"type": "integer",
|
|
724
737
|
"description": "Height of the viewport in pixels."
|
|
725
738
|
}
|
|
726
|
-
}
|
|
739
|
+
},
|
|
740
|
+
"title": "Browser Viewport"
|
|
727
741
|
}
|
|
728
|
-
}
|
|
742
|
+
},
|
|
743
|
+
"title": "Browser"
|
|
729
744
|
},
|
|
730
745
|
{
|
|
731
746
|
"type": "array",
|
|
@@ -779,7 +794,8 @@
|
|
|
779
794
|
"type": "integer",
|
|
780
795
|
"description": "Height of the browser window in pixels."
|
|
781
796
|
}
|
|
782
|
-
}
|
|
797
|
+
},
|
|
798
|
+
"title": "Browser Window"
|
|
783
799
|
},
|
|
784
800
|
"viewport": {
|
|
785
801
|
"type": "object",
|
|
@@ -794,9 +810,11 @@
|
|
|
794
810
|
"type": "integer",
|
|
795
811
|
"description": "Height of the viewport in pixels."
|
|
796
812
|
}
|
|
797
|
-
}
|
|
813
|
+
},
|
|
814
|
+
"title": "Browser Viewport"
|
|
798
815
|
}
|
|
799
|
-
}
|
|
816
|
+
},
|
|
817
|
+
"title": "Browser"
|
|
800
818
|
}
|
|
801
819
|
]
|
|
802
820
|
}
|
|
@@ -862,7 +880,8 @@
|
|
|
862
880
|
"type": "integer",
|
|
863
881
|
"description": "Height of the browser window in pixels."
|
|
864
882
|
}
|
|
865
|
-
}
|
|
883
|
+
},
|
|
884
|
+
"title": "Browser Window"
|
|
866
885
|
},
|
|
867
886
|
"viewport": {
|
|
868
887
|
"type": "object",
|
|
@@ -877,9 +896,11 @@
|
|
|
877
896
|
"type": "integer",
|
|
878
897
|
"description": "Height of the viewport in pixels."
|
|
879
898
|
}
|
|
880
|
-
}
|
|
899
|
+
},
|
|
900
|
+
"title": "Browser Viewport"
|
|
881
901
|
}
|
|
882
|
-
}
|
|
902
|
+
},
|
|
903
|
+
"title": "Browser"
|
|
883
904
|
}
|
|
884
905
|
}
|
|
885
906
|
},
|
|
@@ -1016,7 +1037,8 @@
|
|
|
1016
1037
|
"type": "object",
|
|
1017
1038
|
"readOnly": true,
|
|
1018
1039
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
1019
|
-
"additionalProperties": true
|
|
1040
|
+
"additionalProperties": true,
|
|
1041
|
+
"title": "OpenAPI definition"
|
|
1020
1042
|
},
|
|
1021
1043
|
"operationId": {
|
|
1022
1044
|
"type": "string",
|
|
@@ -1068,7 +1090,8 @@
|
|
|
1068
1090
|
"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.",
|
|
1069
1091
|
"additionalProperties": {
|
|
1070
1092
|
"type": "string"
|
|
1071
|
-
}
|
|
1093
|
+
},
|
|
1094
|
+
"title": "OpenAPI request headers"
|
|
1072
1095
|
}
|
|
1073
1096
|
},
|
|
1074
1097
|
"components": {
|
|
@@ -1154,7 +1177,8 @@
|
|
|
1154
1177
|
"required": [
|
|
1155
1178
|
"name",
|
|
1156
1179
|
"descriptionPath"
|
|
1157
|
-
]
|
|
1180
|
+
],
|
|
1181
|
+
"title": "OpenAPI description (test)"
|
|
1158
1182
|
}
|
|
1159
1183
|
]
|
|
1160
1184
|
}
|
|
@@ -1201,7 +1225,8 @@
|
|
|
1201
1225
|
"type": "string",
|
|
1202
1226
|
"description": "Runtime expression for a user-defined output value."
|
|
1203
1227
|
}
|
|
1204
|
-
}
|
|
1228
|
+
},
|
|
1229
|
+
"title": "Outputs (step)"
|
|
1205
1230
|
},
|
|
1206
1231
|
"variables": {
|
|
1207
1232
|
"type": "object",
|
|
@@ -1212,9 +1237,11 @@
|
|
|
1212
1237
|
"type": "string",
|
|
1213
1238
|
"description": "Runtime expression for a user-defined output value."
|
|
1214
1239
|
}
|
|
1215
|
-
}
|
|
1240
|
+
},
|
|
1241
|
+
"title": "Variables (step)"
|
|
1216
1242
|
}
|
|
1217
|
-
}
|
|
1243
|
+
},
|
|
1244
|
+
"title": "Common"
|
|
1218
1245
|
},
|
|
1219
1246
|
"stepId": {
|
|
1220
1247
|
"type": "string",
|
|
@@ -1233,7 +1260,8 @@
|
|
|
1233
1260
|
"type": "string",
|
|
1234
1261
|
"description": "Runtime expression for a user-defined output value."
|
|
1235
1262
|
}
|
|
1236
|
-
}
|
|
1263
|
+
},
|
|
1264
|
+
"title": "Outputs (step)"
|
|
1237
1265
|
},
|
|
1238
1266
|
"variables": {
|
|
1239
1267
|
"type": "object",
|
|
@@ -1244,7 +1272,8 @@
|
|
|
1244
1272
|
"type": "string",
|
|
1245
1273
|
"description": "Runtime expression for a user-defined output value."
|
|
1246
1274
|
}
|
|
1247
|
-
}
|
|
1275
|
+
},
|
|
1276
|
+
"title": "Variables (step)"
|
|
1248
1277
|
}
|
|
1249
1278
|
}
|
|
1250
1279
|
},
|
|
@@ -1274,7 +1303,8 @@
|
|
|
1274
1303
|
"type": "string",
|
|
1275
1304
|
"description": "Runtime expression for a user-defined output value."
|
|
1276
1305
|
}
|
|
1277
|
-
}
|
|
1306
|
+
},
|
|
1307
|
+
"title": "Outputs (step)"
|
|
1278
1308
|
},
|
|
1279
1309
|
"variables": {
|
|
1280
1310
|
"type": "object",
|
|
@@ -1285,9 +1315,11 @@
|
|
|
1285
1315
|
"type": "string",
|
|
1286
1316
|
"description": "Runtime expression for a user-defined output value."
|
|
1287
1317
|
}
|
|
1288
|
-
}
|
|
1318
|
+
},
|
|
1319
|
+
"title": "Variables (step)"
|
|
1289
1320
|
}
|
|
1290
|
-
}
|
|
1321
|
+
},
|
|
1322
|
+
"title": "Common"
|
|
1291
1323
|
},
|
|
1292
1324
|
{
|
|
1293
1325
|
"type": "object",
|
|
@@ -1300,6 +1332,7 @@
|
|
|
1300
1332
|
"title": "checkLink",
|
|
1301
1333
|
"anyOf": [
|
|
1302
1334
|
{
|
|
1335
|
+
"title": "Check link (detailed)",
|
|
1303
1336
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
1304
1337
|
"type": "string",
|
|
1305
1338
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -1308,6 +1341,7 @@
|
|
|
1308
1341
|
]
|
|
1309
1342
|
},
|
|
1310
1343
|
{
|
|
1344
|
+
"title": "Check link (detailed)",
|
|
1311
1345
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
1312
1346
|
"type": "object",
|
|
1313
1347
|
"additionalProperties": false,
|
|
@@ -1361,6 +1395,7 @@
|
|
|
1361
1395
|
"components": {
|
|
1362
1396
|
"schemas": {
|
|
1363
1397
|
"string": {
|
|
1398
|
+
"title": "Check link (detailed)",
|
|
1364
1399
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
1365
1400
|
"type": "string",
|
|
1366
1401
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -1369,6 +1404,7 @@
|
|
|
1369
1404
|
]
|
|
1370
1405
|
},
|
|
1371
1406
|
"object": {
|
|
1407
|
+
"title": "Check link (detailed)",
|
|
1372
1408
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
1373
1409
|
"type": "object",
|
|
1374
1410
|
"additionalProperties": false,
|
|
@@ -1436,7 +1472,8 @@
|
|
|
1436
1472
|
}
|
|
1437
1473
|
]
|
|
1438
1474
|
}
|
|
1439
|
-
}
|
|
1475
|
+
},
|
|
1476
|
+
"title": "checkLink"
|
|
1440
1477
|
}
|
|
1441
1478
|
]
|
|
1442
1479
|
},
|
|
@@ -1465,7 +1502,8 @@
|
|
|
1465
1502
|
"type": "string",
|
|
1466
1503
|
"description": "Runtime expression for a user-defined output value."
|
|
1467
1504
|
}
|
|
1468
|
-
}
|
|
1505
|
+
},
|
|
1506
|
+
"title": "Outputs (step)"
|
|
1469
1507
|
},
|
|
1470
1508
|
"variables": {
|
|
1471
1509
|
"type": "object",
|
|
@@ -1476,9 +1514,11 @@
|
|
|
1476
1514
|
"type": "string",
|
|
1477
1515
|
"description": "Runtime expression for a user-defined output value."
|
|
1478
1516
|
}
|
|
1479
|
-
}
|
|
1517
|
+
},
|
|
1518
|
+
"title": "Variables (step)"
|
|
1480
1519
|
}
|
|
1481
|
-
}
|
|
1520
|
+
},
|
|
1521
|
+
"title": "Common"
|
|
1482
1522
|
},
|
|
1483
1523
|
{
|
|
1484
1524
|
"type": "object",
|
|
@@ -1492,7 +1532,7 @@
|
|
|
1492
1532
|
"description": "Click or tap an element.",
|
|
1493
1533
|
"anyOf": [
|
|
1494
1534
|
{
|
|
1495
|
-
"title": "
|
|
1535
|
+
"title": "Click element (simple)",
|
|
1496
1536
|
"type": "string",
|
|
1497
1537
|
"description": "Display text or selector of the element to find."
|
|
1498
1538
|
},
|
|
@@ -1538,7 +1578,7 @@
|
|
|
1538
1578
|
"components": {
|
|
1539
1579
|
"schemas": {
|
|
1540
1580
|
"string": {
|
|
1541
|
-
"title": "
|
|
1581
|
+
"title": "Click element (simple)",
|
|
1542
1582
|
"type": "string",
|
|
1543
1583
|
"description": "Display text or selector of the element to find."
|
|
1544
1584
|
},
|
|
@@ -1602,7 +1642,8 @@
|
|
|
1602
1642
|
}
|
|
1603
1643
|
]
|
|
1604
1644
|
}
|
|
1605
|
-
}
|
|
1645
|
+
},
|
|
1646
|
+
"title": "click"
|
|
1606
1647
|
}
|
|
1607
1648
|
]
|
|
1608
1649
|
},
|
|
@@ -1631,7 +1672,8 @@
|
|
|
1631
1672
|
"type": "string",
|
|
1632
1673
|
"description": "Runtime expression for a user-defined output value."
|
|
1633
1674
|
}
|
|
1634
|
-
}
|
|
1675
|
+
},
|
|
1676
|
+
"title": "Outputs (step)"
|
|
1635
1677
|
},
|
|
1636
1678
|
"variables": {
|
|
1637
1679
|
"type": "object",
|
|
@@ -1642,9 +1684,11 @@
|
|
|
1642
1684
|
"type": "string",
|
|
1643
1685
|
"description": "Runtime expression for a user-defined output value."
|
|
1644
1686
|
}
|
|
1645
|
-
}
|
|
1687
|
+
},
|
|
1688
|
+
"title": "Variables (step)"
|
|
1646
1689
|
}
|
|
1647
|
-
}
|
|
1690
|
+
},
|
|
1691
|
+
"title": "Common"
|
|
1648
1692
|
},
|
|
1649
1693
|
{
|
|
1650
1694
|
"type": "object",
|
|
@@ -1706,7 +1750,7 @@
|
|
|
1706
1750
|
"description": "Click or tap an element.",
|
|
1707
1751
|
"anyOf": [
|
|
1708
1752
|
{
|
|
1709
|
-
"title": "
|
|
1753
|
+
"title": "Click element (simple)",
|
|
1710
1754
|
"type": "string",
|
|
1711
1755
|
"description": "Display text or selector of the element to find."
|
|
1712
1756
|
},
|
|
@@ -1752,7 +1796,7 @@
|
|
|
1752
1796
|
"components": {
|
|
1753
1797
|
"schemas": {
|
|
1754
1798
|
"string": {
|
|
1755
|
-
"title": "
|
|
1799
|
+
"title": "Click element (simple)",
|
|
1756
1800
|
"type": "string",
|
|
1757
1801
|
"description": "Display text or selector of the element to find."
|
|
1758
1802
|
},
|
|
@@ -1828,7 +1872,8 @@
|
|
|
1828
1872
|
"middle"
|
|
1829
1873
|
]
|
|
1830
1874
|
}
|
|
1831
|
-
}
|
|
1875
|
+
},
|
|
1876
|
+
"title": "Find element and click"
|
|
1832
1877
|
}
|
|
1833
1878
|
]
|
|
1834
1879
|
},
|
|
@@ -1841,6 +1886,7 @@
|
|
|
1841
1886
|
"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$`.",
|
|
1842
1887
|
"anyOf": [
|
|
1843
1888
|
{
|
|
1889
|
+
"title": "Type keys (simple)",
|
|
1844
1890
|
"description": "Sequence of keys to enter.",
|
|
1845
1891
|
"anyOf": [
|
|
1846
1892
|
{
|
|
@@ -1859,9 +1905,11 @@
|
|
|
1859
1905
|
]
|
|
1860
1906
|
},
|
|
1861
1907
|
{
|
|
1908
|
+
"title": "Type keys (detailed)",
|
|
1862
1909
|
"type": "object",
|
|
1863
1910
|
"properties": {
|
|
1864
1911
|
"keys": {
|
|
1912
|
+
"title": "Type keys (simple)",
|
|
1865
1913
|
"description": "Sequence of keys to enter.",
|
|
1866
1914
|
"anyOf": [
|
|
1867
1915
|
{
|
|
@@ -1898,6 +1946,7 @@
|
|
|
1898
1946
|
"components": {
|
|
1899
1947
|
"schemas": {
|
|
1900
1948
|
"keys": {
|
|
1949
|
+
"title": "Type keys (simple)",
|
|
1901
1950
|
"description": "Sequence of keys to enter.",
|
|
1902
1951
|
"anyOf": [
|
|
1903
1952
|
{
|
|
@@ -1916,9 +1965,11 @@
|
|
|
1916
1965
|
]
|
|
1917
1966
|
},
|
|
1918
1967
|
"object": {
|
|
1968
|
+
"title": "Type keys (detailed)",
|
|
1919
1969
|
"type": "object",
|
|
1920
1970
|
"properties": {
|
|
1921
1971
|
"keys": {
|
|
1972
|
+
"title": "Type keys (simple)",
|
|
1922
1973
|
"description": "Sequence of keys to enter.",
|
|
1923
1974
|
"anyOf": [
|
|
1924
1975
|
{
|
|
@@ -1985,7 +2036,8 @@
|
|
|
1985
2036
|
"required": [
|
|
1986
2037
|
"selector",
|
|
1987
2038
|
"elementText"
|
|
1988
|
-
]
|
|
2039
|
+
],
|
|
2040
|
+
"title": "Find element and type"
|
|
1989
2041
|
}
|
|
1990
2042
|
}
|
|
1991
2043
|
]
|
|
@@ -2044,7 +2096,7 @@
|
|
|
2044
2096
|
"description": "Click or tap an element.",
|
|
2045
2097
|
"anyOf": [
|
|
2046
2098
|
{
|
|
2047
|
-
"title": "
|
|
2099
|
+
"title": "Click element (simple)",
|
|
2048
2100
|
"type": "string",
|
|
2049
2101
|
"description": "Display text or selector of the element to find."
|
|
2050
2102
|
},
|
|
@@ -2090,7 +2142,7 @@
|
|
|
2090
2142
|
"components": {
|
|
2091
2143
|
"schemas": {
|
|
2092
2144
|
"string": {
|
|
2093
|
-
"title": "
|
|
2145
|
+
"title": "Click element (simple)",
|
|
2094
2146
|
"type": "string",
|
|
2095
2147
|
"description": "Display text or selector of the element to find."
|
|
2096
2148
|
},
|
|
@@ -2166,7 +2218,8 @@
|
|
|
2166
2218
|
"middle"
|
|
2167
2219
|
]
|
|
2168
2220
|
}
|
|
2169
|
-
}
|
|
2221
|
+
},
|
|
2222
|
+
"title": "Find element and click"
|
|
2170
2223
|
}
|
|
2171
2224
|
]
|
|
2172
2225
|
},
|
|
@@ -2179,6 +2232,7 @@
|
|
|
2179
2232
|
"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$`.",
|
|
2180
2233
|
"anyOf": [
|
|
2181
2234
|
{
|
|
2235
|
+
"title": "Type keys (simple)",
|
|
2182
2236
|
"description": "Sequence of keys to enter.",
|
|
2183
2237
|
"anyOf": [
|
|
2184
2238
|
{
|
|
@@ -2197,9 +2251,11 @@
|
|
|
2197
2251
|
]
|
|
2198
2252
|
},
|
|
2199
2253
|
{
|
|
2254
|
+
"title": "Type keys (detailed)",
|
|
2200
2255
|
"type": "object",
|
|
2201
2256
|
"properties": {
|
|
2202
2257
|
"keys": {
|
|
2258
|
+
"title": "Type keys (simple)",
|
|
2203
2259
|
"description": "Sequence of keys to enter.",
|
|
2204
2260
|
"anyOf": [
|
|
2205
2261
|
{
|
|
@@ -2236,6 +2292,7 @@
|
|
|
2236
2292
|
"components": {
|
|
2237
2293
|
"schemas": {
|
|
2238
2294
|
"keys": {
|
|
2295
|
+
"title": "Type keys (simple)",
|
|
2239
2296
|
"description": "Sequence of keys to enter.",
|
|
2240
2297
|
"anyOf": [
|
|
2241
2298
|
{
|
|
@@ -2254,9 +2311,11 @@
|
|
|
2254
2311
|
]
|
|
2255
2312
|
},
|
|
2256
2313
|
"object": {
|
|
2314
|
+
"title": "Type keys (detailed)",
|
|
2257
2315
|
"type": "object",
|
|
2258
2316
|
"properties": {
|
|
2259
2317
|
"keys": {
|
|
2318
|
+
"title": "Type keys (simple)",
|
|
2260
2319
|
"description": "Sequence of keys to enter.",
|
|
2261
2320
|
"anyOf": [
|
|
2262
2321
|
{
|
|
@@ -2323,7 +2382,8 @@
|
|
|
2323
2382
|
"required": [
|
|
2324
2383
|
"selector",
|
|
2325
2384
|
"elementText"
|
|
2326
|
-
]
|
|
2385
|
+
],
|
|
2386
|
+
"title": "Find element and type"
|
|
2327
2387
|
}
|
|
2328
2388
|
}
|
|
2329
2389
|
]
|
|
@@ -2366,7 +2426,8 @@
|
|
|
2366
2426
|
}
|
|
2367
2427
|
]
|
|
2368
2428
|
}
|
|
2369
|
-
}
|
|
2429
|
+
},
|
|
2430
|
+
"title": "find"
|
|
2370
2431
|
}
|
|
2371
2432
|
]
|
|
2372
2433
|
},
|
|
@@ -2395,7 +2456,8 @@
|
|
|
2395
2456
|
"type": "string",
|
|
2396
2457
|
"description": "Runtime expression for a user-defined output value."
|
|
2397
2458
|
}
|
|
2398
|
-
}
|
|
2459
|
+
},
|
|
2460
|
+
"title": "Outputs (step)"
|
|
2399
2461
|
},
|
|
2400
2462
|
"variables": {
|
|
2401
2463
|
"type": "object",
|
|
@@ -2406,9 +2468,11 @@
|
|
|
2406
2468
|
"type": "string",
|
|
2407
2469
|
"description": "Runtime expression for a user-defined output value."
|
|
2408
2470
|
}
|
|
2409
|
-
}
|
|
2471
|
+
},
|
|
2472
|
+
"title": "Variables (step)"
|
|
2410
2473
|
}
|
|
2411
|
-
}
|
|
2474
|
+
},
|
|
2475
|
+
"title": "Common"
|
|
2412
2476
|
},
|
|
2413
2477
|
{
|
|
2414
2478
|
"type": "object",
|
|
@@ -2421,6 +2485,7 @@
|
|
|
2421
2485
|
"title": "goTo",
|
|
2422
2486
|
"anyOf": [
|
|
2423
2487
|
{
|
|
2488
|
+
"title": "Go to URL (simple)",
|
|
2424
2489
|
"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.",
|
|
2425
2490
|
"type": "string",
|
|
2426
2491
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2451,12 +2516,14 @@
|
|
|
2451
2516
|
"trim"
|
|
2452
2517
|
]
|
|
2453
2518
|
}
|
|
2454
|
-
}
|
|
2519
|
+
},
|
|
2520
|
+
"title": "Go to URL (detailed)"
|
|
2455
2521
|
}
|
|
2456
2522
|
],
|
|
2457
2523
|
"components": {
|
|
2458
2524
|
"schemas": {
|
|
2459
2525
|
"string": {
|
|
2526
|
+
"title": "Go to URL (simple)",
|
|
2460
2527
|
"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.",
|
|
2461
2528
|
"type": "string",
|
|
2462
2529
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2487,7 +2554,8 @@
|
|
|
2487
2554
|
"trim"
|
|
2488
2555
|
]
|
|
2489
2556
|
}
|
|
2490
|
-
}
|
|
2557
|
+
},
|
|
2558
|
+
"title": "Go to URL (detailed)"
|
|
2491
2559
|
}
|
|
2492
2560
|
}
|
|
2493
2561
|
},
|
|
@@ -2503,7 +2571,8 @@
|
|
|
2503
2571
|
}
|
|
2504
2572
|
]
|
|
2505
2573
|
}
|
|
2506
|
-
}
|
|
2574
|
+
},
|
|
2575
|
+
"title": "goTo"
|
|
2507
2576
|
}
|
|
2508
2577
|
]
|
|
2509
2578
|
},
|
|
@@ -2532,7 +2601,8 @@
|
|
|
2532
2601
|
"type": "string",
|
|
2533
2602
|
"description": "Runtime expression for a user-defined output value."
|
|
2534
2603
|
}
|
|
2535
|
-
}
|
|
2604
|
+
},
|
|
2605
|
+
"title": "Outputs (step)"
|
|
2536
2606
|
},
|
|
2537
2607
|
"variables": {
|
|
2538
2608
|
"type": "object",
|
|
@@ -2543,9 +2613,11 @@
|
|
|
2543
2613
|
"type": "string",
|
|
2544
2614
|
"description": "Runtime expression for a user-defined output value."
|
|
2545
2615
|
}
|
|
2546
|
-
}
|
|
2616
|
+
},
|
|
2617
|
+
"title": "Variables (step)"
|
|
2547
2618
|
}
|
|
2548
|
-
}
|
|
2619
|
+
},
|
|
2620
|
+
"title": "Common"
|
|
2549
2621
|
},
|
|
2550
2622
|
{
|
|
2551
2623
|
"type": "object",
|
|
@@ -2559,7 +2631,7 @@
|
|
|
2559
2631
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
2560
2632
|
"anyOf": [
|
|
2561
2633
|
{
|
|
2562
|
-
"title": "
|
|
2634
|
+
"title": "HTTP request (simple)",
|
|
2563
2635
|
"type": "string",
|
|
2564
2636
|
"description": "URL for the HTTP request.",
|
|
2565
2637
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2568,6 +2640,7 @@
|
|
|
2568
2640
|
]
|
|
2569
2641
|
},
|
|
2570
2642
|
{
|
|
2643
|
+
"title": "HTTP request (detailed)",
|
|
2571
2644
|
"type": "object",
|
|
2572
2645
|
"anyOf": [
|
|
2573
2646
|
{
|
|
@@ -2584,7 +2657,7 @@
|
|
|
2584
2657
|
"additionalProperties": false,
|
|
2585
2658
|
"properties": {
|
|
2586
2659
|
"url": {
|
|
2587
|
-
"title": "
|
|
2660
|
+
"title": "HTTP request (simple)",
|
|
2588
2661
|
"type": "string",
|
|
2589
2662
|
"description": "URL for the HTTP request.",
|
|
2590
2663
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2640,7 +2713,8 @@
|
|
|
2640
2713
|
"type": "object",
|
|
2641
2714
|
"readOnly": true,
|
|
2642
2715
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
2643
|
-
"additionalProperties": true
|
|
2716
|
+
"additionalProperties": true,
|
|
2717
|
+
"title": "OpenAPI definition"
|
|
2644
2718
|
},
|
|
2645
2719
|
"operationId": {
|
|
2646
2720
|
"type": "string",
|
|
@@ -2692,7 +2766,8 @@
|
|
|
2692
2766
|
"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.",
|
|
2693
2767
|
"additionalProperties": {
|
|
2694
2768
|
"type": "string"
|
|
2695
|
-
}
|
|
2769
|
+
},
|
|
2770
|
+
"title": "OpenAPI request headers"
|
|
2696
2771
|
}
|
|
2697
2772
|
},
|
|
2698
2773
|
"components": {
|
|
@@ -2772,7 +2847,8 @@
|
|
|
2772
2847
|
"type": "object",
|
|
2773
2848
|
"required": [
|
|
2774
2849
|
"operationId"
|
|
2775
|
-
]
|
|
2850
|
+
],
|
|
2851
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
2776
2852
|
}
|
|
2777
2853
|
]
|
|
2778
2854
|
}
|
|
@@ -2823,34 +2899,43 @@
|
|
|
2823
2899
|
"type": "object",
|
|
2824
2900
|
"additionalProperties": true,
|
|
2825
2901
|
"properties": {},
|
|
2826
|
-
"default": {}
|
|
2902
|
+
"default": {},
|
|
2903
|
+
"title": "Request headers"
|
|
2827
2904
|
},
|
|
2828
2905
|
"parameters": {
|
|
2829
2906
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
2830
2907
|
"type": "object",
|
|
2831
2908
|
"additionalProperties": true,
|
|
2832
2909
|
"default": {},
|
|
2833
|
-
"properties": {}
|
|
2910
|
+
"properties": {},
|
|
2911
|
+
"title": "Request parameters"
|
|
2834
2912
|
},
|
|
2835
2913
|
"body": {
|
|
2836
2914
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
2837
2915
|
"anyOf": [
|
|
2838
2916
|
{
|
|
2917
|
+
"title": "Request body object",
|
|
2918
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
2839
2919
|
"type": "object",
|
|
2840
2920
|
"additionalProperties": true,
|
|
2841
2921
|
"properties": {}
|
|
2842
2922
|
},
|
|
2843
2923
|
{
|
|
2924
|
+
"title": "Request body array",
|
|
2925
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
2844
2926
|
"type": "array",
|
|
2845
2927
|
"items": {}
|
|
2846
2928
|
},
|
|
2847
2929
|
{
|
|
2930
|
+
"title": "Request body string",
|
|
2931
|
+
"description": "String to include as the body of the HTTP request.",
|
|
2848
2932
|
"type": "string"
|
|
2849
2933
|
}
|
|
2850
2934
|
],
|
|
2851
2935
|
"default": {}
|
|
2852
2936
|
}
|
|
2853
|
-
}
|
|
2937
|
+
},
|
|
2938
|
+
"title": "Request"
|
|
2854
2939
|
},
|
|
2855
2940
|
"response": {
|
|
2856
2941
|
"type": "object",
|
|
@@ -2861,7 +2946,8 @@
|
|
|
2861
2946
|
"type": "object",
|
|
2862
2947
|
"additionalProperties": true,
|
|
2863
2948
|
"properties": {},
|
|
2864
|
-
"default": {}
|
|
2949
|
+
"default": {},
|
|
2950
|
+
"title": "Response headers"
|
|
2865
2951
|
},
|
|
2866
2952
|
"body": {
|
|
2867
2953
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -2869,19 +2955,26 @@
|
|
|
2869
2955
|
{
|
|
2870
2956
|
"type": "object",
|
|
2871
2957
|
"additionalProperties": true,
|
|
2872
|
-
"properties": {}
|
|
2958
|
+
"properties": {},
|
|
2959
|
+
"title": "Response body object",
|
|
2960
|
+
"description": "JSON key/value pairs expected in the response."
|
|
2873
2961
|
},
|
|
2874
2962
|
{
|
|
2963
|
+
"title": "Response body array",
|
|
2964
|
+
"description": "JSON array expected in the response.",
|
|
2875
2965
|
"type": "array",
|
|
2876
2966
|
"items": {}
|
|
2877
2967
|
},
|
|
2878
2968
|
{
|
|
2969
|
+
"title": "Response body string",
|
|
2970
|
+
"description": "String expected in the response.",
|
|
2879
2971
|
"type": "string"
|
|
2880
2972
|
}
|
|
2881
2973
|
],
|
|
2882
2974
|
"default": {}
|
|
2883
2975
|
}
|
|
2884
|
-
}
|
|
2976
|
+
},
|
|
2977
|
+
"title": "Response"
|
|
2885
2978
|
},
|
|
2886
2979
|
"allowAdditionalFields": {
|
|
2887
2980
|
"type": "boolean",
|
|
@@ -2919,7 +3012,7 @@
|
|
|
2919
3012
|
"components": {
|
|
2920
3013
|
"schemas": {
|
|
2921
3014
|
"url": {
|
|
2922
|
-
"title": "
|
|
3015
|
+
"title": "HTTP request (simple)",
|
|
2923
3016
|
"type": "string",
|
|
2924
3017
|
"description": "URL for the HTTP request.",
|
|
2925
3018
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -2928,6 +3021,7 @@
|
|
|
2928
3021
|
]
|
|
2929
3022
|
},
|
|
2930
3023
|
"object": {
|
|
3024
|
+
"title": "HTTP request (detailed)",
|
|
2931
3025
|
"type": "object",
|
|
2932
3026
|
"anyOf": [
|
|
2933
3027
|
{
|
|
@@ -2944,7 +3038,7 @@
|
|
|
2944
3038
|
"additionalProperties": false,
|
|
2945
3039
|
"properties": {
|
|
2946
3040
|
"url": {
|
|
2947
|
-
"title": "
|
|
3041
|
+
"title": "HTTP request (simple)",
|
|
2948
3042
|
"type": "string",
|
|
2949
3043
|
"description": "URL for the HTTP request.",
|
|
2950
3044
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -3000,7 +3094,8 @@
|
|
|
3000
3094
|
"type": "object",
|
|
3001
3095
|
"readOnly": true,
|
|
3002
3096
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
3003
|
-
"additionalProperties": true
|
|
3097
|
+
"additionalProperties": true,
|
|
3098
|
+
"title": "OpenAPI definition"
|
|
3004
3099
|
},
|
|
3005
3100
|
"operationId": {
|
|
3006
3101
|
"type": "string",
|
|
@@ -3052,7 +3147,8 @@
|
|
|
3052
3147
|
"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.",
|
|
3053
3148
|
"additionalProperties": {
|
|
3054
3149
|
"type": "string"
|
|
3055
|
-
}
|
|
3150
|
+
},
|
|
3151
|
+
"title": "OpenAPI request headers"
|
|
3056
3152
|
}
|
|
3057
3153
|
},
|
|
3058
3154
|
"components": {
|
|
@@ -3132,7 +3228,8 @@
|
|
|
3132
3228
|
"type": "object",
|
|
3133
3229
|
"required": [
|
|
3134
3230
|
"operationId"
|
|
3135
|
-
]
|
|
3231
|
+
],
|
|
3232
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
3136
3233
|
}
|
|
3137
3234
|
]
|
|
3138
3235
|
}
|
|
@@ -3183,34 +3280,43 @@
|
|
|
3183
3280
|
"type": "object",
|
|
3184
3281
|
"additionalProperties": true,
|
|
3185
3282
|
"properties": {},
|
|
3186
|
-
"default": {}
|
|
3283
|
+
"default": {},
|
|
3284
|
+
"title": "Request headers"
|
|
3187
3285
|
},
|
|
3188
3286
|
"parameters": {
|
|
3189
3287
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
3190
3288
|
"type": "object",
|
|
3191
3289
|
"additionalProperties": true,
|
|
3192
3290
|
"default": {},
|
|
3193
|
-
"properties": {}
|
|
3291
|
+
"properties": {},
|
|
3292
|
+
"title": "Request parameters"
|
|
3194
3293
|
},
|
|
3195
3294
|
"body": {
|
|
3196
3295
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
3197
3296
|
"anyOf": [
|
|
3198
3297
|
{
|
|
3298
|
+
"title": "Request body object",
|
|
3299
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
3199
3300
|
"type": "object",
|
|
3200
3301
|
"additionalProperties": true,
|
|
3201
3302
|
"properties": {}
|
|
3202
3303
|
},
|
|
3203
3304
|
{
|
|
3305
|
+
"title": "Request body array",
|
|
3306
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
3204
3307
|
"type": "array",
|
|
3205
3308
|
"items": {}
|
|
3206
3309
|
},
|
|
3207
3310
|
{
|
|
3311
|
+
"title": "Request body string",
|
|
3312
|
+
"description": "String to include as the body of the HTTP request.",
|
|
3208
3313
|
"type": "string"
|
|
3209
3314
|
}
|
|
3210
3315
|
],
|
|
3211
3316
|
"default": {}
|
|
3212
3317
|
}
|
|
3213
|
-
}
|
|
3318
|
+
},
|
|
3319
|
+
"title": "Request"
|
|
3214
3320
|
},
|
|
3215
3321
|
"response": {
|
|
3216
3322
|
"type": "object",
|
|
@@ -3221,7 +3327,8 @@
|
|
|
3221
3327
|
"type": "object",
|
|
3222
3328
|
"additionalProperties": true,
|
|
3223
3329
|
"properties": {},
|
|
3224
|
-
"default": {}
|
|
3330
|
+
"default": {},
|
|
3331
|
+
"title": "Response headers"
|
|
3225
3332
|
},
|
|
3226
3333
|
"body": {
|
|
3227
3334
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -3229,19 +3336,26 @@
|
|
|
3229
3336
|
{
|
|
3230
3337
|
"type": "object",
|
|
3231
3338
|
"additionalProperties": true,
|
|
3232
|
-
"properties": {}
|
|
3339
|
+
"properties": {},
|
|
3340
|
+
"title": "Response body object",
|
|
3341
|
+
"description": "JSON key/value pairs expected in the response."
|
|
3233
3342
|
},
|
|
3234
3343
|
{
|
|
3344
|
+
"title": "Response body array",
|
|
3345
|
+
"description": "JSON array expected in the response.",
|
|
3235
3346
|
"type": "array",
|
|
3236
3347
|
"items": {}
|
|
3237
3348
|
},
|
|
3238
3349
|
{
|
|
3350
|
+
"title": "Response body string",
|
|
3351
|
+
"description": "String expected in the response.",
|
|
3239
3352
|
"type": "string"
|
|
3240
3353
|
}
|
|
3241
3354
|
],
|
|
3242
3355
|
"default": {}
|
|
3243
3356
|
}
|
|
3244
|
-
}
|
|
3357
|
+
},
|
|
3358
|
+
"title": "Response"
|
|
3245
3359
|
},
|
|
3246
3360
|
"allowAdditionalFields": {
|
|
3247
3361
|
"type": "boolean",
|
|
@@ -3416,7 +3530,8 @@
|
|
|
3416
3530
|
}
|
|
3417
3531
|
]
|
|
3418
3532
|
}
|
|
3419
|
-
}
|
|
3533
|
+
},
|
|
3534
|
+
"title": "httpRequest"
|
|
3420
3535
|
}
|
|
3421
3536
|
]
|
|
3422
3537
|
},
|
|
@@ -3445,7 +3560,8 @@
|
|
|
3445
3560
|
"type": "string",
|
|
3446
3561
|
"description": "Runtime expression for a user-defined output value."
|
|
3447
3562
|
}
|
|
3448
|
-
}
|
|
3563
|
+
},
|
|
3564
|
+
"title": "Outputs (step)"
|
|
3449
3565
|
},
|
|
3450
3566
|
"variables": {
|
|
3451
3567
|
"type": "object",
|
|
@@ -3456,9 +3572,11 @@
|
|
|
3456
3572
|
"type": "string",
|
|
3457
3573
|
"description": "Runtime expression for a user-defined output value."
|
|
3458
3574
|
}
|
|
3459
|
-
}
|
|
3575
|
+
},
|
|
3576
|
+
"title": "Variables (step)"
|
|
3460
3577
|
}
|
|
3461
|
-
}
|
|
3578
|
+
},
|
|
3579
|
+
"title": "Common"
|
|
3462
3580
|
},
|
|
3463
3581
|
{
|
|
3464
3582
|
"type": "object",
|
|
@@ -3472,6 +3590,8 @@
|
|
|
3472
3590
|
"description": "Perform a native shell command.",
|
|
3473
3591
|
"anyOf": [
|
|
3474
3592
|
{
|
|
3593
|
+
"title": "Run shell command (simple)",
|
|
3594
|
+
"description": "Command to perform in the machine's default shell.",
|
|
3475
3595
|
"type": "string",
|
|
3476
3596
|
"transform": [
|
|
3477
3597
|
"trim"
|
|
@@ -3553,12 +3673,15 @@
|
|
|
3553
3673
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3554
3674
|
"default": 60000
|
|
3555
3675
|
}
|
|
3556
|
-
}
|
|
3676
|
+
},
|
|
3677
|
+
"title": "Run shell command (detailed)"
|
|
3557
3678
|
}
|
|
3558
3679
|
],
|
|
3559
3680
|
"components": {
|
|
3560
3681
|
"schemas": {
|
|
3561
3682
|
"string": {
|
|
3683
|
+
"title": "Run shell command (simple)",
|
|
3684
|
+
"description": "Command to perform in the machine's default shell.",
|
|
3562
3685
|
"type": "string",
|
|
3563
3686
|
"transform": [
|
|
3564
3687
|
"trim"
|
|
@@ -3640,7 +3763,8 @@
|
|
|
3640
3763
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3641
3764
|
"default": 60000
|
|
3642
3765
|
}
|
|
3643
|
-
}
|
|
3766
|
+
},
|
|
3767
|
+
"title": "Run shell command (detailed)"
|
|
3644
3768
|
}
|
|
3645
3769
|
}
|
|
3646
3770
|
},
|
|
@@ -3696,7 +3820,8 @@
|
|
|
3696
3820
|
}
|
|
3697
3821
|
]
|
|
3698
3822
|
}
|
|
3699
|
-
}
|
|
3823
|
+
},
|
|
3824
|
+
"title": "runShell"
|
|
3700
3825
|
}
|
|
3701
3826
|
]
|
|
3702
3827
|
},
|
|
@@ -3725,7 +3850,8 @@
|
|
|
3725
3850
|
"type": "string",
|
|
3726
3851
|
"description": "Runtime expression for a user-defined output value."
|
|
3727
3852
|
}
|
|
3728
|
-
}
|
|
3853
|
+
},
|
|
3854
|
+
"title": "Outputs (step)"
|
|
3729
3855
|
},
|
|
3730
3856
|
"variables": {
|
|
3731
3857
|
"type": "object",
|
|
@@ -3736,9 +3862,11 @@
|
|
|
3736
3862
|
"type": "string",
|
|
3737
3863
|
"description": "Runtime expression for a user-defined output value."
|
|
3738
3864
|
}
|
|
3739
|
-
}
|
|
3865
|
+
},
|
|
3866
|
+
"title": "Variables (step)"
|
|
3740
3867
|
}
|
|
3741
|
-
}
|
|
3868
|
+
},
|
|
3869
|
+
"title": "Common"
|
|
3742
3870
|
},
|
|
3743
3871
|
{
|
|
3744
3872
|
"type": "object",
|
|
@@ -3836,7 +3964,8 @@
|
|
|
3836
3964
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3837
3965
|
"default": 60000
|
|
3838
3966
|
}
|
|
3839
|
-
}
|
|
3967
|
+
},
|
|
3968
|
+
"title": "Run code (detailed)"
|
|
3840
3969
|
}
|
|
3841
3970
|
],
|
|
3842
3971
|
"components": {
|
|
@@ -3926,7 +4055,8 @@
|
|
|
3926
4055
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
3927
4056
|
"default": 60000
|
|
3928
4057
|
}
|
|
3929
|
-
}
|
|
4058
|
+
},
|
|
4059
|
+
"title": "Run code (detailed)"
|
|
3930
4060
|
}
|
|
3931
4061
|
}
|
|
3932
4062
|
},
|
|
@@ -3966,7 +4096,8 @@
|
|
|
3966
4096
|
}
|
|
3967
4097
|
]
|
|
3968
4098
|
}
|
|
3969
|
-
}
|
|
4099
|
+
},
|
|
4100
|
+
"title": "runCode"
|
|
3970
4101
|
}
|
|
3971
4102
|
]
|
|
3972
4103
|
},
|
|
@@ -3995,7 +4126,8 @@
|
|
|
3995
4126
|
"type": "string",
|
|
3996
4127
|
"description": "Runtime expression for a user-defined output value."
|
|
3997
4128
|
}
|
|
3998
|
-
}
|
|
4129
|
+
},
|
|
4130
|
+
"title": "Outputs (step)"
|
|
3999
4131
|
},
|
|
4000
4132
|
"variables": {
|
|
4001
4133
|
"type": "object",
|
|
@@ -4006,9 +4138,11 @@
|
|
|
4006
4138
|
"type": "string",
|
|
4007
4139
|
"description": "Runtime expression for a user-defined output value."
|
|
4008
4140
|
}
|
|
4009
|
-
}
|
|
4141
|
+
},
|
|
4142
|
+
"title": "Variables (step)"
|
|
4010
4143
|
}
|
|
4011
|
-
}
|
|
4144
|
+
},
|
|
4145
|
+
"title": "Common"
|
|
4012
4146
|
},
|
|
4013
4147
|
{
|
|
4014
4148
|
"type": "object",
|
|
@@ -4022,6 +4156,7 @@
|
|
|
4022
4156
|
"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$`.",
|
|
4023
4157
|
"anyOf": [
|
|
4024
4158
|
{
|
|
4159
|
+
"title": "Type keys (simple)",
|
|
4025
4160
|
"description": "Sequence of keys to enter.",
|
|
4026
4161
|
"anyOf": [
|
|
4027
4162
|
{
|
|
@@ -4040,9 +4175,11 @@
|
|
|
4040
4175
|
]
|
|
4041
4176
|
},
|
|
4042
4177
|
{
|
|
4178
|
+
"title": "Type keys (detailed)",
|
|
4043
4179
|
"type": "object",
|
|
4044
4180
|
"properties": {
|
|
4045
4181
|
"keys": {
|
|
4182
|
+
"title": "Type keys (simple)",
|
|
4046
4183
|
"description": "Sequence of keys to enter.",
|
|
4047
4184
|
"anyOf": [
|
|
4048
4185
|
{
|
|
@@ -4079,6 +4216,7 @@
|
|
|
4079
4216
|
"components": {
|
|
4080
4217
|
"schemas": {
|
|
4081
4218
|
"keys": {
|
|
4219
|
+
"title": "Type keys (simple)",
|
|
4082
4220
|
"description": "Sequence of keys to enter.",
|
|
4083
4221
|
"anyOf": [
|
|
4084
4222
|
{
|
|
@@ -4097,9 +4235,11 @@
|
|
|
4097
4235
|
]
|
|
4098
4236
|
},
|
|
4099
4237
|
"object": {
|
|
4238
|
+
"title": "Type keys (detailed)",
|
|
4100
4239
|
"type": "object",
|
|
4101
4240
|
"properties": {
|
|
4102
4241
|
"keys": {
|
|
4242
|
+
"title": "Type keys (simple)",
|
|
4103
4243
|
"description": "Sequence of keys to enter.",
|
|
4104
4244
|
"anyOf": [
|
|
4105
4245
|
{
|
|
@@ -4160,7 +4300,8 @@
|
|
|
4160
4300
|
}
|
|
4161
4301
|
]
|
|
4162
4302
|
}
|
|
4163
|
-
}
|
|
4303
|
+
},
|
|
4304
|
+
"title": "type"
|
|
4164
4305
|
}
|
|
4165
4306
|
]
|
|
4166
4307
|
},
|
|
@@ -4189,7 +4330,8 @@
|
|
|
4189
4330
|
"type": "string",
|
|
4190
4331
|
"description": "Runtime expression for a user-defined output value."
|
|
4191
4332
|
}
|
|
4192
|
-
}
|
|
4333
|
+
},
|
|
4334
|
+
"title": "Outputs (step)"
|
|
4193
4335
|
},
|
|
4194
4336
|
"variables": {
|
|
4195
4337
|
"type": "object",
|
|
@@ -4200,9 +4342,11 @@
|
|
|
4200
4342
|
"type": "string",
|
|
4201
4343
|
"description": "Runtime expression for a user-defined output value."
|
|
4202
4344
|
}
|
|
4203
|
-
}
|
|
4345
|
+
},
|
|
4346
|
+
"title": "Variables (step)"
|
|
4204
4347
|
}
|
|
4205
|
-
}
|
|
4348
|
+
},
|
|
4349
|
+
"title": "Common"
|
|
4206
4350
|
},
|
|
4207
4351
|
{
|
|
4208
4352
|
"type": "object",
|
|
@@ -4216,6 +4360,7 @@
|
|
|
4216
4360
|
"description": "Takes a screenshot in PNG format.",
|
|
4217
4361
|
"anyOf": [
|
|
4218
4362
|
{
|
|
4363
|
+
"title": "Screenshot (simple)",
|
|
4219
4364
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
4220
4365
|
"type": "string",
|
|
4221
4366
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4228,6 +4373,7 @@
|
|
|
4228
4373
|
"additionalProperties": false,
|
|
4229
4374
|
"properties": {
|
|
4230
4375
|
"path": {
|
|
4376
|
+
"title": "Screenshot (simple)",
|
|
4231
4377
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
4232
4378
|
"type": "string",
|
|
4233
4379
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4262,7 +4408,7 @@
|
|
|
4262
4408
|
"crop": {
|
|
4263
4409
|
"anyOf": [
|
|
4264
4410
|
{
|
|
4265
|
-
"title": "Crop by element",
|
|
4411
|
+
"title": "Crop by element (simple)",
|
|
4266
4412
|
"type": "string",
|
|
4267
4413
|
"description": "Display text or selector of the element to screenshot."
|
|
4268
4414
|
},
|
|
@@ -4295,6 +4441,7 @@
|
|
|
4295
4441
|
"padding": {
|
|
4296
4442
|
"anyOf": [
|
|
4297
4443
|
{
|
|
4444
|
+
"title": "Padding (simple)",
|
|
4298
4445
|
"type": "number",
|
|
4299
4446
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
4300
4447
|
"minimum": 0
|
|
@@ -4319,7 +4466,9 @@
|
|
|
4319
4466
|
"type": "number",
|
|
4320
4467
|
"minimum": 0
|
|
4321
4468
|
}
|
|
4322
|
-
}
|
|
4469
|
+
},
|
|
4470
|
+
"title": "Padding (detailed)",
|
|
4471
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4323
4472
|
}
|
|
4324
4473
|
]
|
|
4325
4474
|
}
|
|
@@ -4327,15 +4476,19 @@
|
|
|
4327
4476
|
}
|
|
4328
4477
|
]
|
|
4329
4478
|
}
|
|
4330
|
-
}
|
|
4479
|
+
},
|
|
4480
|
+
"title": "Capture screenshot (detailed)"
|
|
4331
4481
|
},
|
|
4332
4482
|
{
|
|
4333
|
-
"type": "boolean"
|
|
4483
|
+
"type": "boolean",
|
|
4484
|
+
"title": "Capture screenshot",
|
|
4485
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
4334
4486
|
}
|
|
4335
4487
|
],
|
|
4336
4488
|
"components": {
|
|
4337
4489
|
"schemas": {
|
|
4338
4490
|
"path": {
|
|
4491
|
+
"title": "Screenshot (simple)",
|
|
4339
4492
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
4340
4493
|
"type": "string",
|
|
4341
4494
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4348,6 +4501,7 @@
|
|
|
4348
4501
|
"additionalProperties": false,
|
|
4349
4502
|
"properties": {
|
|
4350
4503
|
"path": {
|
|
4504
|
+
"title": "Screenshot (simple)",
|
|
4351
4505
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
4352
4506
|
"type": "string",
|
|
4353
4507
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4382,7 +4536,7 @@
|
|
|
4382
4536
|
"crop": {
|
|
4383
4537
|
"anyOf": [
|
|
4384
4538
|
{
|
|
4385
|
-
"title": "Crop by element",
|
|
4539
|
+
"title": "Crop by element (simple)",
|
|
4386
4540
|
"type": "string",
|
|
4387
4541
|
"description": "Display text or selector of the element to screenshot."
|
|
4388
4542
|
},
|
|
@@ -4415,6 +4569,7 @@
|
|
|
4415
4569
|
"padding": {
|
|
4416
4570
|
"anyOf": [
|
|
4417
4571
|
{
|
|
4572
|
+
"title": "Padding (simple)",
|
|
4418
4573
|
"type": "number",
|
|
4419
4574
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
4420
4575
|
"minimum": 0
|
|
@@ -4439,7 +4594,9 @@
|
|
|
4439
4594
|
"type": "number",
|
|
4440
4595
|
"minimum": 0
|
|
4441
4596
|
}
|
|
4442
|
-
}
|
|
4597
|
+
},
|
|
4598
|
+
"title": "Padding (detailed)",
|
|
4599
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4443
4600
|
}
|
|
4444
4601
|
]
|
|
4445
4602
|
}
|
|
@@ -4447,7 +4604,8 @@
|
|
|
4447
4604
|
}
|
|
4448
4605
|
]
|
|
4449
4606
|
}
|
|
4450
|
-
}
|
|
4607
|
+
},
|
|
4608
|
+
"title": "Capture screenshot (detailed)"
|
|
4451
4609
|
},
|
|
4452
4610
|
"crop_element": {
|
|
4453
4611
|
"title": "Crop by element (detailed)",
|
|
@@ -4478,6 +4636,7 @@
|
|
|
4478
4636
|
"padding": {
|
|
4479
4637
|
"anyOf": [
|
|
4480
4638
|
{
|
|
4639
|
+
"title": "Padding (simple)",
|
|
4481
4640
|
"type": "number",
|
|
4482
4641
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
4483
4642
|
"minimum": 0
|
|
@@ -4502,7 +4661,9 @@
|
|
|
4502
4661
|
"type": "number",
|
|
4503
4662
|
"minimum": 0
|
|
4504
4663
|
}
|
|
4505
|
-
}
|
|
4664
|
+
},
|
|
4665
|
+
"title": "Padding (detailed)",
|
|
4666
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4506
4667
|
}
|
|
4507
4668
|
]
|
|
4508
4669
|
}
|
|
@@ -4528,7 +4689,9 @@
|
|
|
4528
4689
|
"type": "number",
|
|
4529
4690
|
"minimum": 0
|
|
4530
4691
|
}
|
|
4531
|
-
}
|
|
4692
|
+
},
|
|
4693
|
+
"title": "Padding (detailed)",
|
|
4694
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
4532
4695
|
}
|
|
4533
4696
|
}
|
|
4534
4697
|
},
|
|
@@ -4568,7 +4731,8 @@
|
|
|
4568
4731
|
}
|
|
4569
4732
|
]
|
|
4570
4733
|
}
|
|
4571
|
-
}
|
|
4734
|
+
},
|
|
4735
|
+
"title": "screenshot"
|
|
4572
4736
|
}
|
|
4573
4737
|
]
|
|
4574
4738
|
},
|
|
@@ -4597,7 +4761,8 @@
|
|
|
4597
4761
|
"type": "string",
|
|
4598
4762
|
"description": "Runtime expression for a user-defined output value."
|
|
4599
4763
|
}
|
|
4600
|
-
}
|
|
4764
|
+
},
|
|
4765
|
+
"title": "Outputs (step)"
|
|
4601
4766
|
},
|
|
4602
4767
|
"variables": {
|
|
4603
4768
|
"type": "object",
|
|
@@ -4608,9 +4773,11 @@
|
|
|
4608
4773
|
"type": "string",
|
|
4609
4774
|
"description": "Runtime expression for a user-defined output value."
|
|
4610
4775
|
}
|
|
4611
|
-
}
|
|
4776
|
+
},
|
|
4777
|
+
"title": "Variables (step)"
|
|
4612
4778
|
}
|
|
4613
|
-
}
|
|
4779
|
+
},
|
|
4780
|
+
"title": "Common"
|
|
4614
4781
|
},
|
|
4615
4782
|
{
|
|
4616
4783
|
"type": "object",
|
|
@@ -4624,6 +4791,7 @@
|
|
|
4624
4791
|
"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' ]",
|
|
4625
4792
|
"anyOf": [
|
|
4626
4793
|
{
|
|
4794
|
+
"title": "Record (simple)",
|
|
4627
4795
|
"type": "string",
|
|
4628
4796
|
"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`.",
|
|
4629
4797
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4657,15 +4825,19 @@
|
|
|
4657
4825
|
"false"
|
|
4658
4826
|
]
|
|
4659
4827
|
}
|
|
4660
|
-
}
|
|
4828
|
+
},
|
|
4829
|
+
"title": "Record (detailed)"
|
|
4661
4830
|
},
|
|
4662
4831
|
{
|
|
4663
|
-
"type": "boolean"
|
|
4832
|
+
"type": "boolean",
|
|
4833
|
+
"title": "Record (boolean)",
|
|
4834
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
4664
4835
|
}
|
|
4665
4836
|
],
|
|
4666
4837
|
"components": {
|
|
4667
4838
|
"schemas": {
|
|
4668
4839
|
"string": {
|
|
4840
|
+
"title": "Record (simple)",
|
|
4669
4841
|
"type": "string",
|
|
4670
4842
|
"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`.",
|
|
4671
4843
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -4699,7 +4871,8 @@
|
|
|
4699
4871
|
"false"
|
|
4700
4872
|
]
|
|
4701
4873
|
}
|
|
4702
|
-
}
|
|
4874
|
+
},
|
|
4875
|
+
"title": "Record (detailed)"
|
|
4703
4876
|
}
|
|
4704
4877
|
}
|
|
4705
4878
|
},
|
|
@@ -4713,7 +4886,8 @@
|
|
|
4713
4886
|
}
|
|
4714
4887
|
]
|
|
4715
4888
|
}
|
|
4716
|
-
}
|
|
4889
|
+
},
|
|
4890
|
+
"title": "record"
|
|
4717
4891
|
}
|
|
4718
4892
|
]
|
|
4719
4893
|
},
|
|
@@ -4742,7 +4916,8 @@
|
|
|
4742
4916
|
"type": "string",
|
|
4743
4917
|
"description": "Runtime expression for a user-defined output value."
|
|
4744
4918
|
}
|
|
4745
|
-
}
|
|
4919
|
+
},
|
|
4920
|
+
"title": "Outputs (step)"
|
|
4746
4921
|
},
|
|
4747
4922
|
"variables": {
|
|
4748
4923
|
"type": "object",
|
|
@@ -4753,9 +4928,11 @@
|
|
|
4753
4928
|
"type": "string",
|
|
4754
4929
|
"description": "Runtime expression for a user-defined output value."
|
|
4755
4930
|
}
|
|
4756
|
-
}
|
|
4931
|
+
},
|
|
4932
|
+
"title": "Variables (step)"
|
|
4757
4933
|
}
|
|
4758
|
-
}
|
|
4934
|
+
},
|
|
4935
|
+
"title": "Common"
|
|
4759
4936
|
},
|
|
4760
4937
|
{
|
|
4761
4938
|
"type": "object",
|
|
@@ -4777,7 +4954,8 @@
|
|
|
4777
4954
|
true
|
|
4778
4955
|
]
|
|
4779
4956
|
}
|
|
4780
|
-
}
|
|
4957
|
+
},
|
|
4958
|
+
"title": "stopRecord"
|
|
4781
4959
|
}
|
|
4782
4960
|
]
|
|
4783
4961
|
},
|
|
@@ -4806,7 +4984,8 @@
|
|
|
4806
4984
|
"type": "string",
|
|
4807
4985
|
"description": "Runtime expression for a user-defined output value."
|
|
4808
4986
|
}
|
|
4809
|
-
}
|
|
4987
|
+
},
|
|
4988
|
+
"title": "Outputs (step)"
|
|
4810
4989
|
},
|
|
4811
4990
|
"variables": {
|
|
4812
4991
|
"type": "object",
|
|
@@ -4817,11 +4996,15 @@
|
|
|
4817
4996
|
"type": "string",
|
|
4818
4997
|
"description": "Runtime expression for a user-defined output value."
|
|
4819
4998
|
}
|
|
4820
|
-
}
|
|
4999
|
+
},
|
|
5000
|
+
"title": "Variables (step)"
|
|
4821
5001
|
}
|
|
4822
|
-
}
|
|
5002
|
+
},
|
|
5003
|
+
"title": "Common"
|
|
4823
5004
|
},
|
|
4824
5005
|
{
|
|
5006
|
+
"title": "loadVariables",
|
|
5007
|
+
"type": "object",
|
|
4825
5008
|
"required": [
|
|
4826
5009
|
"loadVariables"
|
|
4827
5010
|
],
|
|
@@ -4864,7 +5047,8 @@
|
|
|
4864
5047
|
"type": "string",
|
|
4865
5048
|
"description": "Runtime expression for a user-defined output value."
|
|
4866
5049
|
}
|
|
4867
|
-
}
|
|
5050
|
+
},
|
|
5051
|
+
"title": "Outputs (step)"
|
|
4868
5052
|
},
|
|
4869
5053
|
"variables": {
|
|
4870
5054
|
"type": "object",
|
|
@@ -4875,11 +5059,15 @@
|
|
|
4875
5059
|
"type": "string",
|
|
4876
5060
|
"description": "Runtime expression for a user-defined output value."
|
|
4877
5061
|
}
|
|
4878
|
-
}
|
|
5062
|
+
},
|
|
5063
|
+
"title": "Variables (step)"
|
|
4879
5064
|
}
|
|
4880
|
-
}
|
|
5065
|
+
},
|
|
5066
|
+
"title": "Common"
|
|
4881
5067
|
},
|
|
4882
5068
|
{
|
|
5069
|
+
"title": "wait",
|
|
5070
|
+
"type": "object",
|
|
4883
5071
|
"required": [
|
|
4884
5072
|
"wait"
|
|
4885
5073
|
],
|
|
@@ -4891,9 +5079,11 @@
|
|
|
4891
5079
|
"default": 5000,
|
|
4892
5080
|
"anyOf": [
|
|
4893
5081
|
{
|
|
4894
|
-
"type": "number"
|
|
5082
|
+
"type": "number",
|
|
5083
|
+
"title": "Wait (simple)"
|
|
4895
5084
|
},
|
|
4896
5085
|
{
|
|
5086
|
+
"title": "Wait (environment variable)",
|
|
4897
5087
|
"type": "string",
|
|
4898
5088
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4899
5089
|
"transform": [
|
|
@@ -4901,12 +5091,14 @@
|
|
|
4901
5091
|
]
|
|
4902
5092
|
},
|
|
4903
5093
|
{
|
|
4904
|
-
"type": "boolean"
|
|
5094
|
+
"type": "boolean",
|
|
5095
|
+
"title": "Wait (boolean)"
|
|
4905
5096
|
}
|
|
4906
5097
|
],
|
|
4907
5098
|
"components": {
|
|
4908
5099
|
"schemas": {
|
|
4909
5100
|
"string": {
|
|
5101
|
+
"title": "Wait (environment variable)",
|
|
4910
5102
|
"type": "string",
|
|
4911
5103
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
4912
5104
|
"transform": [
|
|
@@ -5324,7 +5516,8 @@
|
|
|
5324
5516
|
"type": "integer",
|
|
5325
5517
|
"description": "Height of the browser window in pixels."
|
|
5326
5518
|
}
|
|
5327
|
-
}
|
|
5519
|
+
},
|
|
5520
|
+
"title": "Browser Window"
|
|
5328
5521
|
},
|
|
5329
5522
|
"viewport": {
|
|
5330
5523
|
"type": "object",
|
|
@@ -5339,9 +5532,11 @@
|
|
|
5339
5532
|
"type": "integer",
|
|
5340
5533
|
"description": "Height of the viewport in pixels."
|
|
5341
5534
|
}
|
|
5342
|
-
}
|
|
5535
|
+
},
|
|
5536
|
+
"title": "Browser Viewport"
|
|
5343
5537
|
}
|
|
5344
|
-
}
|
|
5538
|
+
},
|
|
5539
|
+
"title": "Browser"
|
|
5345
5540
|
},
|
|
5346
5541
|
"openApi": {
|
|
5347
5542
|
"type": "array",
|
|
@@ -5379,7 +5574,8 @@
|
|
|
5379
5574
|
"type": "object",
|
|
5380
5575
|
"readOnly": true,
|
|
5381
5576
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
5382
|
-
"additionalProperties": true
|
|
5577
|
+
"additionalProperties": true,
|
|
5578
|
+
"title": "OpenAPI definition"
|
|
5383
5579
|
},
|
|
5384
5580
|
"operationId": {
|
|
5385
5581
|
"type": "string",
|
|
@@ -5431,7 +5627,8 @@
|
|
|
5431
5627
|
"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.",
|
|
5432
5628
|
"additionalProperties": {
|
|
5433
5629
|
"type": "string"
|
|
5434
|
-
}
|
|
5630
|
+
},
|
|
5631
|
+
"title": "OpenAPI request headers"
|
|
5435
5632
|
}
|
|
5436
5633
|
},
|
|
5437
5634
|
"components": {
|
|
@@ -5517,7 +5714,8 @@
|
|
|
5517
5714
|
"required": [
|
|
5518
5715
|
"name",
|
|
5519
5716
|
"descriptionPath"
|
|
5520
|
-
]
|
|
5717
|
+
],
|
|
5718
|
+
"title": "OpenAPI description (test)"
|
|
5521
5719
|
}
|
|
5522
5720
|
]
|
|
5523
5721
|
}
|
|
@@ -5556,7 +5754,8 @@
|
|
|
5556
5754
|
"type": "string",
|
|
5557
5755
|
"description": "Runtime expression for a user-defined output value."
|
|
5558
5756
|
}
|
|
5559
|
-
}
|
|
5757
|
+
},
|
|
5758
|
+
"title": "Outputs (step)"
|
|
5560
5759
|
},
|
|
5561
5760
|
"variables": {
|
|
5562
5761
|
"type": "object",
|
|
@@ -5567,9 +5766,11 @@
|
|
|
5567
5766
|
"type": "string",
|
|
5568
5767
|
"description": "Runtime expression for a user-defined output value."
|
|
5569
5768
|
}
|
|
5570
|
-
}
|
|
5769
|
+
},
|
|
5770
|
+
"title": "Variables (step)"
|
|
5571
5771
|
}
|
|
5572
|
-
}
|
|
5772
|
+
},
|
|
5773
|
+
"title": "Common"
|
|
5573
5774
|
},
|
|
5574
5775
|
"stepId": {
|
|
5575
5776
|
"type": "string",
|
|
@@ -5588,7 +5789,8 @@
|
|
|
5588
5789
|
"type": "string",
|
|
5589
5790
|
"description": "Runtime expression for a user-defined output value."
|
|
5590
5791
|
}
|
|
5591
|
-
}
|
|
5792
|
+
},
|
|
5793
|
+
"title": "Outputs (step)"
|
|
5592
5794
|
},
|
|
5593
5795
|
"variables": {
|
|
5594
5796
|
"type": "object",
|
|
@@ -5599,7 +5801,8 @@
|
|
|
5599
5801
|
"type": "string",
|
|
5600
5802
|
"description": "Runtime expression for a user-defined output value."
|
|
5601
5803
|
}
|
|
5602
|
-
}
|
|
5804
|
+
},
|
|
5805
|
+
"title": "Variables (step)"
|
|
5603
5806
|
}
|
|
5604
5807
|
}
|
|
5605
5808
|
},
|
|
@@ -5629,7 +5832,8 @@
|
|
|
5629
5832
|
"type": "string",
|
|
5630
5833
|
"description": "Runtime expression for a user-defined output value."
|
|
5631
5834
|
}
|
|
5632
|
-
}
|
|
5835
|
+
},
|
|
5836
|
+
"title": "Outputs (step)"
|
|
5633
5837
|
},
|
|
5634
5838
|
"variables": {
|
|
5635
5839
|
"type": "object",
|
|
@@ -5640,9 +5844,11 @@
|
|
|
5640
5844
|
"type": "string",
|
|
5641
5845
|
"description": "Runtime expression for a user-defined output value."
|
|
5642
5846
|
}
|
|
5643
|
-
}
|
|
5847
|
+
},
|
|
5848
|
+
"title": "Variables (step)"
|
|
5644
5849
|
}
|
|
5645
|
-
}
|
|
5850
|
+
},
|
|
5851
|
+
"title": "Common"
|
|
5646
5852
|
},
|
|
5647
5853
|
{
|
|
5648
5854
|
"type": "object",
|
|
@@ -5655,6 +5861,7 @@
|
|
|
5655
5861
|
"title": "checkLink",
|
|
5656
5862
|
"anyOf": [
|
|
5657
5863
|
{
|
|
5864
|
+
"title": "Check link (detailed)",
|
|
5658
5865
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5659
5866
|
"type": "string",
|
|
5660
5867
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5663,6 +5870,7 @@
|
|
|
5663
5870
|
]
|
|
5664
5871
|
},
|
|
5665
5872
|
{
|
|
5873
|
+
"title": "Check link (detailed)",
|
|
5666
5874
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5667
5875
|
"type": "object",
|
|
5668
5876
|
"additionalProperties": false,
|
|
@@ -5716,6 +5924,7 @@
|
|
|
5716
5924
|
"components": {
|
|
5717
5925
|
"schemas": {
|
|
5718
5926
|
"string": {
|
|
5927
|
+
"title": "Check link (detailed)",
|
|
5719
5928
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5720
5929
|
"type": "string",
|
|
5721
5930
|
"pattern": "(^(http://|https://|\\/).*|\\$[A-Za-z0-9_]+$)",
|
|
@@ -5724,6 +5933,7 @@
|
|
|
5724
5933
|
]
|
|
5725
5934
|
},
|
|
5726
5935
|
"object": {
|
|
5936
|
+
"title": "Check link (detailed)",
|
|
5727
5937
|
"description": "Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.",
|
|
5728
5938
|
"type": "object",
|
|
5729
5939
|
"additionalProperties": false,
|
|
@@ -5791,7 +6001,8 @@
|
|
|
5791
6001
|
}
|
|
5792
6002
|
]
|
|
5793
6003
|
}
|
|
5794
|
-
}
|
|
6004
|
+
},
|
|
6005
|
+
"title": "checkLink"
|
|
5795
6006
|
}
|
|
5796
6007
|
]
|
|
5797
6008
|
},
|
|
@@ -5820,7 +6031,8 @@
|
|
|
5820
6031
|
"type": "string",
|
|
5821
6032
|
"description": "Runtime expression for a user-defined output value."
|
|
5822
6033
|
}
|
|
5823
|
-
}
|
|
6034
|
+
},
|
|
6035
|
+
"title": "Outputs (step)"
|
|
5824
6036
|
},
|
|
5825
6037
|
"variables": {
|
|
5826
6038
|
"type": "object",
|
|
@@ -5831,9 +6043,11 @@
|
|
|
5831
6043
|
"type": "string",
|
|
5832
6044
|
"description": "Runtime expression for a user-defined output value."
|
|
5833
6045
|
}
|
|
5834
|
-
}
|
|
6046
|
+
},
|
|
6047
|
+
"title": "Variables (step)"
|
|
5835
6048
|
}
|
|
5836
|
-
}
|
|
6049
|
+
},
|
|
6050
|
+
"title": "Common"
|
|
5837
6051
|
},
|
|
5838
6052
|
{
|
|
5839
6053
|
"type": "object",
|
|
@@ -5847,7 +6061,7 @@
|
|
|
5847
6061
|
"description": "Click or tap an element.",
|
|
5848
6062
|
"anyOf": [
|
|
5849
6063
|
{
|
|
5850
|
-
"title": "
|
|
6064
|
+
"title": "Click element (simple)",
|
|
5851
6065
|
"type": "string",
|
|
5852
6066
|
"description": "Display text or selector of the element to find."
|
|
5853
6067
|
},
|
|
@@ -5893,7 +6107,7 @@
|
|
|
5893
6107
|
"components": {
|
|
5894
6108
|
"schemas": {
|
|
5895
6109
|
"string": {
|
|
5896
|
-
"title": "
|
|
6110
|
+
"title": "Click element (simple)",
|
|
5897
6111
|
"type": "string",
|
|
5898
6112
|
"description": "Display text or selector of the element to find."
|
|
5899
6113
|
},
|
|
@@ -5957,7 +6171,8 @@
|
|
|
5957
6171
|
}
|
|
5958
6172
|
]
|
|
5959
6173
|
}
|
|
5960
|
-
}
|
|
6174
|
+
},
|
|
6175
|
+
"title": "click"
|
|
5961
6176
|
}
|
|
5962
6177
|
]
|
|
5963
6178
|
},
|
|
@@ -5986,7 +6201,8 @@
|
|
|
5986
6201
|
"type": "string",
|
|
5987
6202
|
"description": "Runtime expression for a user-defined output value."
|
|
5988
6203
|
}
|
|
5989
|
-
}
|
|
6204
|
+
},
|
|
6205
|
+
"title": "Outputs (step)"
|
|
5990
6206
|
},
|
|
5991
6207
|
"variables": {
|
|
5992
6208
|
"type": "object",
|
|
@@ -5997,9 +6213,11 @@
|
|
|
5997
6213
|
"type": "string",
|
|
5998
6214
|
"description": "Runtime expression for a user-defined output value."
|
|
5999
6215
|
}
|
|
6000
|
-
}
|
|
6216
|
+
},
|
|
6217
|
+
"title": "Variables (step)"
|
|
6001
6218
|
}
|
|
6002
|
-
}
|
|
6219
|
+
},
|
|
6220
|
+
"title": "Common"
|
|
6003
6221
|
},
|
|
6004
6222
|
{
|
|
6005
6223
|
"type": "object",
|
|
@@ -6061,7 +6279,7 @@
|
|
|
6061
6279
|
"description": "Click or tap an element.",
|
|
6062
6280
|
"anyOf": [
|
|
6063
6281
|
{
|
|
6064
|
-
"title": "
|
|
6282
|
+
"title": "Click element (simple)",
|
|
6065
6283
|
"type": "string",
|
|
6066
6284
|
"description": "Display text or selector of the element to find."
|
|
6067
6285
|
},
|
|
@@ -6107,7 +6325,7 @@
|
|
|
6107
6325
|
"components": {
|
|
6108
6326
|
"schemas": {
|
|
6109
6327
|
"string": {
|
|
6110
|
-
"title": "
|
|
6328
|
+
"title": "Click element (simple)",
|
|
6111
6329
|
"type": "string",
|
|
6112
6330
|
"description": "Display text or selector of the element to find."
|
|
6113
6331
|
},
|
|
@@ -6183,7 +6401,8 @@
|
|
|
6183
6401
|
"middle"
|
|
6184
6402
|
]
|
|
6185
6403
|
}
|
|
6186
|
-
}
|
|
6404
|
+
},
|
|
6405
|
+
"title": "Find element and click"
|
|
6187
6406
|
}
|
|
6188
6407
|
]
|
|
6189
6408
|
},
|
|
@@ -6196,6 +6415,7 @@
|
|
|
6196
6415
|
"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$`.",
|
|
6197
6416
|
"anyOf": [
|
|
6198
6417
|
{
|
|
6418
|
+
"title": "Type keys (simple)",
|
|
6199
6419
|
"description": "Sequence of keys to enter.",
|
|
6200
6420
|
"anyOf": [
|
|
6201
6421
|
{
|
|
@@ -6214,9 +6434,11 @@
|
|
|
6214
6434
|
]
|
|
6215
6435
|
},
|
|
6216
6436
|
{
|
|
6437
|
+
"title": "Type keys (detailed)",
|
|
6217
6438
|
"type": "object",
|
|
6218
6439
|
"properties": {
|
|
6219
6440
|
"keys": {
|
|
6441
|
+
"title": "Type keys (simple)",
|
|
6220
6442
|
"description": "Sequence of keys to enter.",
|
|
6221
6443
|
"anyOf": [
|
|
6222
6444
|
{
|
|
@@ -6253,6 +6475,7 @@
|
|
|
6253
6475
|
"components": {
|
|
6254
6476
|
"schemas": {
|
|
6255
6477
|
"keys": {
|
|
6478
|
+
"title": "Type keys (simple)",
|
|
6256
6479
|
"description": "Sequence of keys to enter.",
|
|
6257
6480
|
"anyOf": [
|
|
6258
6481
|
{
|
|
@@ -6271,9 +6494,11 @@
|
|
|
6271
6494
|
]
|
|
6272
6495
|
},
|
|
6273
6496
|
"object": {
|
|
6497
|
+
"title": "Type keys (detailed)",
|
|
6274
6498
|
"type": "object",
|
|
6275
6499
|
"properties": {
|
|
6276
6500
|
"keys": {
|
|
6501
|
+
"title": "Type keys (simple)",
|
|
6277
6502
|
"description": "Sequence of keys to enter.",
|
|
6278
6503
|
"anyOf": [
|
|
6279
6504
|
{
|
|
@@ -6340,7 +6565,8 @@
|
|
|
6340
6565
|
"required": [
|
|
6341
6566
|
"selector",
|
|
6342
6567
|
"elementText"
|
|
6343
|
-
]
|
|
6568
|
+
],
|
|
6569
|
+
"title": "Find element and type"
|
|
6344
6570
|
}
|
|
6345
6571
|
}
|
|
6346
6572
|
]
|
|
@@ -6399,7 +6625,7 @@
|
|
|
6399
6625
|
"description": "Click or tap an element.",
|
|
6400
6626
|
"anyOf": [
|
|
6401
6627
|
{
|
|
6402
|
-
"title": "
|
|
6628
|
+
"title": "Click element (simple)",
|
|
6403
6629
|
"type": "string",
|
|
6404
6630
|
"description": "Display text or selector of the element to find."
|
|
6405
6631
|
},
|
|
@@ -6445,7 +6671,7 @@
|
|
|
6445
6671
|
"components": {
|
|
6446
6672
|
"schemas": {
|
|
6447
6673
|
"string": {
|
|
6448
|
-
"title": "
|
|
6674
|
+
"title": "Click element (simple)",
|
|
6449
6675
|
"type": "string",
|
|
6450
6676
|
"description": "Display text or selector of the element to find."
|
|
6451
6677
|
},
|
|
@@ -6521,7 +6747,8 @@
|
|
|
6521
6747
|
"middle"
|
|
6522
6748
|
]
|
|
6523
6749
|
}
|
|
6524
|
-
}
|
|
6750
|
+
},
|
|
6751
|
+
"title": "Find element and click"
|
|
6525
6752
|
}
|
|
6526
6753
|
]
|
|
6527
6754
|
},
|
|
@@ -6534,6 +6761,7 @@
|
|
|
6534
6761
|
"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$`.",
|
|
6535
6762
|
"anyOf": [
|
|
6536
6763
|
{
|
|
6764
|
+
"title": "Type keys (simple)",
|
|
6537
6765
|
"description": "Sequence of keys to enter.",
|
|
6538
6766
|
"anyOf": [
|
|
6539
6767
|
{
|
|
@@ -6552,9 +6780,11 @@
|
|
|
6552
6780
|
]
|
|
6553
6781
|
},
|
|
6554
6782
|
{
|
|
6783
|
+
"title": "Type keys (detailed)",
|
|
6555
6784
|
"type": "object",
|
|
6556
6785
|
"properties": {
|
|
6557
6786
|
"keys": {
|
|
6787
|
+
"title": "Type keys (simple)",
|
|
6558
6788
|
"description": "Sequence of keys to enter.",
|
|
6559
6789
|
"anyOf": [
|
|
6560
6790
|
{
|
|
@@ -6591,6 +6821,7 @@
|
|
|
6591
6821
|
"components": {
|
|
6592
6822
|
"schemas": {
|
|
6593
6823
|
"keys": {
|
|
6824
|
+
"title": "Type keys (simple)",
|
|
6594
6825
|
"description": "Sequence of keys to enter.",
|
|
6595
6826
|
"anyOf": [
|
|
6596
6827
|
{
|
|
@@ -6609,9 +6840,11 @@
|
|
|
6609
6840
|
]
|
|
6610
6841
|
},
|
|
6611
6842
|
"object": {
|
|
6843
|
+
"title": "Type keys (detailed)",
|
|
6612
6844
|
"type": "object",
|
|
6613
6845
|
"properties": {
|
|
6614
6846
|
"keys": {
|
|
6847
|
+
"title": "Type keys (simple)",
|
|
6615
6848
|
"description": "Sequence of keys to enter.",
|
|
6616
6849
|
"anyOf": [
|
|
6617
6850
|
{
|
|
@@ -6678,7 +6911,8 @@
|
|
|
6678
6911
|
"required": [
|
|
6679
6912
|
"selector",
|
|
6680
6913
|
"elementText"
|
|
6681
|
-
]
|
|
6914
|
+
],
|
|
6915
|
+
"title": "Find element and type"
|
|
6682
6916
|
}
|
|
6683
6917
|
}
|
|
6684
6918
|
]
|
|
@@ -6721,7 +6955,8 @@
|
|
|
6721
6955
|
}
|
|
6722
6956
|
]
|
|
6723
6957
|
}
|
|
6724
|
-
}
|
|
6958
|
+
},
|
|
6959
|
+
"title": "find"
|
|
6725
6960
|
}
|
|
6726
6961
|
]
|
|
6727
6962
|
},
|
|
@@ -6750,7 +6985,8 @@
|
|
|
6750
6985
|
"type": "string",
|
|
6751
6986
|
"description": "Runtime expression for a user-defined output value."
|
|
6752
6987
|
}
|
|
6753
|
-
}
|
|
6988
|
+
},
|
|
6989
|
+
"title": "Outputs (step)"
|
|
6754
6990
|
},
|
|
6755
6991
|
"variables": {
|
|
6756
6992
|
"type": "object",
|
|
@@ -6761,9 +6997,11 @@
|
|
|
6761
6997
|
"type": "string",
|
|
6762
6998
|
"description": "Runtime expression for a user-defined output value."
|
|
6763
6999
|
}
|
|
6764
|
-
}
|
|
7000
|
+
},
|
|
7001
|
+
"title": "Variables (step)"
|
|
6765
7002
|
}
|
|
6766
|
-
}
|
|
7003
|
+
},
|
|
7004
|
+
"title": "Common"
|
|
6767
7005
|
},
|
|
6768
7006
|
{
|
|
6769
7007
|
"type": "object",
|
|
@@ -6776,6 +7014,7 @@
|
|
|
6776
7014
|
"title": "goTo",
|
|
6777
7015
|
"anyOf": [
|
|
6778
7016
|
{
|
|
7017
|
+
"title": "Go to URL (simple)",
|
|
6779
7018
|
"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.",
|
|
6780
7019
|
"type": "string",
|
|
6781
7020
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6806,12 +7045,14 @@
|
|
|
6806
7045
|
"trim"
|
|
6807
7046
|
]
|
|
6808
7047
|
}
|
|
6809
|
-
}
|
|
7048
|
+
},
|
|
7049
|
+
"title": "Go to URL (detailed)"
|
|
6810
7050
|
}
|
|
6811
7051
|
],
|
|
6812
7052
|
"components": {
|
|
6813
7053
|
"schemas": {
|
|
6814
7054
|
"string": {
|
|
7055
|
+
"title": "Go to URL (simple)",
|
|
6815
7056
|
"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.",
|
|
6816
7057
|
"type": "string",
|
|
6817
7058
|
"pattern": "(^(http://|https://|/).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6842,7 +7083,8 @@
|
|
|
6842
7083
|
"trim"
|
|
6843
7084
|
]
|
|
6844
7085
|
}
|
|
6845
|
-
}
|
|
7086
|
+
},
|
|
7087
|
+
"title": "Go to URL (detailed)"
|
|
6846
7088
|
}
|
|
6847
7089
|
}
|
|
6848
7090
|
},
|
|
@@ -6858,7 +7100,8 @@
|
|
|
6858
7100
|
}
|
|
6859
7101
|
]
|
|
6860
7102
|
}
|
|
6861
|
-
}
|
|
7103
|
+
},
|
|
7104
|
+
"title": "goTo"
|
|
6862
7105
|
}
|
|
6863
7106
|
]
|
|
6864
7107
|
},
|
|
@@ -6887,7 +7130,8 @@
|
|
|
6887
7130
|
"type": "string",
|
|
6888
7131
|
"description": "Runtime expression for a user-defined output value."
|
|
6889
7132
|
}
|
|
6890
|
-
}
|
|
7133
|
+
},
|
|
7134
|
+
"title": "Outputs (step)"
|
|
6891
7135
|
},
|
|
6892
7136
|
"variables": {
|
|
6893
7137
|
"type": "object",
|
|
@@ -6898,9 +7142,11 @@
|
|
|
6898
7142
|
"type": "string",
|
|
6899
7143
|
"description": "Runtime expression for a user-defined output value."
|
|
6900
7144
|
}
|
|
6901
|
-
}
|
|
7145
|
+
},
|
|
7146
|
+
"title": "Variables (step)"
|
|
6902
7147
|
}
|
|
6903
|
-
}
|
|
7148
|
+
},
|
|
7149
|
+
"title": "Common"
|
|
6904
7150
|
},
|
|
6905
7151
|
{
|
|
6906
7152
|
"type": "object",
|
|
@@ -6914,7 +7160,7 @@
|
|
|
6914
7160
|
"description": "Perform a generic HTTP request, for example to an API.",
|
|
6915
7161
|
"anyOf": [
|
|
6916
7162
|
{
|
|
6917
|
-
"title": "
|
|
7163
|
+
"title": "HTTP request (simple)",
|
|
6918
7164
|
"type": "string",
|
|
6919
7165
|
"description": "URL for the HTTP request.",
|
|
6920
7166
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6923,6 +7169,7 @@
|
|
|
6923
7169
|
]
|
|
6924
7170
|
},
|
|
6925
7171
|
{
|
|
7172
|
+
"title": "HTTP request (detailed)",
|
|
6926
7173
|
"type": "object",
|
|
6927
7174
|
"anyOf": [
|
|
6928
7175
|
{
|
|
@@ -6939,7 +7186,7 @@
|
|
|
6939
7186
|
"additionalProperties": false,
|
|
6940
7187
|
"properties": {
|
|
6941
7188
|
"url": {
|
|
6942
|
-
"title": "
|
|
7189
|
+
"title": "HTTP request (simple)",
|
|
6943
7190
|
"type": "string",
|
|
6944
7191
|
"description": "URL for the HTTP request.",
|
|
6945
7192
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -6995,7 +7242,8 @@
|
|
|
6995
7242
|
"type": "object",
|
|
6996
7243
|
"readOnly": true,
|
|
6997
7244
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
6998
|
-
"additionalProperties": true
|
|
7245
|
+
"additionalProperties": true,
|
|
7246
|
+
"title": "OpenAPI definition"
|
|
6999
7247
|
},
|
|
7000
7248
|
"operationId": {
|
|
7001
7249
|
"type": "string",
|
|
@@ -7047,7 +7295,8 @@
|
|
|
7047
7295
|
"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.",
|
|
7048
7296
|
"additionalProperties": {
|
|
7049
7297
|
"type": "string"
|
|
7050
|
-
}
|
|
7298
|
+
},
|
|
7299
|
+
"title": "OpenAPI request headers"
|
|
7051
7300
|
}
|
|
7052
7301
|
},
|
|
7053
7302
|
"components": {
|
|
@@ -7127,7 +7376,8 @@
|
|
|
7127
7376
|
"type": "object",
|
|
7128
7377
|
"required": [
|
|
7129
7378
|
"operationId"
|
|
7130
|
-
]
|
|
7379
|
+
],
|
|
7380
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
7131
7381
|
}
|
|
7132
7382
|
]
|
|
7133
7383
|
}
|
|
@@ -7178,34 +7428,43 @@
|
|
|
7178
7428
|
"type": "object",
|
|
7179
7429
|
"additionalProperties": true,
|
|
7180
7430
|
"properties": {},
|
|
7181
|
-
"default": {}
|
|
7431
|
+
"default": {},
|
|
7432
|
+
"title": "Request headers"
|
|
7182
7433
|
},
|
|
7183
7434
|
"parameters": {
|
|
7184
7435
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
7185
7436
|
"type": "object",
|
|
7186
7437
|
"additionalProperties": true,
|
|
7187
7438
|
"default": {},
|
|
7188
|
-
"properties": {}
|
|
7439
|
+
"properties": {},
|
|
7440
|
+
"title": "Request parameters"
|
|
7189
7441
|
},
|
|
7190
7442
|
"body": {
|
|
7191
7443
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
7192
7444
|
"anyOf": [
|
|
7193
7445
|
{
|
|
7446
|
+
"title": "Request body object",
|
|
7447
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
7194
7448
|
"type": "object",
|
|
7195
7449
|
"additionalProperties": true,
|
|
7196
7450
|
"properties": {}
|
|
7197
7451
|
},
|
|
7198
7452
|
{
|
|
7453
|
+
"title": "Request body array",
|
|
7454
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
7199
7455
|
"type": "array",
|
|
7200
7456
|
"items": {}
|
|
7201
7457
|
},
|
|
7202
7458
|
{
|
|
7459
|
+
"title": "Request body string",
|
|
7460
|
+
"description": "String to include as the body of the HTTP request.",
|
|
7203
7461
|
"type": "string"
|
|
7204
7462
|
}
|
|
7205
7463
|
],
|
|
7206
7464
|
"default": {}
|
|
7207
7465
|
}
|
|
7208
|
-
}
|
|
7466
|
+
},
|
|
7467
|
+
"title": "Request"
|
|
7209
7468
|
},
|
|
7210
7469
|
"response": {
|
|
7211
7470
|
"type": "object",
|
|
@@ -7216,7 +7475,8 @@
|
|
|
7216
7475
|
"type": "object",
|
|
7217
7476
|
"additionalProperties": true,
|
|
7218
7477
|
"properties": {},
|
|
7219
|
-
"default": {}
|
|
7478
|
+
"default": {},
|
|
7479
|
+
"title": "Response headers"
|
|
7220
7480
|
},
|
|
7221
7481
|
"body": {
|
|
7222
7482
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -7224,19 +7484,26 @@
|
|
|
7224
7484
|
{
|
|
7225
7485
|
"type": "object",
|
|
7226
7486
|
"additionalProperties": true,
|
|
7227
|
-
"properties": {}
|
|
7487
|
+
"properties": {},
|
|
7488
|
+
"title": "Response body object",
|
|
7489
|
+
"description": "JSON key/value pairs expected in the response."
|
|
7228
7490
|
},
|
|
7229
7491
|
{
|
|
7492
|
+
"title": "Response body array",
|
|
7493
|
+
"description": "JSON array expected in the response.",
|
|
7230
7494
|
"type": "array",
|
|
7231
7495
|
"items": {}
|
|
7232
7496
|
},
|
|
7233
7497
|
{
|
|
7498
|
+
"title": "Response body string",
|
|
7499
|
+
"description": "String expected in the response.",
|
|
7234
7500
|
"type": "string"
|
|
7235
7501
|
}
|
|
7236
7502
|
],
|
|
7237
7503
|
"default": {}
|
|
7238
7504
|
}
|
|
7239
|
-
}
|
|
7505
|
+
},
|
|
7506
|
+
"title": "Response"
|
|
7240
7507
|
},
|
|
7241
7508
|
"allowAdditionalFields": {
|
|
7242
7509
|
"type": "boolean",
|
|
@@ -7274,7 +7541,7 @@
|
|
|
7274
7541
|
"components": {
|
|
7275
7542
|
"schemas": {
|
|
7276
7543
|
"url": {
|
|
7277
|
-
"title": "
|
|
7544
|
+
"title": "HTTP request (simple)",
|
|
7278
7545
|
"type": "string",
|
|
7279
7546
|
"description": "URL for the HTTP request.",
|
|
7280
7547
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -7283,6 +7550,7 @@
|
|
|
7283
7550
|
]
|
|
7284
7551
|
},
|
|
7285
7552
|
"object": {
|
|
7553
|
+
"title": "HTTP request (detailed)",
|
|
7286
7554
|
"type": "object",
|
|
7287
7555
|
"anyOf": [
|
|
7288
7556
|
{
|
|
@@ -7299,7 +7567,7 @@
|
|
|
7299
7567
|
"additionalProperties": false,
|
|
7300
7568
|
"properties": {
|
|
7301
7569
|
"url": {
|
|
7302
|
-
"title": "
|
|
7570
|
+
"title": "HTTP request (simple)",
|
|
7303
7571
|
"type": "string",
|
|
7304
7572
|
"description": "URL for the HTTP request.",
|
|
7305
7573
|
"pattern": "(^(http://|https://).*|\\$[A-Za-z0-9_]+)",
|
|
@@ -7355,7 +7623,8 @@
|
|
|
7355
7623
|
"type": "object",
|
|
7356
7624
|
"readOnly": true,
|
|
7357
7625
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
7358
|
-
"additionalProperties": true
|
|
7626
|
+
"additionalProperties": true,
|
|
7627
|
+
"title": "OpenAPI definition"
|
|
7359
7628
|
},
|
|
7360
7629
|
"operationId": {
|
|
7361
7630
|
"type": "string",
|
|
@@ -7407,7 +7676,8 @@
|
|
|
7407
7676
|
"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.",
|
|
7408
7677
|
"additionalProperties": {
|
|
7409
7678
|
"type": "string"
|
|
7410
|
-
}
|
|
7679
|
+
},
|
|
7680
|
+
"title": "OpenAPI request headers"
|
|
7411
7681
|
}
|
|
7412
7682
|
},
|
|
7413
7683
|
"components": {
|
|
@@ -7487,7 +7757,8 @@
|
|
|
7487
7757
|
"type": "object",
|
|
7488
7758
|
"required": [
|
|
7489
7759
|
"operationId"
|
|
7490
|
-
]
|
|
7760
|
+
],
|
|
7761
|
+
"title": "OpenAPI definition (httpRequest)"
|
|
7491
7762
|
}
|
|
7492
7763
|
]
|
|
7493
7764
|
}
|
|
@@ -7538,34 +7809,43 @@
|
|
|
7538
7809
|
"type": "object",
|
|
7539
7810
|
"additionalProperties": true,
|
|
7540
7811
|
"properties": {},
|
|
7541
|
-
"default": {}
|
|
7812
|
+
"default": {},
|
|
7813
|
+
"title": "Request headers"
|
|
7542
7814
|
},
|
|
7543
7815
|
"parameters": {
|
|
7544
7816
|
"description": "URL parameters to include in the HTTP request, in key/value format.",
|
|
7545
7817
|
"type": "object",
|
|
7546
7818
|
"additionalProperties": true,
|
|
7547
7819
|
"default": {},
|
|
7548
|
-
"properties": {}
|
|
7820
|
+
"properties": {},
|
|
7821
|
+
"title": "Request parameters"
|
|
7549
7822
|
},
|
|
7550
7823
|
"body": {
|
|
7551
7824
|
"description": "JSON object to include as the body of the HTTP request.",
|
|
7552
7825
|
"anyOf": [
|
|
7553
7826
|
{
|
|
7827
|
+
"title": "Request body object",
|
|
7828
|
+
"description": "JSON object to include as the body of the HTTP request.",
|
|
7554
7829
|
"type": "object",
|
|
7555
7830
|
"additionalProperties": true,
|
|
7556
7831
|
"properties": {}
|
|
7557
7832
|
},
|
|
7558
7833
|
{
|
|
7834
|
+
"title": "Request body array",
|
|
7835
|
+
"description": "JSON array to include as the body of the HTTP request.",
|
|
7559
7836
|
"type": "array",
|
|
7560
7837
|
"items": {}
|
|
7561
7838
|
},
|
|
7562
7839
|
{
|
|
7840
|
+
"title": "Request body string",
|
|
7841
|
+
"description": "String to include as the body of the HTTP request.",
|
|
7563
7842
|
"type": "string"
|
|
7564
7843
|
}
|
|
7565
7844
|
],
|
|
7566
7845
|
"default": {}
|
|
7567
7846
|
}
|
|
7568
|
-
}
|
|
7847
|
+
},
|
|
7848
|
+
"title": "Request"
|
|
7569
7849
|
},
|
|
7570
7850
|
"response": {
|
|
7571
7851
|
"type": "object",
|
|
@@ -7576,7 +7856,8 @@
|
|
|
7576
7856
|
"type": "object",
|
|
7577
7857
|
"additionalProperties": true,
|
|
7578
7858
|
"properties": {},
|
|
7579
|
-
"default": {}
|
|
7859
|
+
"default": {},
|
|
7860
|
+
"title": "Response headers"
|
|
7580
7861
|
},
|
|
7581
7862
|
"body": {
|
|
7582
7863
|
"description": "JSON object expected in the response. If one or more key/value pairs aren't present in the response, the step fails.",
|
|
@@ -7584,19 +7865,26 @@
|
|
|
7584
7865
|
{
|
|
7585
7866
|
"type": "object",
|
|
7586
7867
|
"additionalProperties": true,
|
|
7587
|
-
"properties": {}
|
|
7868
|
+
"properties": {},
|
|
7869
|
+
"title": "Response body object",
|
|
7870
|
+
"description": "JSON key/value pairs expected in the response."
|
|
7588
7871
|
},
|
|
7589
7872
|
{
|
|
7873
|
+
"title": "Response body array",
|
|
7874
|
+
"description": "JSON array expected in the response.",
|
|
7590
7875
|
"type": "array",
|
|
7591
7876
|
"items": {}
|
|
7592
7877
|
},
|
|
7593
7878
|
{
|
|
7879
|
+
"title": "Response body string",
|
|
7880
|
+
"description": "String expected in the response.",
|
|
7594
7881
|
"type": "string"
|
|
7595
7882
|
}
|
|
7596
7883
|
],
|
|
7597
7884
|
"default": {}
|
|
7598
7885
|
}
|
|
7599
|
-
}
|
|
7886
|
+
},
|
|
7887
|
+
"title": "Response"
|
|
7600
7888
|
},
|
|
7601
7889
|
"allowAdditionalFields": {
|
|
7602
7890
|
"type": "boolean",
|
|
@@ -7771,7 +8059,8 @@
|
|
|
7771
8059
|
}
|
|
7772
8060
|
]
|
|
7773
8061
|
}
|
|
7774
|
-
}
|
|
8062
|
+
},
|
|
8063
|
+
"title": "httpRequest"
|
|
7775
8064
|
}
|
|
7776
8065
|
]
|
|
7777
8066
|
},
|
|
@@ -7800,7 +8089,8 @@
|
|
|
7800
8089
|
"type": "string",
|
|
7801
8090
|
"description": "Runtime expression for a user-defined output value."
|
|
7802
8091
|
}
|
|
7803
|
-
}
|
|
8092
|
+
},
|
|
8093
|
+
"title": "Outputs (step)"
|
|
7804
8094
|
},
|
|
7805
8095
|
"variables": {
|
|
7806
8096
|
"type": "object",
|
|
@@ -7811,9 +8101,11 @@
|
|
|
7811
8101
|
"type": "string",
|
|
7812
8102
|
"description": "Runtime expression for a user-defined output value."
|
|
7813
8103
|
}
|
|
7814
|
-
}
|
|
8104
|
+
},
|
|
8105
|
+
"title": "Variables (step)"
|
|
7815
8106
|
}
|
|
7816
|
-
}
|
|
8107
|
+
},
|
|
8108
|
+
"title": "Common"
|
|
7817
8109
|
},
|
|
7818
8110
|
{
|
|
7819
8111
|
"type": "object",
|
|
@@ -7827,6 +8119,8 @@
|
|
|
7827
8119
|
"description": "Perform a native shell command.",
|
|
7828
8120
|
"anyOf": [
|
|
7829
8121
|
{
|
|
8122
|
+
"title": "Run shell command (simple)",
|
|
8123
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7830
8124
|
"type": "string",
|
|
7831
8125
|
"transform": [
|
|
7832
8126
|
"trim"
|
|
@@ -7908,12 +8202,15 @@
|
|
|
7908
8202
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7909
8203
|
"default": 60000
|
|
7910
8204
|
}
|
|
7911
|
-
}
|
|
8205
|
+
},
|
|
8206
|
+
"title": "Run shell command (detailed)"
|
|
7912
8207
|
}
|
|
7913
8208
|
],
|
|
7914
8209
|
"components": {
|
|
7915
8210
|
"schemas": {
|
|
7916
8211
|
"string": {
|
|
8212
|
+
"title": "Run shell command (simple)",
|
|
8213
|
+
"description": "Command to perform in the machine's default shell.",
|
|
7917
8214
|
"type": "string",
|
|
7918
8215
|
"transform": [
|
|
7919
8216
|
"trim"
|
|
@@ -7995,7 +8292,8 @@
|
|
|
7995
8292
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
7996
8293
|
"default": 60000
|
|
7997
8294
|
}
|
|
7998
|
-
}
|
|
8295
|
+
},
|
|
8296
|
+
"title": "Run shell command (detailed)"
|
|
7999
8297
|
}
|
|
8000
8298
|
}
|
|
8001
8299
|
},
|
|
@@ -8051,7 +8349,8 @@
|
|
|
8051
8349
|
}
|
|
8052
8350
|
]
|
|
8053
8351
|
}
|
|
8054
|
-
}
|
|
8352
|
+
},
|
|
8353
|
+
"title": "runShell"
|
|
8055
8354
|
}
|
|
8056
8355
|
]
|
|
8057
8356
|
},
|
|
@@ -8080,7 +8379,8 @@
|
|
|
8080
8379
|
"type": "string",
|
|
8081
8380
|
"description": "Runtime expression for a user-defined output value."
|
|
8082
8381
|
}
|
|
8083
|
-
}
|
|
8382
|
+
},
|
|
8383
|
+
"title": "Outputs (step)"
|
|
8084
8384
|
},
|
|
8085
8385
|
"variables": {
|
|
8086
8386
|
"type": "object",
|
|
@@ -8091,9 +8391,11 @@
|
|
|
8091
8391
|
"type": "string",
|
|
8092
8392
|
"description": "Runtime expression for a user-defined output value."
|
|
8093
8393
|
}
|
|
8094
|
-
}
|
|
8394
|
+
},
|
|
8395
|
+
"title": "Variables (step)"
|
|
8095
8396
|
}
|
|
8096
|
-
}
|
|
8397
|
+
},
|
|
8398
|
+
"title": "Common"
|
|
8097
8399
|
},
|
|
8098
8400
|
{
|
|
8099
8401
|
"type": "object",
|
|
@@ -8191,7 +8493,8 @@
|
|
|
8191
8493
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
8192
8494
|
"default": 60000
|
|
8193
8495
|
}
|
|
8194
|
-
}
|
|
8496
|
+
},
|
|
8497
|
+
"title": "Run code (detailed)"
|
|
8195
8498
|
}
|
|
8196
8499
|
],
|
|
8197
8500
|
"components": {
|
|
@@ -8281,7 +8584,8 @@
|
|
|
8281
8584
|
"description": "Max time in milliseconds the command is allowed to run. If the command runs longer than this, the step fails.",
|
|
8282
8585
|
"default": 60000
|
|
8283
8586
|
}
|
|
8284
|
-
}
|
|
8587
|
+
},
|
|
8588
|
+
"title": "Run code (detailed)"
|
|
8285
8589
|
}
|
|
8286
8590
|
}
|
|
8287
8591
|
},
|
|
@@ -8321,7 +8625,8 @@
|
|
|
8321
8625
|
}
|
|
8322
8626
|
]
|
|
8323
8627
|
}
|
|
8324
|
-
}
|
|
8628
|
+
},
|
|
8629
|
+
"title": "runCode"
|
|
8325
8630
|
}
|
|
8326
8631
|
]
|
|
8327
8632
|
},
|
|
@@ -8350,7 +8655,8 @@
|
|
|
8350
8655
|
"type": "string",
|
|
8351
8656
|
"description": "Runtime expression for a user-defined output value."
|
|
8352
8657
|
}
|
|
8353
|
-
}
|
|
8658
|
+
},
|
|
8659
|
+
"title": "Outputs (step)"
|
|
8354
8660
|
},
|
|
8355
8661
|
"variables": {
|
|
8356
8662
|
"type": "object",
|
|
@@ -8361,9 +8667,11 @@
|
|
|
8361
8667
|
"type": "string",
|
|
8362
8668
|
"description": "Runtime expression for a user-defined output value."
|
|
8363
8669
|
}
|
|
8364
|
-
}
|
|
8670
|
+
},
|
|
8671
|
+
"title": "Variables (step)"
|
|
8365
8672
|
}
|
|
8366
|
-
}
|
|
8673
|
+
},
|
|
8674
|
+
"title": "Common"
|
|
8367
8675
|
},
|
|
8368
8676
|
{
|
|
8369
8677
|
"type": "object",
|
|
@@ -8377,6 +8685,7 @@
|
|
|
8377
8685
|
"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$`.",
|
|
8378
8686
|
"anyOf": [
|
|
8379
8687
|
{
|
|
8688
|
+
"title": "Type keys (simple)",
|
|
8380
8689
|
"description": "Sequence of keys to enter.",
|
|
8381
8690
|
"anyOf": [
|
|
8382
8691
|
{
|
|
@@ -8395,9 +8704,11 @@
|
|
|
8395
8704
|
]
|
|
8396
8705
|
},
|
|
8397
8706
|
{
|
|
8707
|
+
"title": "Type keys (detailed)",
|
|
8398
8708
|
"type": "object",
|
|
8399
8709
|
"properties": {
|
|
8400
8710
|
"keys": {
|
|
8711
|
+
"title": "Type keys (simple)",
|
|
8401
8712
|
"description": "Sequence of keys to enter.",
|
|
8402
8713
|
"anyOf": [
|
|
8403
8714
|
{
|
|
@@ -8434,6 +8745,7 @@
|
|
|
8434
8745
|
"components": {
|
|
8435
8746
|
"schemas": {
|
|
8436
8747
|
"keys": {
|
|
8748
|
+
"title": "Type keys (simple)",
|
|
8437
8749
|
"description": "Sequence of keys to enter.",
|
|
8438
8750
|
"anyOf": [
|
|
8439
8751
|
{
|
|
@@ -8452,9 +8764,11 @@
|
|
|
8452
8764
|
]
|
|
8453
8765
|
},
|
|
8454
8766
|
"object": {
|
|
8767
|
+
"title": "Type keys (detailed)",
|
|
8455
8768
|
"type": "object",
|
|
8456
8769
|
"properties": {
|
|
8457
8770
|
"keys": {
|
|
8771
|
+
"title": "Type keys (simple)",
|
|
8458
8772
|
"description": "Sequence of keys to enter.",
|
|
8459
8773
|
"anyOf": [
|
|
8460
8774
|
{
|
|
@@ -8515,7 +8829,8 @@
|
|
|
8515
8829
|
}
|
|
8516
8830
|
]
|
|
8517
8831
|
}
|
|
8518
|
-
}
|
|
8832
|
+
},
|
|
8833
|
+
"title": "type"
|
|
8519
8834
|
}
|
|
8520
8835
|
]
|
|
8521
8836
|
},
|
|
@@ -8544,7 +8859,8 @@
|
|
|
8544
8859
|
"type": "string",
|
|
8545
8860
|
"description": "Runtime expression for a user-defined output value."
|
|
8546
8861
|
}
|
|
8547
|
-
}
|
|
8862
|
+
},
|
|
8863
|
+
"title": "Outputs (step)"
|
|
8548
8864
|
},
|
|
8549
8865
|
"variables": {
|
|
8550
8866
|
"type": "object",
|
|
@@ -8555,9 +8871,11 @@
|
|
|
8555
8871
|
"type": "string",
|
|
8556
8872
|
"description": "Runtime expression for a user-defined output value."
|
|
8557
8873
|
}
|
|
8558
|
-
}
|
|
8874
|
+
},
|
|
8875
|
+
"title": "Variables (step)"
|
|
8559
8876
|
}
|
|
8560
|
-
}
|
|
8877
|
+
},
|
|
8878
|
+
"title": "Common"
|
|
8561
8879
|
},
|
|
8562
8880
|
{
|
|
8563
8881
|
"type": "object",
|
|
@@ -8571,6 +8889,7 @@
|
|
|
8571
8889
|
"description": "Takes a screenshot in PNG format.",
|
|
8572
8890
|
"anyOf": [
|
|
8573
8891
|
{
|
|
8892
|
+
"title": "Screenshot (simple)",
|
|
8574
8893
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8575
8894
|
"type": "string",
|
|
8576
8895
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8583,6 +8902,7 @@
|
|
|
8583
8902
|
"additionalProperties": false,
|
|
8584
8903
|
"properties": {
|
|
8585
8904
|
"path": {
|
|
8905
|
+
"title": "Screenshot (simple)",
|
|
8586
8906
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8587
8907
|
"type": "string",
|
|
8588
8908
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8617,7 +8937,7 @@
|
|
|
8617
8937
|
"crop": {
|
|
8618
8938
|
"anyOf": [
|
|
8619
8939
|
{
|
|
8620
|
-
"title": "Crop by element",
|
|
8940
|
+
"title": "Crop by element (simple)",
|
|
8621
8941
|
"type": "string",
|
|
8622
8942
|
"description": "Display text or selector of the element to screenshot."
|
|
8623
8943
|
},
|
|
@@ -8650,6 +8970,7 @@
|
|
|
8650
8970
|
"padding": {
|
|
8651
8971
|
"anyOf": [
|
|
8652
8972
|
{
|
|
8973
|
+
"title": "Padding (simple)",
|
|
8653
8974
|
"type": "number",
|
|
8654
8975
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8655
8976
|
"minimum": 0
|
|
@@ -8674,7 +8995,9 @@
|
|
|
8674
8995
|
"type": "number",
|
|
8675
8996
|
"minimum": 0
|
|
8676
8997
|
}
|
|
8677
|
-
}
|
|
8998
|
+
},
|
|
8999
|
+
"title": "Padding (detailed)",
|
|
9000
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8678
9001
|
}
|
|
8679
9002
|
]
|
|
8680
9003
|
}
|
|
@@ -8682,15 +9005,19 @@
|
|
|
8682
9005
|
}
|
|
8683
9006
|
]
|
|
8684
9007
|
}
|
|
8685
|
-
}
|
|
9008
|
+
},
|
|
9009
|
+
"title": "Capture screenshot (detailed)"
|
|
8686
9010
|
},
|
|
8687
9011
|
{
|
|
8688
|
-
"type": "boolean"
|
|
9012
|
+
"type": "boolean",
|
|
9013
|
+
"title": "Capture screenshot",
|
|
9014
|
+
"description": "If `true`, captures a screenshot. If `false`, doesn't capture a screenshot."
|
|
8689
9015
|
}
|
|
8690
9016
|
],
|
|
8691
9017
|
"components": {
|
|
8692
9018
|
"schemas": {
|
|
8693
9019
|
"path": {
|
|
9020
|
+
"title": "Screenshot (simple)",
|
|
8694
9021
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8695
9022
|
"type": "string",
|
|
8696
9023
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8703,6 +9030,7 @@
|
|
|
8703
9030
|
"additionalProperties": false,
|
|
8704
9031
|
"properties": {
|
|
8705
9032
|
"path": {
|
|
9033
|
+
"title": "Screenshot (simple)",
|
|
8706
9034
|
"description": "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
8707
9035
|
"type": "string",
|
|
8708
9036
|
"pattern": "([A-Za-z0-9_-]*\\.(png|PNG)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -8737,7 +9065,7 @@
|
|
|
8737
9065
|
"crop": {
|
|
8738
9066
|
"anyOf": [
|
|
8739
9067
|
{
|
|
8740
|
-
"title": "Crop by element",
|
|
9068
|
+
"title": "Crop by element (simple)",
|
|
8741
9069
|
"type": "string",
|
|
8742
9070
|
"description": "Display text or selector of the element to screenshot."
|
|
8743
9071
|
},
|
|
@@ -8770,6 +9098,7 @@
|
|
|
8770
9098
|
"padding": {
|
|
8771
9099
|
"anyOf": [
|
|
8772
9100
|
{
|
|
9101
|
+
"title": "Padding (simple)",
|
|
8773
9102
|
"type": "number",
|
|
8774
9103
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8775
9104
|
"minimum": 0
|
|
@@ -8794,7 +9123,9 @@
|
|
|
8794
9123
|
"type": "number",
|
|
8795
9124
|
"minimum": 0
|
|
8796
9125
|
}
|
|
8797
|
-
}
|
|
9126
|
+
},
|
|
9127
|
+
"title": "Padding (detailed)",
|
|
9128
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8798
9129
|
}
|
|
8799
9130
|
]
|
|
8800
9131
|
}
|
|
@@ -8802,7 +9133,8 @@
|
|
|
8802
9133
|
}
|
|
8803
9134
|
]
|
|
8804
9135
|
}
|
|
8805
|
-
}
|
|
9136
|
+
},
|
|
9137
|
+
"title": "Capture screenshot (detailed)"
|
|
8806
9138
|
},
|
|
8807
9139
|
"crop_element": {
|
|
8808
9140
|
"title": "Crop by element (detailed)",
|
|
@@ -8833,6 +9165,7 @@
|
|
|
8833
9165
|
"padding": {
|
|
8834
9166
|
"anyOf": [
|
|
8835
9167
|
{
|
|
9168
|
+
"title": "Padding (simple)",
|
|
8836
9169
|
"type": "number",
|
|
8837
9170
|
"description": "Padding in pixels to add to the bounds of the element.",
|
|
8838
9171
|
"minimum": 0
|
|
@@ -8857,7 +9190,9 @@
|
|
|
8857
9190
|
"type": "number",
|
|
8858
9191
|
"minimum": 0
|
|
8859
9192
|
}
|
|
8860
|
-
}
|
|
9193
|
+
},
|
|
9194
|
+
"title": "Padding (detailed)",
|
|
9195
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8861
9196
|
}
|
|
8862
9197
|
]
|
|
8863
9198
|
}
|
|
@@ -8883,7 +9218,9 @@
|
|
|
8883
9218
|
"type": "number",
|
|
8884
9219
|
"minimum": 0
|
|
8885
9220
|
}
|
|
8886
|
-
}
|
|
9221
|
+
},
|
|
9222
|
+
"title": "Padding (detailed)",
|
|
9223
|
+
"description": "Padding in pixels to add to the bounds of the element."
|
|
8887
9224
|
}
|
|
8888
9225
|
}
|
|
8889
9226
|
},
|
|
@@ -8923,7 +9260,8 @@
|
|
|
8923
9260
|
}
|
|
8924
9261
|
]
|
|
8925
9262
|
}
|
|
8926
|
-
}
|
|
9263
|
+
},
|
|
9264
|
+
"title": "screenshot"
|
|
8927
9265
|
}
|
|
8928
9266
|
]
|
|
8929
9267
|
},
|
|
@@ -8952,7 +9290,8 @@
|
|
|
8952
9290
|
"type": "string",
|
|
8953
9291
|
"description": "Runtime expression for a user-defined output value."
|
|
8954
9292
|
}
|
|
8955
|
-
}
|
|
9293
|
+
},
|
|
9294
|
+
"title": "Outputs (step)"
|
|
8956
9295
|
},
|
|
8957
9296
|
"variables": {
|
|
8958
9297
|
"type": "object",
|
|
@@ -8963,9 +9302,11 @@
|
|
|
8963
9302
|
"type": "string",
|
|
8964
9303
|
"description": "Runtime expression for a user-defined output value."
|
|
8965
9304
|
}
|
|
8966
|
-
}
|
|
9305
|
+
},
|
|
9306
|
+
"title": "Variables (step)"
|
|
8967
9307
|
}
|
|
8968
|
-
}
|
|
9308
|
+
},
|
|
9309
|
+
"title": "Common"
|
|
8969
9310
|
},
|
|
8970
9311
|
{
|
|
8971
9312
|
"type": "object",
|
|
@@ -8979,6 +9320,7 @@
|
|
|
8979
9320
|
"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' ]",
|
|
8980
9321
|
"anyOf": [
|
|
8981
9322
|
{
|
|
9323
|
+
"title": "Record (simple)",
|
|
8982
9324
|
"type": "string",
|
|
8983
9325
|
"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`.",
|
|
8984
9326
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -9012,15 +9354,19 @@
|
|
|
9012
9354
|
"false"
|
|
9013
9355
|
]
|
|
9014
9356
|
}
|
|
9015
|
-
}
|
|
9357
|
+
},
|
|
9358
|
+
"title": "Record (detailed)"
|
|
9016
9359
|
},
|
|
9017
9360
|
{
|
|
9018
|
-
"type": "boolean"
|
|
9361
|
+
"type": "boolean",
|
|
9362
|
+
"title": "Record (boolean)",
|
|
9363
|
+
"description": "If `true`, records the current browser viewport. If `false`, doesn't record the current browser viewport."
|
|
9019
9364
|
}
|
|
9020
9365
|
],
|
|
9021
9366
|
"components": {
|
|
9022
9367
|
"schemas": {
|
|
9023
9368
|
"string": {
|
|
9369
|
+
"title": "Record (simple)",
|
|
9024
9370
|
"type": "string",
|
|
9025
9371
|
"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`.",
|
|
9026
9372
|
"pattern": "([A-Za-z0-9_-]*\\.(mp4|webm|gif)$|\\$[A-Za-z0-9_]+)",
|
|
@@ -9054,7 +9400,8 @@
|
|
|
9054
9400
|
"false"
|
|
9055
9401
|
]
|
|
9056
9402
|
}
|
|
9057
|
-
}
|
|
9403
|
+
},
|
|
9404
|
+
"title": "Record (detailed)"
|
|
9058
9405
|
}
|
|
9059
9406
|
}
|
|
9060
9407
|
},
|
|
@@ -9068,7 +9415,8 @@
|
|
|
9068
9415
|
}
|
|
9069
9416
|
]
|
|
9070
9417
|
}
|
|
9071
|
-
}
|
|
9418
|
+
},
|
|
9419
|
+
"title": "record"
|
|
9072
9420
|
}
|
|
9073
9421
|
]
|
|
9074
9422
|
},
|
|
@@ -9097,7 +9445,8 @@
|
|
|
9097
9445
|
"type": "string",
|
|
9098
9446
|
"description": "Runtime expression for a user-defined output value."
|
|
9099
9447
|
}
|
|
9100
|
-
}
|
|
9448
|
+
},
|
|
9449
|
+
"title": "Outputs (step)"
|
|
9101
9450
|
},
|
|
9102
9451
|
"variables": {
|
|
9103
9452
|
"type": "object",
|
|
@@ -9108,9 +9457,11 @@
|
|
|
9108
9457
|
"type": "string",
|
|
9109
9458
|
"description": "Runtime expression for a user-defined output value."
|
|
9110
9459
|
}
|
|
9111
|
-
}
|
|
9460
|
+
},
|
|
9461
|
+
"title": "Variables (step)"
|
|
9112
9462
|
}
|
|
9113
|
-
}
|
|
9463
|
+
},
|
|
9464
|
+
"title": "Common"
|
|
9114
9465
|
},
|
|
9115
9466
|
{
|
|
9116
9467
|
"type": "object",
|
|
@@ -9132,7 +9483,8 @@
|
|
|
9132
9483
|
true
|
|
9133
9484
|
]
|
|
9134
9485
|
}
|
|
9135
|
-
}
|
|
9486
|
+
},
|
|
9487
|
+
"title": "stopRecord"
|
|
9136
9488
|
}
|
|
9137
9489
|
]
|
|
9138
9490
|
},
|
|
@@ -9161,7 +9513,8 @@
|
|
|
9161
9513
|
"type": "string",
|
|
9162
9514
|
"description": "Runtime expression for a user-defined output value."
|
|
9163
9515
|
}
|
|
9164
|
-
}
|
|
9516
|
+
},
|
|
9517
|
+
"title": "Outputs (step)"
|
|
9165
9518
|
},
|
|
9166
9519
|
"variables": {
|
|
9167
9520
|
"type": "object",
|
|
@@ -9172,11 +9525,15 @@
|
|
|
9172
9525
|
"type": "string",
|
|
9173
9526
|
"description": "Runtime expression for a user-defined output value."
|
|
9174
9527
|
}
|
|
9175
|
-
}
|
|
9528
|
+
},
|
|
9529
|
+
"title": "Variables (step)"
|
|
9176
9530
|
}
|
|
9177
|
-
}
|
|
9531
|
+
},
|
|
9532
|
+
"title": "Common"
|
|
9178
9533
|
},
|
|
9179
9534
|
{
|
|
9535
|
+
"title": "loadVariables",
|
|
9536
|
+
"type": "object",
|
|
9180
9537
|
"required": [
|
|
9181
9538
|
"loadVariables"
|
|
9182
9539
|
],
|
|
@@ -9219,7 +9576,8 @@
|
|
|
9219
9576
|
"type": "string",
|
|
9220
9577
|
"description": "Runtime expression for a user-defined output value."
|
|
9221
9578
|
}
|
|
9222
|
-
}
|
|
9579
|
+
},
|
|
9580
|
+
"title": "Outputs (step)"
|
|
9223
9581
|
},
|
|
9224
9582
|
"variables": {
|
|
9225
9583
|
"type": "object",
|
|
@@ -9230,11 +9588,15 @@
|
|
|
9230
9588
|
"type": "string",
|
|
9231
9589
|
"description": "Runtime expression for a user-defined output value."
|
|
9232
9590
|
}
|
|
9233
|
-
}
|
|
9591
|
+
},
|
|
9592
|
+
"title": "Variables (step)"
|
|
9234
9593
|
}
|
|
9235
|
-
}
|
|
9594
|
+
},
|
|
9595
|
+
"title": "Common"
|
|
9236
9596
|
},
|
|
9237
9597
|
{
|
|
9598
|
+
"title": "wait",
|
|
9599
|
+
"type": "object",
|
|
9238
9600
|
"required": [
|
|
9239
9601
|
"wait"
|
|
9240
9602
|
],
|
|
@@ -9246,9 +9608,11 @@
|
|
|
9246
9608
|
"default": 5000,
|
|
9247
9609
|
"anyOf": [
|
|
9248
9610
|
{
|
|
9249
|
-
"type": "number"
|
|
9611
|
+
"type": "number",
|
|
9612
|
+
"title": "Wait (simple)"
|
|
9250
9613
|
},
|
|
9251
9614
|
{
|
|
9615
|
+
"title": "Wait (environment variable)",
|
|
9252
9616
|
"type": "string",
|
|
9253
9617
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
9254
9618
|
"transform": [
|
|
@@ -9256,12 +9620,14 @@
|
|
|
9256
9620
|
]
|
|
9257
9621
|
},
|
|
9258
9622
|
{
|
|
9259
|
-
"type": "boolean"
|
|
9623
|
+
"type": "boolean",
|
|
9624
|
+
"title": "Wait (boolean)"
|
|
9260
9625
|
}
|
|
9261
9626
|
],
|
|
9262
9627
|
"components": {
|
|
9263
9628
|
"schemas": {
|
|
9264
9629
|
"string": {
|
|
9630
|
+
"title": "Wait (environment variable)",
|
|
9265
9631
|
"type": "string",
|
|
9266
9632
|
"pattern": "(\\$[A-Za-z0-9_]+)",
|
|
9267
9633
|
"transform": [
|
|
@@ -9630,7 +9996,8 @@
|
|
|
9630
9996
|
]
|
|
9631
9997
|
}
|
|
9632
9998
|
}
|
|
9633
|
-
}
|
|
9999
|
+
},
|
|
10000
|
+
"title": "Resolved context"
|
|
9634
10001
|
}
|
|
9635
10002
|
}
|
|
9636
10003
|
},
|
|
@@ -9688,7 +10055,8 @@
|
|
|
9688
10055
|
"type": "object",
|
|
9689
10056
|
"readOnly": true,
|
|
9690
10057
|
"description": "OpenAPI definition object loaded from the `descriptionPath`. This is a resolved version of the OpenAPI description and should not be user-defined.",
|
|
9691
|
-
"additionalProperties": true
|
|
10058
|
+
"additionalProperties": true,
|
|
10059
|
+
"title": "OpenAPI definition"
|
|
9692
10060
|
},
|
|
9693
10061
|
"operationId": {
|
|
9694
10062
|
"type": "string",
|
|
@@ -9740,7 +10108,8 @@
|
|
|
9740
10108
|
"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.",
|
|
9741
10109
|
"additionalProperties": {
|
|
9742
10110
|
"type": "string"
|
|
9743
|
-
}
|
|
10111
|
+
},
|
|
10112
|
+
"title": "OpenAPI request headers"
|
|
9744
10113
|
}
|
|
9745
10114
|
},
|
|
9746
10115
|
"components": {
|
|
@@ -9826,7 +10195,8 @@
|
|
|
9826
10195
|
"required": [
|
|
9827
10196
|
"name",
|
|
9828
10197
|
"descriptionPath"
|
|
9829
|
-
]
|
|
10198
|
+
],
|
|
10199
|
+
"title": "OpenAPI description (test)"
|
|
9830
10200
|
}
|
|
9831
10201
|
]
|
|
9832
10202
|
}
|