doc-detective-common 4.8.0 → 4.9.0
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/dist/detectTests.d.ts +16 -1
- package/dist/detectTests.d.ts.map +1 -1
- package/dist/detectTests.js +93 -14
- package/dist/detectTests.js.map +1 -1
- package/dist/index.cjs +1754 -16
- package/dist/schemas/schemas.json +1700 -4
- package/dist/types/generated/config_v3.d.ts +5 -1
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/report_v3.d.ts +12 -0
- package/dist/types/generated/report_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +9 -1
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/spec_v3.d.ts +4 -0
- package/dist/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +64 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +132 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -511,7 +511,7 @@
|
|
|
511
511
|
"default": "."
|
|
512
512
|
},
|
|
513
513
|
"reporters": {
|
|
514
|
-
"description": "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
514
|
+
"description": "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`, `runFolder`. The `runFolder` reporter (enabled by default) archives each run's results as `<output>/.doc-detective/run-<runId>/testResults.json`, beside any screenshots the run captured, in addition to the flat output the `json` reporter writes. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
515
515
|
"type": "array",
|
|
516
516
|
"items": {
|
|
517
517
|
"type": "string",
|
|
@@ -519,7 +519,8 @@
|
|
|
519
519
|
},
|
|
520
520
|
"default": [
|
|
521
521
|
"terminal",
|
|
522
|
-
"json"
|
|
522
|
+
"json",
|
|
523
|
+
"runFolder"
|
|
523
524
|
]
|
|
524
525
|
},
|
|
525
526
|
"specFilter": {
|
|
@@ -1372,6 +1373,13 @@
|
|
|
1372
1373
|
],
|
|
1373
1374
|
"additionalProperties": false,
|
|
1374
1375
|
"title": "Source Location"
|
|
1376
|
+
},
|
|
1377
|
+
"autoScreenshot": {
|
|
1378
|
+
"type": "string",
|
|
1379
|
+
"minLength": 1,
|
|
1380
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1381
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1382
|
+
"readOnly": true
|
|
1375
1383
|
}
|
|
1376
1384
|
},
|
|
1377
1385
|
"title": "Common"
|
|
@@ -1425,6 +1433,13 @@
|
|
|
1425
1433
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
1426
1434
|
"default": false
|
|
1427
1435
|
},
|
|
1436
|
+
"autoScreenshot": {
|
|
1437
|
+
"type": "string",
|
|
1438
|
+
"minLength": 1,
|
|
1439
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1440
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1441
|
+
"readOnly": true
|
|
1442
|
+
},
|
|
1428
1443
|
"location": {
|
|
1429
1444
|
"type": "object",
|
|
1430
1445
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -1542,6 +1557,13 @@
|
|
|
1542
1557
|
],
|
|
1543
1558
|
"additionalProperties": false,
|
|
1544
1559
|
"title": "Source Location"
|
|
1560
|
+
},
|
|
1561
|
+
"autoScreenshot": {
|
|
1562
|
+
"type": "string",
|
|
1563
|
+
"minLength": 1,
|
|
1564
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1565
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1566
|
+
"readOnly": true
|
|
1545
1567
|
}
|
|
1546
1568
|
},
|
|
1547
1569
|
"title": "Common"
|
|
@@ -1850,6 +1872,13 @@
|
|
|
1850
1872
|
],
|
|
1851
1873
|
"additionalProperties": false,
|
|
1852
1874
|
"title": "Source Location"
|
|
1875
|
+
},
|
|
1876
|
+
"autoScreenshot": {
|
|
1877
|
+
"type": "string",
|
|
1878
|
+
"minLength": 1,
|
|
1879
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1880
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1881
|
+
"readOnly": true
|
|
1853
1882
|
}
|
|
1854
1883
|
},
|
|
1855
1884
|
"title": "Common"
|
|
@@ -2202,6 +2231,13 @@
|
|
|
2202
2231
|
],
|
|
2203
2232
|
"additionalProperties": false,
|
|
2204
2233
|
"title": "Source Location"
|
|
2234
|
+
},
|
|
2235
|
+
"autoScreenshot": {
|
|
2236
|
+
"type": "string",
|
|
2237
|
+
"minLength": 1,
|
|
2238
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
2239
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
2240
|
+
"readOnly": true
|
|
2205
2241
|
}
|
|
2206
2242
|
},
|
|
2207
2243
|
"title": "Common"
|
|
@@ -3651,6 +3687,13 @@
|
|
|
3651
3687
|
],
|
|
3652
3688
|
"additionalProperties": false,
|
|
3653
3689
|
"title": "Source Location"
|
|
3690
|
+
},
|
|
3691
|
+
"autoScreenshot": {
|
|
3692
|
+
"type": "string",
|
|
3693
|
+
"minLength": 1,
|
|
3694
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
3695
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
3696
|
+
"readOnly": true
|
|
3654
3697
|
}
|
|
3655
3698
|
},
|
|
3656
3699
|
"title": "Common"
|
|
@@ -4193,6 +4236,13 @@
|
|
|
4193
4236
|
],
|
|
4194
4237
|
"additionalProperties": false,
|
|
4195
4238
|
"title": "Source Location"
|
|
4239
|
+
},
|
|
4240
|
+
"autoScreenshot": {
|
|
4241
|
+
"type": "string",
|
|
4242
|
+
"minLength": 1,
|
|
4243
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
4244
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
4245
|
+
"readOnly": true
|
|
4196
4246
|
}
|
|
4197
4247
|
},
|
|
4198
4248
|
"title": "Common"
|
|
@@ -5287,6 +5337,13 @@
|
|
|
5287
5337
|
],
|
|
5288
5338
|
"additionalProperties": false,
|
|
5289
5339
|
"title": "Source Location"
|
|
5340
|
+
},
|
|
5341
|
+
"autoScreenshot": {
|
|
5342
|
+
"type": "string",
|
|
5343
|
+
"minLength": 1,
|
|
5344
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
5345
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
5346
|
+
"readOnly": true
|
|
5290
5347
|
}
|
|
5291
5348
|
},
|
|
5292
5349
|
"title": "Common"
|
|
@@ -5623,6 +5680,13 @@
|
|
|
5623
5680
|
],
|
|
5624
5681
|
"additionalProperties": false,
|
|
5625
5682
|
"title": "Source Location"
|
|
5683
|
+
},
|
|
5684
|
+
"autoScreenshot": {
|
|
5685
|
+
"type": "string",
|
|
5686
|
+
"minLength": 1,
|
|
5687
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
5688
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
5689
|
+
"readOnly": true
|
|
5626
5690
|
}
|
|
5627
5691
|
},
|
|
5628
5692
|
"title": "Common"
|
|
@@ -5945,6 +6009,13 @@
|
|
|
5945
6009
|
],
|
|
5946
6010
|
"additionalProperties": false,
|
|
5947
6011
|
"title": "Source Location"
|
|
6012
|
+
},
|
|
6013
|
+
"autoScreenshot": {
|
|
6014
|
+
"type": "string",
|
|
6015
|
+
"minLength": 1,
|
|
6016
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
6017
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
6018
|
+
"readOnly": true
|
|
5948
6019
|
}
|
|
5949
6020
|
},
|
|
5950
6021
|
"title": "Common"
|
|
@@ -6289,6 +6360,13 @@
|
|
|
6289
6360
|
],
|
|
6290
6361
|
"additionalProperties": false,
|
|
6291
6362
|
"title": "Source Location"
|
|
6363
|
+
},
|
|
6364
|
+
"autoScreenshot": {
|
|
6365
|
+
"type": "string",
|
|
6366
|
+
"minLength": 1,
|
|
6367
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
6368
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
6369
|
+
"readOnly": true
|
|
6292
6370
|
}
|
|
6293
6371
|
},
|
|
6294
6372
|
"title": "Common"
|
|
@@ -7076,6 +7154,13 @@
|
|
|
7076
7154
|
],
|
|
7077
7155
|
"additionalProperties": false,
|
|
7078
7156
|
"title": "Source Location"
|
|
7157
|
+
},
|
|
7158
|
+
"autoScreenshot": {
|
|
7159
|
+
"type": "string",
|
|
7160
|
+
"minLength": 1,
|
|
7161
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7162
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7163
|
+
"readOnly": true
|
|
7079
7164
|
}
|
|
7080
7165
|
},
|
|
7081
7166
|
"title": "Common"
|
|
@@ -7421,6 +7506,13 @@
|
|
|
7421
7506
|
],
|
|
7422
7507
|
"additionalProperties": false,
|
|
7423
7508
|
"title": "Source Location"
|
|
7509
|
+
},
|
|
7510
|
+
"autoScreenshot": {
|
|
7511
|
+
"type": "string",
|
|
7512
|
+
"minLength": 1,
|
|
7513
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7514
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7515
|
+
"readOnly": true
|
|
7424
7516
|
}
|
|
7425
7517
|
},
|
|
7426
7518
|
"title": "Common"
|
|
@@ -7622,6 +7714,13 @@
|
|
|
7622
7714
|
],
|
|
7623
7715
|
"additionalProperties": false,
|
|
7624
7716
|
"title": "Source Location"
|
|
7717
|
+
},
|
|
7718
|
+
"autoScreenshot": {
|
|
7719
|
+
"type": "string",
|
|
7720
|
+
"minLength": 1,
|
|
7721
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7722
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7723
|
+
"readOnly": true
|
|
7625
7724
|
}
|
|
7626
7725
|
},
|
|
7627
7726
|
"title": "Common"
|
|
@@ -7734,6 +7833,13 @@
|
|
|
7734
7833
|
],
|
|
7735
7834
|
"additionalProperties": false,
|
|
7736
7835
|
"title": "Source Location"
|
|
7836
|
+
},
|
|
7837
|
+
"autoScreenshot": {
|
|
7838
|
+
"type": "string",
|
|
7839
|
+
"minLength": 1,
|
|
7840
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7841
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7842
|
+
"readOnly": true
|
|
7737
7843
|
}
|
|
7738
7844
|
},
|
|
7739
7845
|
"title": "Common"
|
|
@@ -7843,6 +7949,13 @@
|
|
|
7843
7949
|
],
|
|
7844
7950
|
"additionalProperties": false,
|
|
7845
7951
|
"title": "Source Location"
|
|
7952
|
+
},
|
|
7953
|
+
"autoScreenshot": {
|
|
7954
|
+
"type": "string",
|
|
7955
|
+
"minLength": 1,
|
|
7956
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7957
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7958
|
+
"readOnly": true
|
|
7846
7959
|
}
|
|
7847
7960
|
},
|
|
7848
7961
|
"title": "Common"
|
|
@@ -8439,6 +8552,13 @@
|
|
|
8439
8552
|
],
|
|
8440
8553
|
"additionalProperties": false,
|
|
8441
8554
|
"title": "Source Location"
|
|
8555
|
+
},
|
|
8556
|
+
"autoScreenshot": {
|
|
8557
|
+
"type": "string",
|
|
8558
|
+
"minLength": 1,
|
|
8559
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
8560
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
8561
|
+
"readOnly": true
|
|
8442
8562
|
}
|
|
8443
8563
|
},
|
|
8444
8564
|
"title": "Common"
|
|
@@ -8767,6 +8887,13 @@
|
|
|
8767
8887
|
],
|
|
8768
8888
|
"additionalProperties": false,
|
|
8769
8889
|
"title": "Source Location"
|
|
8890
|
+
},
|
|
8891
|
+
"autoScreenshot": {
|
|
8892
|
+
"type": "string",
|
|
8893
|
+
"minLength": 1,
|
|
8894
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
8895
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
8896
|
+
"readOnly": true
|
|
8770
8897
|
}
|
|
8771
8898
|
},
|
|
8772
8899
|
"title": "Common"
|
|
@@ -9905,6 +10032,11 @@
|
|
|
9905
10032
|
"type": "boolean",
|
|
9906
10033
|
"default": false
|
|
9907
10034
|
},
|
|
10035
|
+
"autoScreenshot": {
|
|
10036
|
+
"description": "If `true`, captures a screenshot after every step that runs in a browser, in addition to any explicit `screenshot` steps. Images are saved in the per-run artifact directory (`<output>/.doc-detective/run-<runId>/`) at paths derived from spec, test, and context IDs plus the step's order, action, and ID (for example, `screenshots/<specId>/<testId>/<contextId>/01-goTo-s4f2a91c.png`), so the same step lands on the same relative path in every run's folder for run-over-run comparison. Specs and tests can override this value with their own `autoScreenshot` fields (test level wins over spec level, which wins over config level). Equivalent to `--auto-screenshot` on the CLI.",
|
|
10037
|
+
"type": "boolean",
|
|
10038
|
+
"default": false
|
|
10039
|
+
},
|
|
9908
10040
|
"autoUpdate": {
|
|
9909
10041
|
"description": "If `true` (default), the CLI checks for a newer published `doc-detective` on startup and self-updates before running tests. Updates happen for global (`npm i -g`) and `npx` installs only — local installs (where `doc-detective` is a project dep) get an informational message instead, since auto-updating would mutate the user's lockfile. CI environments and the `DOC_DETECTIVE_SKIP_AUTO_UPDATE=1` env var also skip the check. Set to `false` to pin to the installed version. Equivalent to `--no-auto-update` on the CLI.",
|
|
9910
10042
|
"type": "boolean",
|
|
@@ -10122,6 +10254,13 @@
|
|
|
10122
10254
|
],
|
|
10123
10255
|
"additionalProperties": false,
|
|
10124
10256
|
"title": "Source Location"
|
|
10257
|
+
},
|
|
10258
|
+
"autoScreenshot": {
|
|
10259
|
+
"type": "string",
|
|
10260
|
+
"minLength": 1,
|
|
10261
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10262
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10263
|
+
"readOnly": true
|
|
10125
10264
|
}
|
|
10126
10265
|
},
|
|
10127
10266
|
"title": "Common"
|
|
@@ -10175,6 +10314,13 @@
|
|
|
10175
10314
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
10176
10315
|
"default": false
|
|
10177
10316
|
},
|
|
10317
|
+
"autoScreenshot": {
|
|
10318
|
+
"type": "string",
|
|
10319
|
+
"minLength": 1,
|
|
10320
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10321
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10322
|
+
"readOnly": true
|
|
10323
|
+
},
|
|
10178
10324
|
"location": {
|
|
10179
10325
|
"type": "object",
|
|
10180
10326
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -10292,6 +10438,13 @@
|
|
|
10292
10438
|
],
|
|
10293
10439
|
"additionalProperties": false,
|
|
10294
10440
|
"title": "Source Location"
|
|
10441
|
+
},
|
|
10442
|
+
"autoScreenshot": {
|
|
10443
|
+
"type": "string",
|
|
10444
|
+
"minLength": 1,
|
|
10445
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10446
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10447
|
+
"readOnly": true
|
|
10295
10448
|
}
|
|
10296
10449
|
},
|
|
10297
10450
|
"title": "Common"
|
|
@@ -10600,6 +10753,13 @@
|
|
|
10600
10753
|
],
|
|
10601
10754
|
"additionalProperties": false,
|
|
10602
10755
|
"title": "Source Location"
|
|
10756
|
+
},
|
|
10757
|
+
"autoScreenshot": {
|
|
10758
|
+
"type": "string",
|
|
10759
|
+
"minLength": 1,
|
|
10760
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10761
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10762
|
+
"readOnly": true
|
|
10603
10763
|
}
|
|
10604
10764
|
},
|
|
10605
10765
|
"title": "Common"
|
|
@@ -10952,6 +11112,13 @@
|
|
|
10952
11112
|
],
|
|
10953
11113
|
"additionalProperties": false,
|
|
10954
11114
|
"title": "Source Location"
|
|
11115
|
+
},
|
|
11116
|
+
"autoScreenshot": {
|
|
11117
|
+
"type": "string",
|
|
11118
|
+
"minLength": 1,
|
|
11119
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
11120
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
11121
|
+
"readOnly": true
|
|
10955
11122
|
}
|
|
10956
11123
|
},
|
|
10957
11124
|
"title": "Common"
|
|
@@ -12401,6 +12568,13 @@
|
|
|
12401
12568
|
],
|
|
12402
12569
|
"additionalProperties": false,
|
|
12403
12570
|
"title": "Source Location"
|
|
12571
|
+
},
|
|
12572
|
+
"autoScreenshot": {
|
|
12573
|
+
"type": "string",
|
|
12574
|
+
"minLength": 1,
|
|
12575
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
12576
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
12577
|
+
"readOnly": true
|
|
12404
12578
|
}
|
|
12405
12579
|
},
|
|
12406
12580
|
"title": "Common"
|
|
@@ -12943,6 +13117,13 @@
|
|
|
12943
13117
|
],
|
|
12944
13118
|
"additionalProperties": false,
|
|
12945
13119
|
"title": "Source Location"
|
|
13120
|
+
},
|
|
13121
|
+
"autoScreenshot": {
|
|
13122
|
+
"type": "string",
|
|
13123
|
+
"minLength": 1,
|
|
13124
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
13125
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
13126
|
+
"readOnly": true
|
|
12946
13127
|
}
|
|
12947
13128
|
},
|
|
12948
13129
|
"title": "Common"
|
|
@@ -14037,6 +14218,13 @@
|
|
|
14037
14218
|
],
|
|
14038
14219
|
"additionalProperties": false,
|
|
14039
14220
|
"title": "Source Location"
|
|
14221
|
+
},
|
|
14222
|
+
"autoScreenshot": {
|
|
14223
|
+
"type": "string",
|
|
14224
|
+
"minLength": 1,
|
|
14225
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14226
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14227
|
+
"readOnly": true
|
|
14040
14228
|
}
|
|
14041
14229
|
},
|
|
14042
14230
|
"title": "Common"
|
|
@@ -14373,6 +14561,13 @@
|
|
|
14373
14561
|
],
|
|
14374
14562
|
"additionalProperties": false,
|
|
14375
14563
|
"title": "Source Location"
|
|
14564
|
+
},
|
|
14565
|
+
"autoScreenshot": {
|
|
14566
|
+
"type": "string",
|
|
14567
|
+
"minLength": 1,
|
|
14568
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14569
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14570
|
+
"readOnly": true
|
|
14376
14571
|
}
|
|
14377
14572
|
},
|
|
14378
14573
|
"title": "Common"
|
|
@@ -14695,6 +14890,13 @@
|
|
|
14695
14890
|
],
|
|
14696
14891
|
"additionalProperties": false,
|
|
14697
14892
|
"title": "Source Location"
|
|
14893
|
+
},
|
|
14894
|
+
"autoScreenshot": {
|
|
14895
|
+
"type": "string",
|
|
14896
|
+
"minLength": 1,
|
|
14897
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14898
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14899
|
+
"readOnly": true
|
|
14698
14900
|
}
|
|
14699
14901
|
},
|
|
14700
14902
|
"title": "Common"
|
|
@@ -15039,6 +15241,13 @@
|
|
|
15039
15241
|
],
|
|
15040
15242
|
"additionalProperties": false,
|
|
15041
15243
|
"title": "Source Location"
|
|
15244
|
+
},
|
|
15245
|
+
"autoScreenshot": {
|
|
15246
|
+
"type": "string",
|
|
15247
|
+
"minLength": 1,
|
|
15248
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
15249
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
15250
|
+
"readOnly": true
|
|
15042
15251
|
}
|
|
15043
15252
|
},
|
|
15044
15253
|
"title": "Common"
|
|
@@ -15826,6 +16035,13 @@
|
|
|
15826
16035
|
],
|
|
15827
16036
|
"additionalProperties": false,
|
|
15828
16037
|
"title": "Source Location"
|
|
16038
|
+
},
|
|
16039
|
+
"autoScreenshot": {
|
|
16040
|
+
"type": "string",
|
|
16041
|
+
"minLength": 1,
|
|
16042
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16043
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16044
|
+
"readOnly": true
|
|
15829
16045
|
}
|
|
15830
16046
|
},
|
|
15831
16047
|
"title": "Common"
|
|
@@ -16171,6 +16387,13 @@
|
|
|
16171
16387
|
],
|
|
16172
16388
|
"additionalProperties": false,
|
|
16173
16389
|
"title": "Source Location"
|
|
16390
|
+
},
|
|
16391
|
+
"autoScreenshot": {
|
|
16392
|
+
"type": "string",
|
|
16393
|
+
"minLength": 1,
|
|
16394
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16395
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16396
|
+
"readOnly": true
|
|
16174
16397
|
}
|
|
16175
16398
|
},
|
|
16176
16399
|
"title": "Common"
|
|
@@ -16372,6 +16595,13 @@
|
|
|
16372
16595
|
],
|
|
16373
16596
|
"additionalProperties": false,
|
|
16374
16597
|
"title": "Source Location"
|
|
16598
|
+
},
|
|
16599
|
+
"autoScreenshot": {
|
|
16600
|
+
"type": "string",
|
|
16601
|
+
"minLength": 1,
|
|
16602
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16603
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16604
|
+
"readOnly": true
|
|
16375
16605
|
}
|
|
16376
16606
|
},
|
|
16377
16607
|
"title": "Common"
|
|
@@ -16484,6 +16714,13 @@
|
|
|
16484
16714
|
],
|
|
16485
16715
|
"additionalProperties": false,
|
|
16486
16716
|
"title": "Source Location"
|
|
16717
|
+
},
|
|
16718
|
+
"autoScreenshot": {
|
|
16719
|
+
"type": "string",
|
|
16720
|
+
"minLength": 1,
|
|
16721
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16722
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16723
|
+
"readOnly": true
|
|
16487
16724
|
}
|
|
16488
16725
|
},
|
|
16489
16726
|
"title": "Common"
|
|
@@ -16593,6 +16830,13 @@
|
|
|
16593
16830
|
],
|
|
16594
16831
|
"additionalProperties": false,
|
|
16595
16832
|
"title": "Source Location"
|
|
16833
|
+
},
|
|
16834
|
+
"autoScreenshot": {
|
|
16835
|
+
"type": "string",
|
|
16836
|
+
"minLength": 1,
|
|
16837
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16838
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16839
|
+
"readOnly": true
|
|
16596
16840
|
}
|
|
16597
16841
|
},
|
|
16598
16842
|
"title": "Common"
|
|
@@ -17189,6 +17433,13 @@
|
|
|
17189
17433
|
],
|
|
17190
17434
|
"additionalProperties": false,
|
|
17191
17435
|
"title": "Source Location"
|
|
17436
|
+
},
|
|
17437
|
+
"autoScreenshot": {
|
|
17438
|
+
"type": "string",
|
|
17439
|
+
"minLength": 1,
|
|
17440
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
17441
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
17442
|
+
"readOnly": true
|
|
17192
17443
|
}
|
|
17193
17444
|
},
|
|
17194
17445
|
"title": "Common"
|
|
@@ -17517,6 +17768,13 @@
|
|
|
17517
17768
|
],
|
|
17518
17769
|
"additionalProperties": false,
|
|
17519
17770
|
"title": "Source Location"
|
|
17771
|
+
},
|
|
17772
|
+
"autoScreenshot": {
|
|
17773
|
+
"type": "string",
|
|
17774
|
+
"minLength": 1,
|
|
17775
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
17776
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
17777
|
+
"readOnly": true
|
|
17520
17778
|
}
|
|
17521
17779
|
},
|
|
17522
17780
|
"title": "Common"
|
|
@@ -18241,6 +18499,10 @@
|
|
|
18241
18499
|
"specFilter": [
|
|
18242
18500
|
"auth"
|
|
18243
18501
|
]
|
|
18502
|
+
},
|
|
18503
|
+
{
|
|
18504
|
+
"autoScreenshot": true,
|
|
18505
|
+
"output": "./test-results"
|
|
18244
18506
|
}
|
|
18245
18507
|
]
|
|
18246
18508
|
},
|
|
@@ -22464,7 +22726,7 @@
|
|
|
22464
22726
|
"default": "."
|
|
22465
22727
|
},
|
|
22466
22728
|
"reporters": {
|
|
22467
|
-
"description": "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
22729
|
+
"description": "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`, `runFolder`. The `runFolder` reporter (enabled by default) archives each run's results as `<output>/.doc-detective/run-<runId>/testResults.json`, beside any screenshots the run captured, in addition to the flat output the `json` reporter writes. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
22468
22730
|
"type": "array",
|
|
22469
22731
|
"items": {
|
|
22470
22732
|
"type": "string",
|
|
@@ -22472,7 +22734,8 @@
|
|
|
22472
22734
|
},
|
|
22473
22735
|
"default": [
|
|
22474
22736
|
"terminal",
|
|
22475
|
-
"json"
|
|
22737
|
+
"json",
|
|
22738
|
+
"runFolder"
|
|
22476
22739
|
]
|
|
22477
22740
|
},
|
|
22478
22741
|
"specFilter": {
|
|
@@ -23325,6 +23588,13 @@
|
|
|
23325
23588
|
],
|
|
23326
23589
|
"additionalProperties": false,
|
|
23327
23590
|
"title": "Source Location"
|
|
23591
|
+
},
|
|
23592
|
+
"autoScreenshot": {
|
|
23593
|
+
"type": "string",
|
|
23594
|
+
"minLength": 1,
|
|
23595
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23596
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23597
|
+
"readOnly": true
|
|
23328
23598
|
}
|
|
23329
23599
|
},
|
|
23330
23600
|
"title": "Common"
|
|
@@ -23378,6 +23648,13 @@
|
|
|
23378
23648
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
23379
23649
|
"default": false
|
|
23380
23650
|
},
|
|
23651
|
+
"autoScreenshot": {
|
|
23652
|
+
"type": "string",
|
|
23653
|
+
"minLength": 1,
|
|
23654
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23655
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23656
|
+
"readOnly": true
|
|
23657
|
+
},
|
|
23381
23658
|
"location": {
|
|
23382
23659
|
"type": "object",
|
|
23383
23660
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -23495,6 +23772,13 @@
|
|
|
23495
23772
|
],
|
|
23496
23773
|
"additionalProperties": false,
|
|
23497
23774
|
"title": "Source Location"
|
|
23775
|
+
},
|
|
23776
|
+
"autoScreenshot": {
|
|
23777
|
+
"type": "string",
|
|
23778
|
+
"minLength": 1,
|
|
23779
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23780
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23781
|
+
"readOnly": true
|
|
23498
23782
|
}
|
|
23499
23783
|
},
|
|
23500
23784
|
"title": "Common"
|
|
@@ -23803,6 +24087,13 @@
|
|
|
23803
24087
|
],
|
|
23804
24088
|
"additionalProperties": false,
|
|
23805
24089
|
"title": "Source Location"
|
|
24090
|
+
},
|
|
24091
|
+
"autoScreenshot": {
|
|
24092
|
+
"type": "string",
|
|
24093
|
+
"minLength": 1,
|
|
24094
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
24095
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
24096
|
+
"readOnly": true
|
|
23806
24097
|
}
|
|
23807
24098
|
},
|
|
23808
24099
|
"title": "Common"
|
|
@@ -24155,6 +24446,13 @@
|
|
|
24155
24446
|
],
|
|
24156
24447
|
"additionalProperties": false,
|
|
24157
24448
|
"title": "Source Location"
|
|
24449
|
+
},
|
|
24450
|
+
"autoScreenshot": {
|
|
24451
|
+
"type": "string",
|
|
24452
|
+
"minLength": 1,
|
|
24453
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
24454
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
24455
|
+
"readOnly": true
|
|
24158
24456
|
}
|
|
24159
24457
|
},
|
|
24160
24458
|
"title": "Common"
|
|
@@ -25604,6 +25902,13 @@
|
|
|
25604
25902
|
],
|
|
25605
25903
|
"additionalProperties": false,
|
|
25606
25904
|
"title": "Source Location"
|
|
25905
|
+
},
|
|
25906
|
+
"autoScreenshot": {
|
|
25907
|
+
"type": "string",
|
|
25908
|
+
"minLength": 1,
|
|
25909
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
25910
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
25911
|
+
"readOnly": true
|
|
25607
25912
|
}
|
|
25608
25913
|
},
|
|
25609
25914
|
"title": "Common"
|
|
@@ -26146,6 +26451,13 @@
|
|
|
26146
26451
|
],
|
|
26147
26452
|
"additionalProperties": false,
|
|
26148
26453
|
"title": "Source Location"
|
|
26454
|
+
},
|
|
26455
|
+
"autoScreenshot": {
|
|
26456
|
+
"type": "string",
|
|
26457
|
+
"minLength": 1,
|
|
26458
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
26459
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
26460
|
+
"readOnly": true
|
|
26149
26461
|
}
|
|
26150
26462
|
},
|
|
26151
26463
|
"title": "Common"
|
|
@@ -27240,6 +27552,13 @@
|
|
|
27240
27552
|
],
|
|
27241
27553
|
"additionalProperties": false,
|
|
27242
27554
|
"title": "Source Location"
|
|
27555
|
+
},
|
|
27556
|
+
"autoScreenshot": {
|
|
27557
|
+
"type": "string",
|
|
27558
|
+
"minLength": 1,
|
|
27559
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
27560
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
27561
|
+
"readOnly": true
|
|
27243
27562
|
}
|
|
27244
27563
|
},
|
|
27245
27564
|
"title": "Common"
|
|
@@ -27576,6 +27895,13 @@
|
|
|
27576
27895
|
],
|
|
27577
27896
|
"additionalProperties": false,
|
|
27578
27897
|
"title": "Source Location"
|
|
27898
|
+
},
|
|
27899
|
+
"autoScreenshot": {
|
|
27900
|
+
"type": "string",
|
|
27901
|
+
"minLength": 1,
|
|
27902
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
27903
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
27904
|
+
"readOnly": true
|
|
27579
27905
|
}
|
|
27580
27906
|
},
|
|
27581
27907
|
"title": "Common"
|
|
@@ -27898,6 +28224,13 @@
|
|
|
27898
28224
|
],
|
|
27899
28225
|
"additionalProperties": false,
|
|
27900
28226
|
"title": "Source Location"
|
|
28227
|
+
},
|
|
28228
|
+
"autoScreenshot": {
|
|
28229
|
+
"type": "string",
|
|
28230
|
+
"minLength": 1,
|
|
28231
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
28232
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
28233
|
+
"readOnly": true
|
|
27901
28234
|
}
|
|
27902
28235
|
},
|
|
27903
28236
|
"title": "Common"
|
|
@@ -28242,6 +28575,13 @@
|
|
|
28242
28575
|
],
|
|
28243
28576
|
"additionalProperties": false,
|
|
28244
28577
|
"title": "Source Location"
|
|
28578
|
+
},
|
|
28579
|
+
"autoScreenshot": {
|
|
28580
|
+
"type": "string",
|
|
28581
|
+
"minLength": 1,
|
|
28582
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
28583
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
28584
|
+
"readOnly": true
|
|
28245
28585
|
}
|
|
28246
28586
|
},
|
|
28247
28587
|
"title": "Common"
|
|
@@ -29029,6 +29369,13 @@
|
|
|
29029
29369
|
],
|
|
29030
29370
|
"additionalProperties": false,
|
|
29031
29371
|
"title": "Source Location"
|
|
29372
|
+
},
|
|
29373
|
+
"autoScreenshot": {
|
|
29374
|
+
"type": "string",
|
|
29375
|
+
"minLength": 1,
|
|
29376
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29377
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29378
|
+
"readOnly": true
|
|
29032
29379
|
}
|
|
29033
29380
|
},
|
|
29034
29381
|
"title": "Common"
|
|
@@ -29374,6 +29721,13 @@
|
|
|
29374
29721
|
],
|
|
29375
29722
|
"additionalProperties": false,
|
|
29376
29723
|
"title": "Source Location"
|
|
29724
|
+
},
|
|
29725
|
+
"autoScreenshot": {
|
|
29726
|
+
"type": "string",
|
|
29727
|
+
"minLength": 1,
|
|
29728
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29729
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29730
|
+
"readOnly": true
|
|
29377
29731
|
}
|
|
29378
29732
|
},
|
|
29379
29733
|
"title": "Common"
|
|
@@ -29575,6 +29929,13 @@
|
|
|
29575
29929
|
],
|
|
29576
29930
|
"additionalProperties": false,
|
|
29577
29931
|
"title": "Source Location"
|
|
29932
|
+
},
|
|
29933
|
+
"autoScreenshot": {
|
|
29934
|
+
"type": "string",
|
|
29935
|
+
"minLength": 1,
|
|
29936
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29937
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29938
|
+
"readOnly": true
|
|
29578
29939
|
}
|
|
29579
29940
|
},
|
|
29580
29941
|
"title": "Common"
|
|
@@ -29687,6 +30048,13 @@
|
|
|
29687
30048
|
],
|
|
29688
30049
|
"additionalProperties": false,
|
|
29689
30050
|
"title": "Source Location"
|
|
30051
|
+
},
|
|
30052
|
+
"autoScreenshot": {
|
|
30053
|
+
"type": "string",
|
|
30054
|
+
"minLength": 1,
|
|
30055
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30056
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30057
|
+
"readOnly": true
|
|
29690
30058
|
}
|
|
29691
30059
|
},
|
|
29692
30060
|
"title": "Common"
|
|
@@ -29796,6 +30164,13 @@
|
|
|
29796
30164
|
],
|
|
29797
30165
|
"additionalProperties": false,
|
|
29798
30166
|
"title": "Source Location"
|
|
30167
|
+
},
|
|
30168
|
+
"autoScreenshot": {
|
|
30169
|
+
"type": "string",
|
|
30170
|
+
"minLength": 1,
|
|
30171
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30172
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30173
|
+
"readOnly": true
|
|
29799
30174
|
}
|
|
29800
30175
|
},
|
|
29801
30176
|
"title": "Common"
|
|
@@ -30392,6 +30767,13 @@
|
|
|
30392
30767
|
],
|
|
30393
30768
|
"additionalProperties": false,
|
|
30394
30769
|
"title": "Source Location"
|
|
30770
|
+
},
|
|
30771
|
+
"autoScreenshot": {
|
|
30772
|
+
"type": "string",
|
|
30773
|
+
"minLength": 1,
|
|
30774
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30775
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30776
|
+
"readOnly": true
|
|
30395
30777
|
}
|
|
30396
30778
|
},
|
|
30397
30779
|
"title": "Common"
|
|
@@ -30720,6 +31102,13 @@
|
|
|
30720
31102
|
],
|
|
30721
31103
|
"additionalProperties": false,
|
|
30722
31104
|
"title": "Source Location"
|
|
31105
|
+
},
|
|
31106
|
+
"autoScreenshot": {
|
|
31107
|
+
"type": "string",
|
|
31108
|
+
"minLength": 1,
|
|
31109
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
31110
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
31111
|
+
"readOnly": true
|
|
30723
31112
|
}
|
|
30724
31113
|
},
|
|
30725
31114
|
"title": "Common"
|
|
@@ -31858,6 +32247,11 @@
|
|
|
31858
32247
|
"type": "boolean",
|
|
31859
32248
|
"default": false
|
|
31860
32249
|
},
|
|
32250
|
+
"autoScreenshot": {
|
|
32251
|
+
"description": "If `true`, captures a screenshot after every step that runs in a browser, in addition to any explicit `screenshot` steps. Images are saved in the per-run artifact directory (`<output>/.doc-detective/run-<runId>/`) at paths derived from spec, test, and context IDs plus the step's order, action, and ID (for example, `screenshots/<specId>/<testId>/<contextId>/01-goTo-s4f2a91c.png`), so the same step lands on the same relative path in every run's folder for run-over-run comparison. Specs and tests can override this value with their own `autoScreenshot` fields (test level wins over spec level, which wins over config level). Equivalent to `--auto-screenshot` on the CLI.",
|
|
32252
|
+
"type": "boolean",
|
|
32253
|
+
"default": false
|
|
32254
|
+
},
|
|
31861
32255
|
"autoUpdate": {
|
|
31862
32256
|
"description": "If `true` (default), the CLI checks for a newer published `doc-detective` on startup and self-updates before running tests. Updates happen for global (`npm i -g`) and `npx` installs only — local installs (where `doc-detective` is a project dep) get an informational message instead, since auto-updating would mutate the user's lockfile. CI environments and the `DOC_DETECTIVE_SKIP_AUTO_UPDATE=1` env var also skip the check. Set to `false` to pin to the installed version. Equivalent to `--no-auto-update` on the CLI.",
|
|
31863
32257
|
"type": "boolean",
|
|
@@ -32075,6 +32469,13 @@
|
|
|
32075
32469
|
],
|
|
32076
32470
|
"additionalProperties": false,
|
|
32077
32471
|
"title": "Source Location"
|
|
32472
|
+
},
|
|
32473
|
+
"autoScreenshot": {
|
|
32474
|
+
"type": "string",
|
|
32475
|
+
"minLength": 1,
|
|
32476
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32477
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32478
|
+
"readOnly": true
|
|
32078
32479
|
}
|
|
32079
32480
|
},
|
|
32080
32481
|
"title": "Common"
|
|
@@ -32128,6 +32529,13 @@
|
|
|
32128
32529
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
32129
32530
|
"default": false
|
|
32130
32531
|
},
|
|
32532
|
+
"autoScreenshot": {
|
|
32533
|
+
"type": "string",
|
|
32534
|
+
"minLength": 1,
|
|
32535
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32536
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32537
|
+
"readOnly": true
|
|
32538
|
+
},
|
|
32131
32539
|
"location": {
|
|
32132
32540
|
"type": "object",
|
|
32133
32541
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -32245,6 +32653,13 @@
|
|
|
32245
32653
|
],
|
|
32246
32654
|
"additionalProperties": false,
|
|
32247
32655
|
"title": "Source Location"
|
|
32656
|
+
},
|
|
32657
|
+
"autoScreenshot": {
|
|
32658
|
+
"type": "string",
|
|
32659
|
+
"minLength": 1,
|
|
32660
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32661
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32662
|
+
"readOnly": true
|
|
32248
32663
|
}
|
|
32249
32664
|
},
|
|
32250
32665
|
"title": "Common"
|
|
@@ -32553,6 +32968,13 @@
|
|
|
32553
32968
|
],
|
|
32554
32969
|
"additionalProperties": false,
|
|
32555
32970
|
"title": "Source Location"
|
|
32971
|
+
},
|
|
32972
|
+
"autoScreenshot": {
|
|
32973
|
+
"type": "string",
|
|
32974
|
+
"minLength": 1,
|
|
32975
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32976
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32977
|
+
"readOnly": true
|
|
32556
32978
|
}
|
|
32557
32979
|
},
|
|
32558
32980
|
"title": "Common"
|
|
@@ -32905,6 +33327,13 @@
|
|
|
32905
33327
|
],
|
|
32906
33328
|
"additionalProperties": false,
|
|
32907
33329
|
"title": "Source Location"
|
|
33330
|
+
},
|
|
33331
|
+
"autoScreenshot": {
|
|
33332
|
+
"type": "string",
|
|
33333
|
+
"minLength": 1,
|
|
33334
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
33335
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
33336
|
+
"readOnly": true
|
|
32908
33337
|
}
|
|
32909
33338
|
},
|
|
32910
33339
|
"title": "Common"
|
|
@@ -34354,6 +34783,13 @@
|
|
|
34354
34783
|
],
|
|
34355
34784
|
"additionalProperties": false,
|
|
34356
34785
|
"title": "Source Location"
|
|
34786
|
+
},
|
|
34787
|
+
"autoScreenshot": {
|
|
34788
|
+
"type": "string",
|
|
34789
|
+
"minLength": 1,
|
|
34790
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
34791
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
34792
|
+
"readOnly": true
|
|
34357
34793
|
}
|
|
34358
34794
|
},
|
|
34359
34795
|
"title": "Common"
|
|
@@ -34896,6 +35332,13 @@
|
|
|
34896
35332
|
],
|
|
34897
35333
|
"additionalProperties": false,
|
|
34898
35334
|
"title": "Source Location"
|
|
35335
|
+
},
|
|
35336
|
+
"autoScreenshot": {
|
|
35337
|
+
"type": "string",
|
|
35338
|
+
"minLength": 1,
|
|
35339
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
35340
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
35341
|
+
"readOnly": true
|
|
34899
35342
|
}
|
|
34900
35343
|
},
|
|
34901
35344
|
"title": "Common"
|
|
@@ -35990,6 +36433,13 @@
|
|
|
35990
36433
|
],
|
|
35991
36434
|
"additionalProperties": false,
|
|
35992
36435
|
"title": "Source Location"
|
|
36436
|
+
},
|
|
36437
|
+
"autoScreenshot": {
|
|
36438
|
+
"type": "string",
|
|
36439
|
+
"minLength": 1,
|
|
36440
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
36441
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
36442
|
+
"readOnly": true
|
|
35993
36443
|
}
|
|
35994
36444
|
},
|
|
35995
36445
|
"title": "Common"
|
|
@@ -36326,6 +36776,13 @@
|
|
|
36326
36776
|
],
|
|
36327
36777
|
"additionalProperties": false,
|
|
36328
36778
|
"title": "Source Location"
|
|
36779
|
+
},
|
|
36780
|
+
"autoScreenshot": {
|
|
36781
|
+
"type": "string",
|
|
36782
|
+
"minLength": 1,
|
|
36783
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
36784
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
36785
|
+
"readOnly": true
|
|
36329
36786
|
}
|
|
36330
36787
|
},
|
|
36331
36788
|
"title": "Common"
|
|
@@ -36648,6 +37105,13 @@
|
|
|
36648
37105
|
],
|
|
36649
37106
|
"additionalProperties": false,
|
|
36650
37107
|
"title": "Source Location"
|
|
37108
|
+
},
|
|
37109
|
+
"autoScreenshot": {
|
|
37110
|
+
"type": "string",
|
|
37111
|
+
"minLength": 1,
|
|
37112
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
37113
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
37114
|
+
"readOnly": true
|
|
36651
37115
|
}
|
|
36652
37116
|
},
|
|
36653
37117
|
"title": "Common"
|
|
@@ -36992,6 +37456,13 @@
|
|
|
36992
37456
|
],
|
|
36993
37457
|
"additionalProperties": false,
|
|
36994
37458
|
"title": "Source Location"
|
|
37459
|
+
},
|
|
37460
|
+
"autoScreenshot": {
|
|
37461
|
+
"type": "string",
|
|
37462
|
+
"minLength": 1,
|
|
37463
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
37464
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
37465
|
+
"readOnly": true
|
|
36995
37466
|
}
|
|
36996
37467
|
},
|
|
36997
37468
|
"title": "Common"
|
|
@@ -37779,6 +38250,13 @@
|
|
|
37779
38250
|
],
|
|
37780
38251
|
"additionalProperties": false,
|
|
37781
38252
|
"title": "Source Location"
|
|
38253
|
+
},
|
|
38254
|
+
"autoScreenshot": {
|
|
38255
|
+
"type": "string",
|
|
38256
|
+
"minLength": 1,
|
|
38257
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38258
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38259
|
+
"readOnly": true
|
|
37782
38260
|
}
|
|
37783
38261
|
},
|
|
37784
38262
|
"title": "Common"
|
|
@@ -38124,6 +38602,13 @@
|
|
|
38124
38602
|
],
|
|
38125
38603
|
"additionalProperties": false,
|
|
38126
38604
|
"title": "Source Location"
|
|
38605
|
+
},
|
|
38606
|
+
"autoScreenshot": {
|
|
38607
|
+
"type": "string",
|
|
38608
|
+
"minLength": 1,
|
|
38609
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38610
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38611
|
+
"readOnly": true
|
|
38127
38612
|
}
|
|
38128
38613
|
},
|
|
38129
38614
|
"title": "Common"
|
|
@@ -38325,6 +38810,13 @@
|
|
|
38325
38810
|
],
|
|
38326
38811
|
"additionalProperties": false,
|
|
38327
38812
|
"title": "Source Location"
|
|
38813
|
+
},
|
|
38814
|
+
"autoScreenshot": {
|
|
38815
|
+
"type": "string",
|
|
38816
|
+
"minLength": 1,
|
|
38817
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38818
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38819
|
+
"readOnly": true
|
|
38328
38820
|
}
|
|
38329
38821
|
},
|
|
38330
38822
|
"title": "Common"
|
|
@@ -38437,6 +38929,13 @@
|
|
|
38437
38929
|
],
|
|
38438
38930
|
"additionalProperties": false,
|
|
38439
38931
|
"title": "Source Location"
|
|
38932
|
+
},
|
|
38933
|
+
"autoScreenshot": {
|
|
38934
|
+
"type": "string",
|
|
38935
|
+
"minLength": 1,
|
|
38936
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38937
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38938
|
+
"readOnly": true
|
|
38440
38939
|
}
|
|
38441
38940
|
},
|
|
38442
38941
|
"title": "Common"
|
|
@@ -38546,6 +39045,13 @@
|
|
|
38546
39045
|
],
|
|
38547
39046
|
"additionalProperties": false,
|
|
38548
39047
|
"title": "Source Location"
|
|
39048
|
+
},
|
|
39049
|
+
"autoScreenshot": {
|
|
39050
|
+
"type": "string",
|
|
39051
|
+
"minLength": 1,
|
|
39052
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
39053
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
39054
|
+
"readOnly": true
|
|
38549
39055
|
}
|
|
38550
39056
|
},
|
|
38551
39057
|
"title": "Common"
|
|
@@ -39142,6 +39648,13 @@
|
|
|
39142
39648
|
],
|
|
39143
39649
|
"additionalProperties": false,
|
|
39144
39650
|
"title": "Source Location"
|
|
39651
|
+
},
|
|
39652
|
+
"autoScreenshot": {
|
|
39653
|
+
"type": "string",
|
|
39654
|
+
"minLength": 1,
|
|
39655
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
39656
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
39657
|
+
"readOnly": true
|
|
39145
39658
|
}
|
|
39146
39659
|
},
|
|
39147
39660
|
"title": "Common"
|
|
@@ -39470,6 +39983,13 @@
|
|
|
39470
39983
|
],
|
|
39471
39984
|
"additionalProperties": false,
|
|
39472
39985
|
"title": "Source Location"
|
|
39986
|
+
},
|
|
39987
|
+
"autoScreenshot": {
|
|
39988
|
+
"type": "string",
|
|
39989
|
+
"minLength": 1,
|
|
39990
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
39991
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
39992
|
+
"readOnly": true
|
|
39473
39993
|
}
|
|
39474
39994
|
},
|
|
39475
39995
|
"title": "Common"
|
|
@@ -40194,6 +40714,10 @@
|
|
|
40194
40714
|
"specFilter": [
|
|
40195
40715
|
"auth"
|
|
40196
40716
|
]
|
|
40717
|
+
},
|
|
40718
|
+
{
|
|
40719
|
+
"autoScreenshot": true,
|
|
40720
|
+
"output": "./test-results"
|
|
40197
40721
|
}
|
|
40198
40722
|
]
|
|
40199
40723
|
},
|
|
@@ -40798,6 +41322,10 @@
|
|
|
40798
41322
|
]
|
|
40799
41323
|
}
|
|
40800
41324
|
},
|
|
41325
|
+
"autoScreenshot": {
|
|
41326
|
+
"type": "boolean",
|
|
41327
|
+
"description": "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
41328
|
+
},
|
|
40801
41329
|
"tests": {
|
|
40802
41330
|
"description": "[Tests](test) to perform.",
|
|
40803
41331
|
"type": "array",
|
|
@@ -40827,6 +41355,10 @@
|
|
|
40827
41355
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
40828
41356
|
"default": true
|
|
40829
41357
|
},
|
|
41358
|
+
"autoScreenshot": {
|
|
41359
|
+
"type": "boolean",
|
|
41360
|
+
"description": "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
41361
|
+
},
|
|
40830
41362
|
"runOn": {
|
|
40831
41363
|
"type": "array",
|
|
40832
41364
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -41493,6 +42025,13 @@
|
|
|
41493
42025
|
],
|
|
41494
42026
|
"additionalProperties": false,
|
|
41495
42027
|
"title": "Source Location"
|
|
42028
|
+
},
|
|
42029
|
+
"autoScreenshot": {
|
|
42030
|
+
"type": "string",
|
|
42031
|
+
"minLength": 1,
|
|
42032
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42033
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42034
|
+
"readOnly": true
|
|
41496
42035
|
}
|
|
41497
42036
|
},
|
|
41498
42037
|
"title": "Common"
|
|
@@ -41546,6 +42085,13 @@
|
|
|
41546
42085
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
41547
42086
|
"default": false
|
|
41548
42087
|
},
|
|
42088
|
+
"autoScreenshot": {
|
|
42089
|
+
"type": "string",
|
|
42090
|
+
"minLength": 1,
|
|
42091
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42092
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42093
|
+
"readOnly": true
|
|
42094
|
+
},
|
|
41549
42095
|
"location": {
|
|
41550
42096
|
"type": "object",
|
|
41551
42097
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -41663,6 +42209,13 @@
|
|
|
41663
42209
|
],
|
|
41664
42210
|
"additionalProperties": false,
|
|
41665
42211
|
"title": "Source Location"
|
|
42212
|
+
},
|
|
42213
|
+
"autoScreenshot": {
|
|
42214
|
+
"type": "string",
|
|
42215
|
+
"minLength": 1,
|
|
42216
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42217
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42218
|
+
"readOnly": true
|
|
41666
42219
|
}
|
|
41667
42220
|
},
|
|
41668
42221
|
"title": "Common"
|
|
@@ -41971,6 +42524,13 @@
|
|
|
41971
42524
|
],
|
|
41972
42525
|
"additionalProperties": false,
|
|
41973
42526
|
"title": "Source Location"
|
|
42527
|
+
},
|
|
42528
|
+
"autoScreenshot": {
|
|
42529
|
+
"type": "string",
|
|
42530
|
+
"minLength": 1,
|
|
42531
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42532
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42533
|
+
"readOnly": true
|
|
41974
42534
|
}
|
|
41975
42535
|
},
|
|
41976
42536
|
"title": "Common"
|
|
@@ -42323,6 +42883,13 @@
|
|
|
42323
42883
|
],
|
|
42324
42884
|
"additionalProperties": false,
|
|
42325
42885
|
"title": "Source Location"
|
|
42886
|
+
},
|
|
42887
|
+
"autoScreenshot": {
|
|
42888
|
+
"type": "string",
|
|
42889
|
+
"minLength": 1,
|
|
42890
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42891
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42892
|
+
"readOnly": true
|
|
42326
42893
|
}
|
|
42327
42894
|
},
|
|
42328
42895
|
"title": "Common"
|
|
@@ -43772,6 +44339,13 @@
|
|
|
43772
44339
|
],
|
|
43773
44340
|
"additionalProperties": false,
|
|
43774
44341
|
"title": "Source Location"
|
|
44342
|
+
},
|
|
44343
|
+
"autoScreenshot": {
|
|
44344
|
+
"type": "string",
|
|
44345
|
+
"minLength": 1,
|
|
44346
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
44347
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
44348
|
+
"readOnly": true
|
|
43775
44349
|
}
|
|
43776
44350
|
},
|
|
43777
44351
|
"title": "Common"
|
|
@@ -44314,6 +44888,13 @@
|
|
|
44314
44888
|
],
|
|
44315
44889
|
"additionalProperties": false,
|
|
44316
44890
|
"title": "Source Location"
|
|
44891
|
+
},
|
|
44892
|
+
"autoScreenshot": {
|
|
44893
|
+
"type": "string",
|
|
44894
|
+
"minLength": 1,
|
|
44895
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
44896
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
44897
|
+
"readOnly": true
|
|
44317
44898
|
}
|
|
44318
44899
|
},
|
|
44319
44900
|
"title": "Common"
|
|
@@ -45408,6 +45989,13 @@
|
|
|
45408
45989
|
],
|
|
45409
45990
|
"additionalProperties": false,
|
|
45410
45991
|
"title": "Source Location"
|
|
45992
|
+
},
|
|
45993
|
+
"autoScreenshot": {
|
|
45994
|
+
"type": "string",
|
|
45995
|
+
"minLength": 1,
|
|
45996
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
45997
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
45998
|
+
"readOnly": true
|
|
45411
45999
|
}
|
|
45412
46000
|
},
|
|
45413
46001
|
"title": "Common"
|
|
@@ -45744,6 +46332,13 @@
|
|
|
45744
46332
|
],
|
|
45745
46333
|
"additionalProperties": false,
|
|
45746
46334
|
"title": "Source Location"
|
|
46335
|
+
},
|
|
46336
|
+
"autoScreenshot": {
|
|
46337
|
+
"type": "string",
|
|
46338
|
+
"minLength": 1,
|
|
46339
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
46340
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
46341
|
+
"readOnly": true
|
|
45747
46342
|
}
|
|
45748
46343
|
},
|
|
45749
46344
|
"title": "Common"
|
|
@@ -46066,6 +46661,13 @@
|
|
|
46066
46661
|
],
|
|
46067
46662
|
"additionalProperties": false,
|
|
46068
46663
|
"title": "Source Location"
|
|
46664
|
+
},
|
|
46665
|
+
"autoScreenshot": {
|
|
46666
|
+
"type": "string",
|
|
46667
|
+
"minLength": 1,
|
|
46668
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
46669
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
46670
|
+
"readOnly": true
|
|
46069
46671
|
}
|
|
46070
46672
|
},
|
|
46071
46673
|
"title": "Common"
|
|
@@ -46410,6 +47012,13 @@
|
|
|
46410
47012
|
],
|
|
46411
47013
|
"additionalProperties": false,
|
|
46412
47014
|
"title": "Source Location"
|
|
47015
|
+
},
|
|
47016
|
+
"autoScreenshot": {
|
|
47017
|
+
"type": "string",
|
|
47018
|
+
"minLength": 1,
|
|
47019
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
47020
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
47021
|
+
"readOnly": true
|
|
46413
47022
|
}
|
|
46414
47023
|
},
|
|
46415
47024
|
"title": "Common"
|
|
@@ -47197,6 +47806,13 @@
|
|
|
47197
47806
|
],
|
|
47198
47807
|
"additionalProperties": false,
|
|
47199
47808
|
"title": "Source Location"
|
|
47809
|
+
},
|
|
47810
|
+
"autoScreenshot": {
|
|
47811
|
+
"type": "string",
|
|
47812
|
+
"minLength": 1,
|
|
47813
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
47814
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
47815
|
+
"readOnly": true
|
|
47200
47816
|
}
|
|
47201
47817
|
},
|
|
47202
47818
|
"title": "Common"
|
|
@@ -47542,6 +48158,13 @@
|
|
|
47542
48158
|
],
|
|
47543
48159
|
"additionalProperties": false,
|
|
47544
48160
|
"title": "Source Location"
|
|
48161
|
+
},
|
|
48162
|
+
"autoScreenshot": {
|
|
48163
|
+
"type": "string",
|
|
48164
|
+
"minLength": 1,
|
|
48165
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48166
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48167
|
+
"readOnly": true
|
|
47545
48168
|
}
|
|
47546
48169
|
},
|
|
47547
48170
|
"title": "Common"
|
|
@@ -47743,6 +48366,13 @@
|
|
|
47743
48366
|
],
|
|
47744
48367
|
"additionalProperties": false,
|
|
47745
48368
|
"title": "Source Location"
|
|
48369
|
+
},
|
|
48370
|
+
"autoScreenshot": {
|
|
48371
|
+
"type": "string",
|
|
48372
|
+
"minLength": 1,
|
|
48373
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48374
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48375
|
+
"readOnly": true
|
|
47746
48376
|
}
|
|
47747
48377
|
},
|
|
47748
48378
|
"title": "Common"
|
|
@@ -47855,6 +48485,13 @@
|
|
|
47855
48485
|
],
|
|
47856
48486
|
"additionalProperties": false,
|
|
47857
48487
|
"title": "Source Location"
|
|
48488
|
+
},
|
|
48489
|
+
"autoScreenshot": {
|
|
48490
|
+
"type": "string",
|
|
48491
|
+
"minLength": 1,
|
|
48492
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48493
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48494
|
+
"readOnly": true
|
|
47858
48495
|
}
|
|
47859
48496
|
},
|
|
47860
48497
|
"title": "Common"
|
|
@@ -47964,6 +48601,13 @@
|
|
|
47964
48601
|
],
|
|
47965
48602
|
"additionalProperties": false,
|
|
47966
48603
|
"title": "Source Location"
|
|
48604
|
+
},
|
|
48605
|
+
"autoScreenshot": {
|
|
48606
|
+
"type": "string",
|
|
48607
|
+
"minLength": 1,
|
|
48608
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48609
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48610
|
+
"readOnly": true
|
|
47967
48611
|
}
|
|
47968
48612
|
},
|
|
47969
48613
|
"title": "Common"
|
|
@@ -48560,6 +49204,13 @@
|
|
|
48560
49204
|
],
|
|
48561
49205
|
"additionalProperties": false,
|
|
48562
49206
|
"title": "Source Location"
|
|
49207
|
+
},
|
|
49208
|
+
"autoScreenshot": {
|
|
49209
|
+
"type": "string",
|
|
49210
|
+
"minLength": 1,
|
|
49211
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
49212
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
49213
|
+
"readOnly": true
|
|
48563
49214
|
}
|
|
48564
49215
|
},
|
|
48565
49216
|
"title": "Common"
|
|
@@ -48888,6 +49539,13 @@
|
|
|
48888
49539
|
],
|
|
48889
49540
|
"additionalProperties": false,
|
|
48890
49541
|
"title": "Source Location"
|
|
49542
|
+
},
|
|
49543
|
+
"autoScreenshot": {
|
|
49544
|
+
"type": "string",
|
|
49545
|
+
"minLength": 1,
|
|
49546
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
49547
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
49548
|
+
"readOnly": true
|
|
48891
49549
|
}
|
|
48892
49550
|
},
|
|
48893
49551
|
"title": "Common"
|
|
@@ -49682,6 +50340,13 @@
|
|
|
49682
50340
|
],
|
|
49683
50341
|
"additionalProperties": false,
|
|
49684
50342
|
"title": "Source Location"
|
|
50343
|
+
},
|
|
50344
|
+
"autoScreenshot": {
|
|
50345
|
+
"type": "string",
|
|
50346
|
+
"minLength": 1,
|
|
50347
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50348
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50349
|
+
"readOnly": true
|
|
49685
50350
|
}
|
|
49686
50351
|
},
|
|
49687
50352
|
"title": "Common"
|
|
@@ -49735,6 +50400,13 @@
|
|
|
49735
50400
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
49736
50401
|
"default": false
|
|
49737
50402
|
},
|
|
50403
|
+
"autoScreenshot": {
|
|
50404
|
+
"type": "string",
|
|
50405
|
+
"minLength": 1,
|
|
50406
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50407
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50408
|
+
"readOnly": true
|
|
50409
|
+
},
|
|
49738
50410
|
"location": {
|
|
49739
50411
|
"type": "object",
|
|
49740
50412
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -49852,6 +50524,13 @@
|
|
|
49852
50524
|
],
|
|
49853
50525
|
"additionalProperties": false,
|
|
49854
50526
|
"title": "Source Location"
|
|
50527
|
+
},
|
|
50528
|
+
"autoScreenshot": {
|
|
50529
|
+
"type": "string",
|
|
50530
|
+
"minLength": 1,
|
|
50531
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50532
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50533
|
+
"readOnly": true
|
|
49855
50534
|
}
|
|
49856
50535
|
},
|
|
49857
50536
|
"title": "Common"
|
|
@@ -50160,6 +50839,13 @@
|
|
|
50160
50839
|
],
|
|
50161
50840
|
"additionalProperties": false,
|
|
50162
50841
|
"title": "Source Location"
|
|
50842
|
+
},
|
|
50843
|
+
"autoScreenshot": {
|
|
50844
|
+
"type": "string",
|
|
50845
|
+
"minLength": 1,
|
|
50846
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50847
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50848
|
+
"readOnly": true
|
|
50163
50849
|
}
|
|
50164
50850
|
},
|
|
50165
50851
|
"title": "Common"
|
|
@@ -50512,6 +51198,13 @@
|
|
|
50512
51198
|
],
|
|
50513
51199
|
"additionalProperties": false,
|
|
50514
51200
|
"title": "Source Location"
|
|
51201
|
+
},
|
|
51202
|
+
"autoScreenshot": {
|
|
51203
|
+
"type": "string",
|
|
51204
|
+
"minLength": 1,
|
|
51205
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
51206
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
51207
|
+
"readOnly": true
|
|
50515
51208
|
}
|
|
50516
51209
|
},
|
|
50517
51210
|
"title": "Common"
|
|
@@ -51961,6 +52654,13 @@
|
|
|
51961
52654
|
],
|
|
51962
52655
|
"additionalProperties": false,
|
|
51963
52656
|
"title": "Source Location"
|
|
52657
|
+
},
|
|
52658
|
+
"autoScreenshot": {
|
|
52659
|
+
"type": "string",
|
|
52660
|
+
"minLength": 1,
|
|
52661
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
52662
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
52663
|
+
"readOnly": true
|
|
51964
52664
|
}
|
|
51965
52665
|
},
|
|
51966
52666
|
"title": "Common"
|
|
@@ -52503,6 +53203,13 @@
|
|
|
52503
53203
|
],
|
|
52504
53204
|
"additionalProperties": false,
|
|
52505
53205
|
"title": "Source Location"
|
|
53206
|
+
},
|
|
53207
|
+
"autoScreenshot": {
|
|
53208
|
+
"type": "string",
|
|
53209
|
+
"minLength": 1,
|
|
53210
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
53211
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
53212
|
+
"readOnly": true
|
|
52506
53213
|
}
|
|
52507
53214
|
},
|
|
52508
53215
|
"title": "Common"
|
|
@@ -53597,6 +54304,13 @@
|
|
|
53597
54304
|
],
|
|
53598
54305
|
"additionalProperties": false,
|
|
53599
54306
|
"title": "Source Location"
|
|
54307
|
+
},
|
|
54308
|
+
"autoScreenshot": {
|
|
54309
|
+
"type": "string",
|
|
54310
|
+
"minLength": 1,
|
|
54311
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
54312
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
54313
|
+
"readOnly": true
|
|
53600
54314
|
}
|
|
53601
54315
|
},
|
|
53602
54316
|
"title": "Common"
|
|
@@ -53933,6 +54647,13 @@
|
|
|
53933
54647
|
],
|
|
53934
54648
|
"additionalProperties": false,
|
|
53935
54649
|
"title": "Source Location"
|
|
54650
|
+
},
|
|
54651
|
+
"autoScreenshot": {
|
|
54652
|
+
"type": "string",
|
|
54653
|
+
"minLength": 1,
|
|
54654
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
54655
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
54656
|
+
"readOnly": true
|
|
53936
54657
|
}
|
|
53937
54658
|
},
|
|
53938
54659
|
"title": "Common"
|
|
@@ -54255,6 +54976,13 @@
|
|
|
54255
54976
|
],
|
|
54256
54977
|
"additionalProperties": false,
|
|
54257
54978
|
"title": "Source Location"
|
|
54979
|
+
},
|
|
54980
|
+
"autoScreenshot": {
|
|
54981
|
+
"type": "string",
|
|
54982
|
+
"minLength": 1,
|
|
54983
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
54984
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
54985
|
+
"readOnly": true
|
|
54258
54986
|
}
|
|
54259
54987
|
},
|
|
54260
54988
|
"title": "Common"
|
|
@@ -54599,6 +55327,13 @@
|
|
|
54599
55327
|
],
|
|
54600
55328
|
"additionalProperties": false,
|
|
54601
55329
|
"title": "Source Location"
|
|
55330
|
+
},
|
|
55331
|
+
"autoScreenshot": {
|
|
55332
|
+
"type": "string",
|
|
55333
|
+
"minLength": 1,
|
|
55334
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
55335
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
55336
|
+
"readOnly": true
|
|
54602
55337
|
}
|
|
54603
55338
|
},
|
|
54604
55339
|
"title": "Common"
|
|
@@ -55386,6 +56121,13 @@
|
|
|
55386
56121
|
],
|
|
55387
56122
|
"additionalProperties": false,
|
|
55388
56123
|
"title": "Source Location"
|
|
56124
|
+
},
|
|
56125
|
+
"autoScreenshot": {
|
|
56126
|
+
"type": "string",
|
|
56127
|
+
"minLength": 1,
|
|
56128
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56129
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56130
|
+
"readOnly": true
|
|
55389
56131
|
}
|
|
55390
56132
|
},
|
|
55391
56133
|
"title": "Common"
|
|
@@ -55731,6 +56473,13 @@
|
|
|
55731
56473
|
],
|
|
55732
56474
|
"additionalProperties": false,
|
|
55733
56475
|
"title": "Source Location"
|
|
56476
|
+
},
|
|
56477
|
+
"autoScreenshot": {
|
|
56478
|
+
"type": "string",
|
|
56479
|
+
"minLength": 1,
|
|
56480
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56481
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56482
|
+
"readOnly": true
|
|
55734
56483
|
}
|
|
55735
56484
|
},
|
|
55736
56485
|
"title": "Common"
|
|
@@ -55932,6 +56681,13 @@
|
|
|
55932
56681
|
],
|
|
55933
56682
|
"additionalProperties": false,
|
|
55934
56683
|
"title": "Source Location"
|
|
56684
|
+
},
|
|
56685
|
+
"autoScreenshot": {
|
|
56686
|
+
"type": "string",
|
|
56687
|
+
"minLength": 1,
|
|
56688
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56689
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56690
|
+
"readOnly": true
|
|
55935
56691
|
}
|
|
55936
56692
|
},
|
|
55937
56693
|
"title": "Common"
|
|
@@ -56044,6 +56800,13 @@
|
|
|
56044
56800
|
],
|
|
56045
56801
|
"additionalProperties": false,
|
|
56046
56802
|
"title": "Source Location"
|
|
56803
|
+
},
|
|
56804
|
+
"autoScreenshot": {
|
|
56805
|
+
"type": "string",
|
|
56806
|
+
"minLength": 1,
|
|
56807
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56808
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56809
|
+
"readOnly": true
|
|
56047
56810
|
}
|
|
56048
56811
|
},
|
|
56049
56812
|
"title": "Common"
|
|
@@ -56153,6 +56916,13 @@
|
|
|
56153
56916
|
],
|
|
56154
56917
|
"additionalProperties": false,
|
|
56155
56918
|
"title": "Source Location"
|
|
56919
|
+
},
|
|
56920
|
+
"autoScreenshot": {
|
|
56921
|
+
"type": "string",
|
|
56922
|
+
"minLength": 1,
|
|
56923
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56924
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56925
|
+
"readOnly": true
|
|
56156
56926
|
}
|
|
56157
56927
|
},
|
|
56158
56928
|
"title": "Common"
|
|
@@ -56749,6 +57519,13 @@
|
|
|
56749
57519
|
],
|
|
56750
57520
|
"additionalProperties": false,
|
|
56751
57521
|
"title": "Source Location"
|
|
57522
|
+
},
|
|
57523
|
+
"autoScreenshot": {
|
|
57524
|
+
"type": "string",
|
|
57525
|
+
"minLength": 1,
|
|
57526
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
57527
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
57528
|
+
"readOnly": true
|
|
56752
57529
|
}
|
|
56753
57530
|
},
|
|
56754
57531
|
"title": "Common"
|
|
@@ -57077,6 +57854,13 @@
|
|
|
57077
57854
|
],
|
|
57078
57855
|
"additionalProperties": false,
|
|
57079
57856
|
"title": "Source Location"
|
|
57857
|
+
},
|
|
57858
|
+
"autoScreenshot": {
|
|
57859
|
+
"type": "string",
|
|
57860
|
+
"minLength": 1,
|
|
57861
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
57862
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
57863
|
+
"readOnly": true
|
|
57080
57864
|
}
|
|
57081
57865
|
},
|
|
57082
57866
|
"title": "Common"
|
|
@@ -58285,6 +59069,16 @@
|
|
|
58285
59069
|
"type": "string",
|
|
58286
59070
|
"description": "Unique identifier for the test specification."
|
|
58287
59071
|
},
|
|
59072
|
+
"runId": {
|
|
59073
|
+
"type": "string",
|
|
59074
|
+
"description": "Identifier for the run that produced this report, derived from the run's start timestamp. Matches the run's artifact folder name (`run-<runId>`). System-populated.",
|
|
59075
|
+
"readOnly": true
|
|
59076
|
+
},
|
|
59077
|
+
"runDir": {
|
|
59078
|
+
"type": "string",
|
|
59079
|
+
"description": "Absolute path to the run's artifact folder (`<output>/.doc-detective/run-<runId>/`), where the `runFolder` reporter archives results and `autoScreenshot` images are saved. Step-level `autoScreenshot` paths in the report are relative to this folder. System-populated.",
|
|
59080
|
+
"readOnly": true
|
|
59081
|
+
},
|
|
58288
59082
|
"specs": {
|
|
58289
59083
|
"description": "Test specifications that were performed.",
|
|
58290
59084
|
"type": "array",
|
|
@@ -58886,6 +59680,10 @@
|
|
|
58886
59680
|
]
|
|
58887
59681
|
}
|
|
58888
59682
|
},
|
|
59683
|
+
"autoScreenshot": {
|
|
59684
|
+
"type": "boolean",
|
|
59685
|
+
"description": "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
59686
|
+
},
|
|
58889
59687
|
"tests": {
|
|
58890
59688
|
"description": "[Tests](test) to perform.",
|
|
58891
59689
|
"type": "array",
|
|
@@ -58915,6 +59713,10 @@
|
|
|
58915
59713
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
58916
59714
|
"default": true
|
|
58917
59715
|
},
|
|
59716
|
+
"autoScreenshot": {
|
|
59717
|
+
"type": "boolean",
|
|
59718
|
+
"description": "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
59719
|
+
},
|
|
58918
59720
|
"runOn": {
|
|
58919
59721
|
"type": "array",
|
|
58920
59722
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -59581,6 +60383,13 @@
|
|
|
59581
60383
|
],
|
|
59582
60384
|
"additionalProperties": false,
|
|
59583
60385
|
"title": "Source Location"
|
|
60386
|
+
},
|
|
60387
|
+
"autoScreenshot": {
|
|
60388
|
+
"type": "string",
|
|
60389
|
+
"minLength": 1,
|
|
60390
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60391
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60392
|
+
"readOnly": true
|
|
59584
60393
|
}
|
|
59585
60394
|
},
|
|
59586
60395
|
"title": "Common"
|
|
@@ -59634,6 +60443,13 @@
|
|
|
59634
60443
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
59635
60444
|
"default": false
|
|
59636
60445
|
},
|
|
60446
|
+
"autoScreenshot": {
|
|
60447
|
+
"type": "string",
|
|
60448
|
+
"minLength": 1,
|
|
60449
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60450
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60451
|
+
"readOnly": true
|
|
60452
|
+
},
|
|
59637
60453
|
"location": {
|
|
59638
60454
|
"type": "object",
|
|
59639
60455
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -59751,6 +60567,13 @@
|
|
|
59751
60567
|
],
|
|
59752
60568
|
"additionalProperties": false,
|
|
59753
60569
|
"title": "Source Location"
|
|
60570
|
+
},
|
|
60571
|
+
"autoScreenshot": {
|
|
60572
|
+
"type": "string",
|
|
60573
|
+
"minLength": 1,
|
|
60574
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60575
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60576
|
+
"readOnly": true
|
|
59754
60577
|
}
|
|
59755
60578
|
},
|
|
59756
60579
|
"title": "Common"
|
|
@@ -60059,6 +60882,13 @@
|
|
|
60059
60882
|
],
|
|
60060
60883
|
"additionalProperties": false,
|
|
60061
60884
|
"title": "Source Location"
|
|
60885
|
+
},
|
|
60886
|
+
"autoScreenshot": {
|
|
60887
|
+
"type": "string",
|
|
60888
|
+
"minLength": 1,
|
|
60889
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60890
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60891
|
+
"readOnly": true
|
|
60062
60892
|
}
|
|
60063
60893
|
},
|
|
60064
60894
|
"title": "Common"
|
|
@@ -60411,6 +61241,13 @@
|
|
|
60411
61241
|
],
|
|
60412
61242
|
"additionalProperties": false,
|
|
60413
61243
|
"title": "Source Location"
|
|
61244
|
+
},
|
|
61245
|
+
"autoScreenshot": {
|
|
61246
|
+
"type": "string",
|
|
61247
|
+
"minLength": 1,
|
|
61248
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
61249
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
61250
|
+
"readOnly": true
|
|
60414
61251
|
}
|
|
60415
61252
|
},
|
|
60416
61253
|
"title": "Common"
|
|
@@ -61860,6 +62697,13 @@
|
|
|
61860
62697
|
],
|
|
61861
62698
|
"additionalProperties": false,
|
|
61862
62699
|
"title": "Source Location"
|
|
62700
|
+
},
|
|
62701
|
+
"autoScreenshot": {
|
|
62702
|
+
"type": "string",
|
|
62703
|
+
"minLength": 1,
|
|
62704
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
62705
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
62706
|
+
"readOnly": true
|
|
61863
62707
|
}
|
|
61864
62708
|
},
|
|
61865
62709
|
"title": "Common"
|
|
@@ -62402,6 +63246,13 @@
|
|
|
62402
63246
|
],
|
|
62403
63247
|
"additionalProperties": false,
|
|
62404
63248
|
"title": "Source Location"
|
|
63249
|
+
},
|
|
63250
|
+
"autoScreenshot": {
|
|
63251
|
+
"type": "string",
|
|
63252
|
+
"minLength": 1,
|
|
63253
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
63254
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
63255
|
+
"readOnly": true
|
|
62405
63256
|
}
|
|
62406
63257
|
},
|
|
62407
63258
|
"title": "Common"
|
|
@@ -63496,6 +64347,13 @@
|
|
|
63496
64347
|
],
|
|
63497
64348
|
"additionalProperties": false,
|
|
63498
64349
|
"title": "Source Location"
|
|
64350
|
+
},
|
|
64351
|
+
"autoScreenshot": {
|
|
64352
|
+
"type": "string",
|
|
64353
|
+
"minLength": 1,
|
|
64354
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
64355
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
64356
|
+
"readOnly": true
|
|
63499
64357
|
}
|
|
63500
64358
|
},
|
|
63501
64359
|
"title": "Common"
|
|
@@ -63832,6 +64690,13 @@
|
|
|
63832
64690
|
],
|
|
63833
64691
|
"additionalProperties": false,
|
|
63834
64692
|
"title": "Source Location"
|
|
64693
|
+
},
|
|
64694
|
+
"autoScreenshot": {
|
|
64695
|
+
"type": "string",
|
|
64696
|
+
"minLength": 1,
|
|
64697
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
64698
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
64699
|
+
"readOnly": true
|
|
63835
64700
|
}
|
|
63836
64701
|
},
|
|
63837
64702
|
"title": "Common"
|
|
@@ -64154,6 +65019,13 @@
|
|
|
64154
65019
|
],
|
|
64155
65020
|
"additionalProperties": false,
|
|
64156
65021
|
"title": "Source Location"
|
|
65022
|
+
},
|
|
65023
|
+
"autoScreenshot": {
|
|
65024
|
+
"type": "string",
|
|
65025
|
+
"minLength": 1,
|
|
65026
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
65027
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
65028
|
+
"readOnly": true
|
|
64157
65029
|
}
|
|
64158
65030
|
},
|
|
64159
65031
|
"title": "Common"
|
|
@@ -64498,6 +65370,13 @@
|
|
|
64498
65370
|
],
|
|
64499
65371
|
"additionalProperties": false,
|
|
64500
65372
|
"title": "Source Location"
|
|
65373
|
+
},
|
|
65374
|
+
"autoScreenshot": {
|
|
65375
|
+
"type": "string",
|
|
65376
|
+
"minLength": 1,
|
|
65377
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
65378
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
65379
|
+
"readOnly": true
|
|
64501
65380
|
}
|
|
64502
65381
|
},
|
|
64503
65382
|
"title": "Common"
|
|
@@ -65285,6 +66164,13 @@
|
|
|
65285
66164
|
],
|
|
65286
66165
|
"additionalProperties": false,
|
|
65287
66166
|
"title": "Source Location"
|
|
66167
|
+
},
|
|
66168
|
+
"autoScreenshot": {
|
|
66169
|
+
"type": "string",
|
|
66170
|
+
"minLength": 1,
|
|
66171
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66172
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66173
|
+
"readOnly": true
|
|
65288
66174
|
}
|
|
65289
66175
|
},
|
|
65290
66176
|
"title": "Common"
|
|
@@ -65630,6 +66516,13 @@
|
|
|
65630
66516
|
],
|
|
65631
66517
|
"additionalProperties": false,
|
|
65632
66518
|
"title": "Source Location"
|
|
66519
|
+
},
|
|
66520
|
+
"autoScreenshot": {
|
|
66521
|
+
"type": "string",
|
|
66522
|
+
"minLength": 1,
|
|
66523
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66524
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66525
|
+
"readOnly": true
|
|
65633
66526
|
}
|
|
65634
66527
|
},
|
|
65635
66528
|
"title": "Common"
|
|
@@ -65831,6 +66724,13 @@
|
|
|
65831
66724
|
],
|
|
65832
66725
|
"additionalProperties": false,
|
|
65833
66726
|
"title": "Source Location"
|
|
66727
|
+
},
|
|
66728
|
+
"autoScreenshot": {
|
|
66729
|
+
"type": "string",
|
|
66730
|
+
"minLength": 1,
|
|
66731
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66732
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66733
|
+
"readOnly": true
|
|
65834
66734
|
}
|
|
65835
66735
|
},
|
|
65836
66736
|
"title": "Common"
|
|
@@ -65943,6 +66843,13 @@
|
|
|
65943
66843
|
],
|
|
65944
66844
|
"additionalProperties": false,
|
|
65945
66845
|
"title": "Source Location"
|
|
66846
|
+
},
|
|
66847
|
+
"autoScreenshot": {
|
|
66848
|
+
"type": "string",
|
|
66849
|
+
"minLength": 1,
|
|
66850
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66851
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66852
|
+
"readOnly": true
|
|
65946
66853
|
}
|
|
65947
66854
|
},
|
|
65948
66855
|
"title": "Common"
|
|
@@ -66052,6 +66959,13 @@
|
|
|
66052
66959
|
],
|
|
66053
66960
|
"additionalProperties": false,
|
|
66054
66961
|
"title": "Source Location"
|
|
66962
|
+
},
|
|
66963
|
+
"autoScreenshot": {
|
|
66964
|
+
"type": "string",
|
|
66965
|
+
"minLength": 1,
|
|
66966
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66967
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66968
|
+
"readOnly": true
|
|
66055
66969
|
}
|
|
66056
66970
|
},
|
|
66057
66971
|
"title": "Common"
|
|
@@ -66648,6 +67562,13 @@
|
|
|
66648
67562
|
],
|
|
66649
67563
|
"additionalProperties": false,
|
|
66650
67564
|
"title": "Source Location"
|
|
67565
|
+
},
|
|
67566
|
+
"autoScreenshot": {
|
|
67567
|
+
"type": "string",
|
|
67568
|
+
"minLength": 1,
|
|
67569
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
67570
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
67571
|
+
"readOnly": true
|
|
66651
67572
|
}
|
|
66652
67573
|
},
|
|
66653
67574
|
"title": "Common"
|
|
@@ -66976,6 +67897,13 @@
|
|
|
66976
67897
|
],
|
|
66977
67898
|
"additionalProperties": false,
|
|
66978
67899
|
"title": "Source Location"
|
|
67900
|
+
},
|
|
67901
|
+
"autoScreenshot": {
|
|
67902
|
+
"type": "string",
|
|
67903
|
+
"minLength": 1,
|
|
67904
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
67905
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
67906
|
+
"readOnly": true
|
|
66979
67907
|
}
|
|
66980
67908
|
},
|
|
66981
67909
|
"title": "Common"
|
|
@@ -67770,6 +68698,13 @@
|
|
|
67770
68698
|
],
|
|
67771
68699
|
"additionalProperties": false,
|
|
67772
68700
|
"title": "Source Location"
|
|
68701
|
+
},
|
|
68702
|
+
"autoScreenshot": {
|
|
68703
|
+
"type": "string",
|
|
68704
|
+
"minLength": 1,
|
|
68705
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68706
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68707
|
+
"readOnly": true
|
|
67773
68708
|
}
|
|
67774
68709
|
},
|
|
67775
68710
|
"title": "Common"
|
|
@@ -67823,6 +68758,13 @@
|
|
|
67823
68758
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
67824
68759
|
"default": false
|
|
67825
68760
|
},
|
|
68761
|
+
"autoScreenshot": {
|
|
68762
|
+
"type": "string",
|
|
68763
|
+
"minLength": 1,
|
|
68764
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68765
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68766
|
+
"readOnly": true
|
|
68767
|
+
},
|
|
67826
68768
|
"location": {
|
|
67827
68769
|
"type": "object",
|
|
67828
68770
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -67940,6 +68882,13 @@
|
|
|
67940
68882
|
],
|
|
67941
68883
|
"additionalProperties": false,
|
|
67942
68884
|
"title": "Source Location"
|
|
68885
|
+
},
|
|
68886
|
+
"autoScreenshot": {
|
|
68887
|
+
"type": "string",
|
|
68888
|
+
"minLength": 1,
|
|
68889
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68890
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68891
|
+
"readOnly": true
|
|
67943
68892
|
}
|
|
67944
68893
|
},
|
|
67945
68894
|
"title": "Common"
|
|
@@ -68248,6 +69197,13 @@
|
|
|
68248
69197
|
],
|
|
68249
69198
|
"additionalProperties": false,
|
|
68250
69199
|
"title": "Source Location"
|
|
69200
|
+
},
|
|
69201
|
+
"autoScreenshot": {
|
|
69202
|
+
"type": "string",
|
|
69203
|
+
"minLength": 1,
|
|
69204
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
69205
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
69206
|
+
"readOnly": true
|
|
68251
69207
|
}
|
|
68252
69208
|
},
|
|
68253
69209
|
"title": "Common"
|
|
@@ -68600,6 +69556,13 @@
|
|
|
68600
69556
|
],
|
|
68601
69557
|
"additionalProperties": false,
|
|
68602
69558
|
"title": "Source Location"
|
|
69559
|
+
},
|
|
69560
|
+
"autoScreenshot": {
|
|
69561
|
+
"type": "string",
|
|
69562
|
+
"minLength": 1,
|
|
69563
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
69564
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
69565
|
+
"readOnly": true
|
|
68603
69566
|
}
|
|
68604
69567
|
},
|
|
68605
69568
|
"title": "Common"
|
|
@@ -70049,6 +71012,13 @@
|
|
|
70049
71012
|
],
|
|
70050
71013
|
"additionalProperties": false,
|
|
70051
71014
|
"title": "Source Location"
|
|
71015
|
+
},
|
|
71016
|
+
"autoScreenshot": {
|
|
71017
|
+
"type": "string",
|
|
71018
|
+
"minLength": 1,
|
|
71019
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
71020
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
71021
|
+
"readOnly": true
|
|
70052
71022
|
}
|
|
70053
71023
|
},
|
|
70054
71024
|
"title": "Common"
|
|
@@ -70591,6 +71561,13 @@
|
|
|
70591
71561
|
],
|
|
70592
71562
|
"additionalProperties": false,
|
|
70593
71563
|
"title": "Source Location"
|
|
71564
|
+
},
|
|
71565
|
+
"autoScreenshot": {
|
|
71566
|
+
"type": "string",
|
|
71567
|
+
"minLength": 1,
|
|
71568
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
71569
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
71570
|
+
"readOnly": true
|
|
70594
71571
|
}
|
|
70595
71572
|
},
|
|
70596
71573
|
"title": "Common"
|
|
@@ -71685,6 +72662,13 @@
|
|
|
71685
72662
|
],
|
|
71686
72663
|
"additionalProperties": false,
|
|
71687
72664
|
"title": "Source Location"
|
|
72665
|
+
},
|
|
72666
|
+
"autoScreenshot": {
|
|
72667
|
+
"type": "string",
|
|
72668
|
+
"minLength": 1,
|
|
72669
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
72670
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
72671
|
+
"readOnly": true
|
|
71688
72672
|
}
|
|
71689
72673
|
},
|
|
71690
72674
|
"title": "Common"
|
|
@@ -72021,6 +73005,13 @@
|
|
|
72021
73005
|
],
|
|
72022
73006
|
"additionalProperties": false,
|
|
72023
73007
|
"title": "Source Location"
|
|
73008
|
+
},
|
|
73009
|
+
"autoScreenshot": {
|
|
73010
|
+
"type": "string",
|
|
73011
|
+
"minLength": 1,
|
|
73012
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73013
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73014
|
+
"readOnly": true
|
|
72024
73015
|
}
|
|
72025
73016
|
},
|
|
72026
73017
|
"title": "Common"
|
|
@@ -72343,6 +73334,13 @@
|
|
|
72343
73334
|
],
|
|
72344
73335
|
"additionalProperties": false,
|
|
72345
73336
|
"title": "Source Location"
|
|
73337
|
+
},
|
|
73338
|
+
"autoScreenshot": {
|
|
73339
|
+
"type": "string",
|
|
73340
|
+
"minLength": 1,
|
|
73341
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73342
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73343
|
+
"readOnly": true
|
|
72346
73344
|
}
|
|
72347
73345
|
},
|
|
72348
73346
|
"title": "Common"
|
|
@@ -72687,6 +73685,13 @@
|
|
|
72687
73685
|
],
|
|
72688
73686
|
"additionalProperties": false,
|
|
72689
73687
|
"title": "Source Location"
|
|
73688
|
+
},
|
|
73689
|
+
"autoScreenshot": {
|
|
73690
|
+
"type": "string",
|
|
73691
|
+
"minLength": 1,
|
|
73692
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73693
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73694
|
+
"readOnly": true
|
|
72690
73695
|
}
|
|
72691
73696
|
},
|
|
72692
73697
|
"title": "Common"
|
|
@@ -73474,6 +74479,13 @@
|
|
|
73474
74479
|
],
|
|
73475
74480
|
"additionalProperties": false,
|
|
73476
74481
|
"title": "Source Location"
|
|
74482
|
+
},
|
|
74483
|
+
"autoScreenshot": {
|
|
74484
|
+
"type": "string",
|
|
74485
|
+
"minLength": 1,
|
|
74486
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
74487
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
74488
|
+
"readOnly": true
|
|
73477
74489
|
}
|
|
73478
74490
|
},
|
|
73479
74491
|
"title": "Common"
|
|
@@ -73819,6 +74831,13 @@
|
|
|
73819
74831
|
],
|
|
73820
74832
|
"additionalProperties": false,
|
|
73821
74833
|
"title": "Source Location"
|
|
74834
|
+
},
|
|
74835
|
+
"autoScreenshot": {
|
|
74836
|
+
"type": "string",
|
|
74837
|
+
"minLength": 1,
|
|
74838
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
74839
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
74840
|
+
"readOnly": true
|
|
73822
74841
|
}
|
|
73823
74842
|
},
|
|
73824
74843
|
"title": "Common"
|
|
@@ -74020,6 +75039,13 @@
|
|
|
74020
75039
|
],
|
|
74021
75040
|
"additionalProperties": false,
|
|
74022
75041
|
"title": "Source Location"
|
|
75042
|
+
},
|
|
75043
|
+
"autoScreenshot": {
|
|
75044
|
+
"type": "string",
|
|
75045
|
+
"minLength": 1,
|
|
75046
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75047
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75048
|
+
"readOnly": true
|
|
74023
75049
|
}
|
|
74024
75050
|
},
|
|
74025
75051
|
"title": "Common"
|
|
@@ -74132,6 +75158,13 @@
|
|
|
74132
75158
|
],
|
|
74133
75159
|
"additionalProperties": false,
|
|
74134
75160
|
"title": "Source Location"
|
|
75161
|
+
},
|
|
75162
|
+
"autoScreenshot": {
|
|
75163
|
+
"type": "string",
|
|
75164
|
+
"minLength": 1,
|
|
75165
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75166
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75167
|
+
"readOnly": true
|
|
74135
75168
|
}
|
|
74136
75169
|
},
|
|
74137
75170
|
"title": "Common"
|
|
@@ -74241,6 +75274,13 @@
|
|
|
74241
75274
|
],
|
|
74242
75275
|
"additionalProperties": false,
|
|
74243
75276
|
"title": "Source Location"
|
|
75277
|
+
},
|
|
75278
|
+
"autoScreenshot": {
|
|
75279
|
+
"type": "string",
|
|
75280
|
+
"minLength": 1,
|
|
75281
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75282
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75283
|
+
"readOnly": true
|
|
74244
75284
|
}
|
|
74245
75285
|
},
|
|
74246
75286
|
"title": "Common"
|
|
@@ -74837,6 +75877,13 @@
|
|
|
74837
75877
|
],
|
|
74838
75878
|
"additionalProperties": false,
|
|
74839
75879
|
"title": "Source Location"
|
|
75880
|
+
},
|
|
75881
|
+
"autoScreenshot": {
|
|
75882
|
+
"type": "string",
|
|
75883
|
+
"minLength": 1,
|
|
75884
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75885
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75886
|
+
"readOnly": true
|
|
74840
75887
|
}
|
|
74841
75888
|
},
|
|
74842
75889
|
"title": "Common"
|
|
@@ -75165,6 +76212,13 @@
|
|
|
75165
76212
|
],
|
|
75166
76213
|
"additionalProperties": false,
|
|
75167
76214
|
"title": "Source Location"
|
|
76215
|
+
},
|
|
76216
|
+
"autoScreenshot": {
|
|
76217
|
+
"type": "string",
|
|
76218
|
+
"minLength": 1,
|
|
76219
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
76220
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
76221
|
+
"readOnly": true
|
|
75168
76222
|
}
|
|
75169
76223
|
},
|
|
75170
76224
|
"title": "Common"
|
|
@@ -78362,6 +79416,10 @@
|
|
|
78362
79416
|
]
|
|
78363
79417
|
}
|
|
78364
79418
|
},
|
|
79419
|
+
"autoScreenshot": {
|
|
79420
|
+
"type": "boolean",
|
|
79421
|
+
"description": "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
79422
|
+
},
|
|
78365
79423
|
"tests": {
|
|
78366
79424
|
"description": "[Tests](test) to perform.",
|
|
78367
79425
|
"type": "array",
|
|
@@ -78391,6 +79449,10 @@
|
|
|
78391
79449
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
78392
79450
|
"default": true
|
|
78393
79451
|
},
|
|
79452
|
+
"autoScreenshot": {
|
|
79453
|
+
"type": "boolean",
|
|
79454
|
+
"description": "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
79455
|
+
},
|
|
78394
79456
|
"runOn": {
|
|
78395
79457
|
"type": "array",
|
|
78396
79458
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -79057,6 +80119,13 @@
|
|
|
79057
80119
|
],
|
|
79058
80120
|
"additionalProperties": false,
|
|
79059
80121
|
"title": "Source Location"
|
|
80122
|
+
},
|
|
80123
|
+
"autoScreenshot": {
|
|
80124
|
+
"type": "string",
|
|
80125
|
+
"minLength": 1,
|
|
80126
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80127
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80128
|
+
"readOnly": true
|
|
79060
80129
|
}
|
|
79061
80130
|
},
|
|
79062
80131
|
"title": "Common"
|
|
@@ -79110,6 +80179,13 @@
|
|
|
79110
80179
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
79111
80180
|
"default": false
|
|
79112
80181
|
},
|
|
80182
|
+
"autoScreenshot": {
|
|
80183
|
+
"type": "string",
|
|
80184
|
+
"minLength": 1,
|
|
80185
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80186
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80187
|
+
"readOnly": true
|
|
80188
|
+
},
|
|
79113
80189
|
"location": {
|
|
79114
80190
|
"type": "object",
|
|
79115
80191
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -79227,6 +80303,13 @@
|
|
|
79227
80303
|
],
|
|
79228
80304
|
"additionalProperties": false,
|
|
79229
80305
|
"title": "Source Location"
|
|
80306
|
+
},
|
|
80307
|
+
"autoScreenshot": {
|
|
80308
|
+
"type": "string",
|
|
80309
|
+
"minLength": 1,
|
|
80310
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80311
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80312
|
+
"readOnly": true
|
|
79230
80313
|
}
|
|
79231
80314
|
},
|
|
79232
80315
|
"title": "Common"
|
|
@@ -79535,6 +80618,13 @@
|
|
|
79535
80618
|
],
|
|
79536
80619
|
"additionalProperties": false,
|
|
79537
80620
|
"title": "Source Location"
|
|
80621
|
+
},
|
|
80622
|
+
"autoScreenshot": {
|
|
80623
|
+
"type": "string",
|
|
80624
|
+
"minLength": 1,
|
|
80625
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80626
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80627
|
+
"readOnly": true
|
|
79538
80628
|
}
|
|
79539
80629
|
},
|
|
79540
80630
|
"title": "Common"
|
|
@@ -79887,6 +80977,13 @@
|
|
|
79887
80977
|
],
|
|
79888
80978
|
"additionalProperties": false,
|
|
79889
80979
|
"title": "Source Location"
|
|
80980
|
+
},
|
|
80981
|
+
"autoScreenshot": {
|
|
80982
|
+
"type": "string",
|
|
80983
|
+
"minLength": 1,
|
|
80984
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80985
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80986
|
+
"readOnly": true
|
|
79890
80987
|
}
|
|
79891
80988
|
},
|
|
79892
80989
|
"title": "Common"
|
|
@@ -81336,6 +82433,13 @@
|
|
|
81336
82433
|
],
|
|
81337
82434
|
"additionalProperties": false,
|
|
81338
82435
|
"title": "Source Location"
|
|
82436
|
+
},
|
|
82437
|
+
"autoScreenshot": {
|
|
82438
|
+
"type": "string",
|
|
82439
|
+
"minLength": 1,
|
|
82440
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
82441
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
82442
|
+
"readOnly": true
|
|
81339
82443
|
}
|
|
81340
82444
|
},
|
|
81341
82445
|
"title": "Common"
|
|
@@ -81878,6 +82982,13 @@
|
|
|
81878
82982
|
],
|
|
81879
82983
|
"additionalProperties": false,
|
|
81880
82984
|
"title": "Source Location"
|
|
82985
|
+
},
|
|
82986
|
+
"autoScreenshot": {
|
|
82987
|
+
"type": "string",
|
|
82988
|
+
"minLength": 1,
|
|
82989
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
82990
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
82991
|
+
"readOnly": true
|
|
81881
82992
|
}
|
|
81882
82993
|
},
|
|
81883
82994
|
"title": "Common"
|
|
@@ -82972,6 +84083,13 @@
|
|
|
82972
84083
|
],
|
|
82973
84084
|
"additionalProperties": false,
|
|
82974
84085
|
"title": "Source Location"
|
|
84086
|
+
},
|
|
84087
|
+
"autoScreenshot": {
|
|
84088
|
+
"type": "string",
|
|
84089
|
+
"minLength": 1,
|
|
84090
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84091
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84092
|
+
"readOnly": true
|
|
82975
84093
|
}
|
|
82976
84094
|
},
|
|
82977
84095
|
"title": "Common"
|
|
@@ -83308,6 +84426,13 @@
|
|
|
83308
84426
|
],
|
|
83309
84427
|
"additionalProperties": false,
|
|
83310
84428
|
"title": "Source Location"
|
|
84429
|
+
},
|
|
84430
|
+
"autoScreenshot": {
|
|
84431
|
+
"type": "string",
|
|
84432
|
+
"minLength": 1,
|
|
84433
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84434
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84435
|
+
"readOnly": true
|
|
83311
84436
|
}
|
|
83312
84437
|
},
|
|
83313
84438
|
"title": "Common"
|
|
@@ -83630,6 +84755,13 @@
|
|
|
83630
84755
|
],
|
|
83631
84756
|
"additionalProperties": false,
|
|
83632
84757
|
"title": "Source Location"
|
|
84758
|
+
},
|
|
84759
|
+
"autoScreenshot": {
|
|
84760
|
+
"type": "string",
|
|
84761
|
+
"minLength": 1,
|
|
84762
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84763
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84764
|
+
"readOnly": true
|
|
83633
84765
|
}
|
|
83634
84766
|
},
|
|
83635
84767
|
"title": "Common"
|
|
@@ -83974,6 +85106,13 @@
|
|
|
83974
85106
|
],
|
|
83975
85107
|
"additionalProperties": false,
|
|
83976
85108
|
"title": "Source Location"
|
|
85109
|
+
},
|
|
85110
|
+
"autoScreenshot": {
|
|
85111
|
+
"type": "string",
|
|
85112
|
+
"minLength": 1,
|
|
85113
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
85114
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
85115
|
+
"readOnly": true
|
|
83977
85116
|
}
|
|
83978
85117
|
},
|
|
83979
85118
|
"title": "Common"
|
|
@@ -84761,6 +85900,13 @@
|
|
|
84761
85900
|
],
|
|
84762
85901
|
"additionalProperties": false,
|
|
84763
85902
|
"title": "Source Location"
|
|
85903
|
+
},
|
|
85904
|
+
"autoScreenshot": {
|
|
85905
|
+
"type": "string",
|
|
85906
|
+
"minLength": 1,
|
|
85907
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
85908
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
85909
|
+
"readOnly": true
|
|
84764
85910
|
}
|
|
84765
85911
|
},
|
|
84766
85912
|
"title": "Common"
|
|
@@ -85106,6 +86252,13 @@
|
|
|
85106
86252
|
],
|
|
85107
86253
|
"additionalProperties": false,
|
|
85108
86254
|
"title": "Source Location"
|
|
86255
|
+
},
|
|
86256
|
+
"autoScreenshot": {
|
|
86257
|
+
"type": "string",
|
|
86258
|
+
"minLength": 1,
|
|
86259
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86260
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86261
|
+
"readOnly": true
|
|
85109
86262
|
}
|
|
85110
86263
|
},
|
|
85111
86264
|
"title": "Common"
|
|
@@ -85307,6 +86460,13 @@
|
|
|
85307
86460
|
],
|
|
85308
86461
|
"additionalProperties": false,
|
|
85309
86462
|
"title": "Source Location"
|
|
86463
|
+
},
|
|
86464
|
+
"autoScreenshot": {
|
|
86465
|
+
"type": "string",
|
|
86466
|
+
"minLength": 1,
|
|
86467
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86468
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86469
|
+
"readOnly": true
|
|
85310
86470
|
}
|
|
85311
86471
|
},
|
|
85312
86472
|
"title": "Common"
|
|
@@ -85419,6 +86579,13 @@
|
|
|
85419
86579
|
],
|
|
85420
86580
|
"additionalProperties": false,
|
|
85421
86581
|
"title": "Source Location"
|
|
86582
|
+
},
|
|
86583
|
+
"autoScreenshot": {
|
|
86584
|
+
"type": "string",
|
|
86585
|
+
"minLength": 1,
|
|
86586
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86587
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86588
|
+
"readOnly": true
|
|
85422
86589
|
}
|
|
85423
86590
|
},
|
|
85424
86591
|
"title": "Common"
|
|
@@ -85528,6 +86695,13 @@
|
|
|
85528
86695
|
],
|
|
85529
86696
|
"additionalProperties": false,
|
|
85530
86697
|
"title": "Source Location"
|
|
86698
|
+
},
|
|
86699
|
+
"autoScreenshot": {
|
|
86700
|
+
"type": "string",
|
|
86701
|
+
"minLength": 1,
|
|
86702
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86703
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86704
|
+
"readOnly": true
|
|
85531
86705
|
}
|
|
85532
86706
|
},
|
|
85533
86707
|
"title": "Common"
|
|
@@ -86124,6 +87298,13 @@
|
|
|
86124
87298
|
],
|
|
86125
87299
|
"additionalProperties": false,
|
|
86126
87300
|
"title": "Source Location"
|
|
87301
|
+
},
|
|
87302
|
+
"autoScreenshot": {
|
|
87303
|
+
"type": "string",
|
|
87304
|
+
"minLength": 1,
|
|
87305
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
87306
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
87307
|
+
"readOnly": true
|
|
86127
87308
|
}
|
|
86128
87309
|
},
|
|
86129
87310
|
"title": "Common"
|
|
@@ -86452,6 +87633,13 @@
|
|
|
86452
87633
|
],
|
|
86453
87634
|
"additionalProperties": false,
|
|
86454
87635
|
"title": "Source Location"
|
|
87636
|
+
},
|
|
87637
|
+
"autoScreenshot": {
|
|
87638
|
+
"type": "string",
|
|
87639
|
+
"minLength": 1,
|
|
87640
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
87641
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
87642
|
+
"readOnly": true
|
|
86455
87643
|
}
|
|
86456
87644
|
},
|
|
86457
87645
|
"title": "Common"
|
|
@@ -87246,6 +88434,13 @@
|
|
|
87246
88434
|
],
|
|
87247
88435
|
"additionalProperties": false,
|
|
87248
88436
|
"title": "Source Location"
|
|
88437
|
+
},
|
|
88438
|
+
"autoScreenshot": {
|
|
88439
|
+
"type": "string",
|
|
88440
|
+
"minLength": 1,
|
|
88441
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88442
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88443
|
+
"readOnly": true
|
|
87249
88444
|
}
|
|
87250
88445
|
},
|
|
87251
88446
|
"title": "Common"
|
|
@@ -87299,6 +88494,13 @@
|
|
|
87299
88494
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
87300
88495
|
"default": false
|
|
87301
88496
|
},
|
|
88497
|
+
"autoScreenshot": {
|
|
88498
|
+
"type": "string",
|
|
88499
|
+
"minLength": 1,
|
|
88500
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88501
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88502
|
+
"readOnly": true
|
|
88503
|
+
},
|
|
87302
88504
|
"location": {
|
|
87303
88505
|
"type": "object",
|
|
87304
88506
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -87416,6 +88618,13 @@
|
|
|
87416
88618
|
],
|
|
87417
88619
|
"additionalProperties": false,
|
|
87418
88620
|
"title": "Source Location"
|
|
88621
|
+
},
|
|
88622
|
+
"autoScreenshot": {
|
|
88623
|
+
"type": "string",
|
|
88624
|
+
"minLength": 1,
|
|
88625
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88626
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88627
|
+
"readOnly": true
|
|
87419
88628
|
}
|
|
87420
88629
|
},
|
|
87421
88630
|
"title": "Common"
|
|
@@ -87724,6 +88933,13 @@
|
|
|
87724
88933
|
],
|
|
87725
88934
|
"additionalProperties": false,
|
|
87726
88935
|
"title": "Source Location"
|
|
88936
|
+
},
|
|
88937
|
+
"autoScreenshot": {
|
|
88938
|
+
"type": "string",
|
|
88939
|
+
"minLength": 1,
|
|
88940
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88941
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88942
|
+
"readOnly": true
|
|
87727
88943
|
}
|
|
87728
88944
|
},
|
|
87729
88945
|
"title": "Common"
|
|
@@ -88076,6 +89292,13 @@
|
|
|
88076
89292
|
],
|
|
88077
89293
|
"additionalProperties": false,
|
|
88078
89294
|
"title": "Source Location"
|
|
89295
|
+
},
|
|
89296
|
+
"autoScreenshot": {
|
|
89297
|
+
"type": "string",
|
|
89298
|
+
"minLength": 1,
|
|
89299
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
89300
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
89301
|
+
"readOnly": true
|
|
88079
89302
|
}
|
|
88080
89303
|
},
|
|
88081
89304
|
"title": "Common"
|
|
@@ -89525,6 +90748,13 @@
|
|
|
89525
90748
|
],
|
|
89526
90749
|
"additionalProperties": false,
|
|
89527
90750
|
"title": "Source Location"
|
|
90751
|
+
},
|
|
90752
|
+
"autoScreenshot": {
|
|
90753
|
+
"type": "string",
|
|
90754
|
+
"minLength": 1,
|
|
90755
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
90756
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
90757
|
+
"readOnly": true
|
|
89528
90758
|
}
|
|
89529
90759
|
},
|
|
89530
90760
|
"title": "Common"
|
|
@@ -90067,6 +91297,13 @@
|
|
|
90067
91297
|
],
|
|
90068
91298
|
"additionalProperties": false,
|
|
90069
91299
|
"title": "Source Location"
|
|
91300
|
+
},
|
|
91301
|
+
"autoScreenshot": {
|
|
91302
|
+
"type": "string",
|
|
91303
|
+
"minLength": 1,
|
|
91304
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
91305
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
91306
|
+
"readOnly": true
|
|
90070
91307
|
}
|
|
90071
91308
|
},
|
|
90072
91309
|
"title": "Common"
|
|
@@ -91161,6 +92398,13 @@
|
|
|
91161
92398
|
],
|
|
91162
92399
|
"additionalProperties": false,
|
|
91163
92400
|
"title": "Source Location"
|
|
92401
|
+
},
|
|
92402
|
+
"autoScreenshot": {
|
|
92403
|
+
"type": "string",
|
|
92404
|
+
"minLength": 1,
|
|
92405
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
92406
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
92407
|
+
"readOnly": true
|
|
91164
92408
|
}
|
|
91165
92409
|
},
|
|
91166
92410
|
"title": "Common"
|
|
@@ -91497,6 +92741,13 @@
|
|
|
91497
92741
|
],
|
|
91498
92742
|
"additionalProperties": false,
|
|
91499
92743
|
"title": "Source Location"
|
|
92744
|
+
},
|
|
92745
|
+
"autoScreenshot": {
|
|
92746
|
+
"type": "string",
|
|
92747
|
+
"minLength": 1,
|
|
92748
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
92749
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
92750
|
+
"readOnly": true
|
|
91500
92751
|
}
|
|
91501
92752
|
},
|
|
91502
92753
|
"title": "Common"
|
|
@@ -91819,6 +93070,13 @@
|
|
|
91819
93070
|
],
|
|
91820
93071
|
"additionalProperties": false,
|
|
91821
93072
|
"title": "Source Location"
|
|
93073
|
+
},
|
|
93074
|
+
"autoScreenshot": {
|
|
93075
|
+
"type": "string",
|
|
93076
|
+
"minLength": 1,
|
|
93077
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
93078
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
93079
|
+
"readOnly": true
|
|
91822
93080
|
}
|
|
91823
93081
|
},
|
|
91824
93082
|
"title": "Common"
|
|
@@ -92163,6 +93421,13 @@
|
|
|
92163
93421
|
],
|
|
92164
93422
|
"additionalProperties": false,
|
|
92165
93423
|
"title": "Source Location"
|
|
93424
|
+
},
|
|
93425
|
+
"autoScreenshot": {
|
|
93426
|
+
"type": "string",
|
|
93427
|
+
"minLength": 1,
|
|
93428
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
93429
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
93430
|
+
"readOnly": true
|
|
92166
93431
|
}
|
|
92167
93432
|
},
|
|
92168
93433
|
"title": "Common"
|
|
@@ -92950,6 +94215,13 @@
|
|
|
92950
94215
|
],
|
|
92951
94216
|
"additionalProperties": false,
|
|
92952
94217
|
"title": "Source Location"
|
|
94218
|
+
},
|
|
94219
|
+
"autoScreenshot": {
|
|
94220
|
+
"type": "string",
|
|
94221
|
+
"minLength": 1,
|
|
94222
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94223
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94224
|
+
"readOnly": true
|
|
92953
94225
|
}
|
|
92954
94226
|
},
|
|
92955
94227
|
"title": "Common"
|
|
@@ -93295,6 +94567,13 @@
|
|
|
93295
94567
|
],
|
|
93296
94568
|
"additionalProperties": false,
|
|
93297
94569
|
"title": "Source Location"
|
|
94570
|
+
},
|
|
94571
|
+
"autoScreenshot": {
|
|
94572
|
+
"type": "string",
|
|
94573
|
+
"minLength": 1,
|
|
94574
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94575
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94576
|
+
"readOnly": true
|
|
93298
94577
|
}
|
|
93299
94578
|
},
|
|
93300
94579
|
"title": "Common"
|
|
@@ -93496,6 +94775,13 @@
|
|
|
93496
94775
|
],
|
|
93497
94776
|
"additionalProperties": false,
|
|
93498
94777
|
"title": "Source Location"
|
|
94778
|
+
},
|
|
94779
|
+
"autoScreenshot": {
|
|
94780
|
+
"type": "string",
|
|
94781
|
+
"minLength": 1,
|
|
94782
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94783
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94784
|
+
"readOnly": true
|
|
93499
94785
|
}
|
|
93500
94786
|
},
|
|
93501
94787
|
"title": "Common"
|
|
@@ -93608,6 +94894,13 @@
|
|
|
93608
94894
|
],
|
|
93609
94895
|
"additionalProperties": false,
|
|
93610
94896
|
"title": "Source Location"
|
|
94897
|
+
},
|
|
94898
|
+
"autoScreenshot": {
|
|
94899
|
+
"type": "string",
|
|
94900
|
+
"minLength": 1,
|
|
94901
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94902
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94903
|
+
"readOnly": true
|
|
93611
94904
|
}
|
|
93612
94905
|
},
|
|
93613
94906
|
"title": "Common"
|
|
@@ -93717,6 +95010,13 @@
|
|
|
93717
95010
|
],
|
|
93718
95011
|
"additionalProperties": false,
|
|
93719
95012
|
"title": "Source Location"
|
|
95013
|
+
},
|
|
95014
|
+
"autoScreenshot": {
|
|
95015
|
+
"type": "string",
|
|
95016
|
+
"minLength": 1,
|
|
95017
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95018
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95019
|
+
"readOnly": true
|
|
93720
95020
|
}
|
|
93721
95021
|
},
|
|
93722
95022
|
"title": "Common"
|
|
@@ -94313,6 +95613,13 @@
|
|
|
94313
95613
|
],
|
|
94314
95614
|
"additionalProperties": false,
|
|
94315
95615
|
"title": "Source Location"
|
|
95616
|
+
},
|
|
95617
|
+
"autoScreenshot": {
|
|
95618
|
+
"type": "string",
|
|
95619
|
+
"minLength": 1,
|
|
95620
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95621
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95622
|
+
"readOnly": true
|
|
94316
95623
|
}
|
|
94317
95624
|
},
|
|
94318
95625
|
"title": "Common"
|
|
@@ -94641,6 +95948,13 @@
|
|
|
94641
95948
|
],
|
|
94642
95949
|
"additionalProperties": false,
|
|
94643
95950
|
"title": "Source Location"
|
|
95951
|
+
},
|
|
95952
|
+
"autoScreenshot": {
|
|
95953
|
+
"type": "string",
|
|
95954
|
+
"minLength": 1,
|
|
95955
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95956
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95957
|
+
"readOnly": true
|
|
94644
95958
|
}
|
|
94645
95959
|
},
|
|
94646
95960
|
"title": "Common"
|
|
@@ -95715,6 +97029,13 @@
|
|
|
95715
97029
|
],
|
|
95716
97030
|
"additionalProperties": false,
|
|
95717
97031
|
"title": "Source Location"
|
|
97032
|
+
},
|
|
97033
|
+
"autoScreenshot": {
|
|
97034
|
+
"type": "string",
|
|
97035
|
+
"minLength": 1,
|
|
97036
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97037
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97038
|
+
"readOnly": true
|
|
95718
97039
|
}
|
|
95719
97040
|
},
|
|
95720
97041
|
"title": "Common"
|
|
@@ -95768,6 +97089,13 @@
|
|
|
95768
97089
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
95769
97090
|
"default": false
|
|
95770
97091
|
},
|
|
97092
|
+
"autoScreenshot": {
|
|
97093
|
+
"type": "string",
|
|
97094
|
+
"minLength": 1,
|
|
97095
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97096
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97097
|
+
"readOnly": true
|
|
97098
|
+
},
|
|
95771
97099
|
"location": {
|
|
95772
97100
|
"type": "object",
|
|
95773
97101
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -95885,6 +97213,13 @@
|
|
|
95885
97213
|
],
|
|
95886
97214
|
"additionalProperties": false,
|
|
95887
97215
|
"title": "Source Location"
|
|
97216
|
+
},
|
|
97217
|
+
"autoScreenshot": {
|
|
97218
|
+
"type": "string",
|
|
97219
|
+
"minLength": 1,
|
|
97220
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97221
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97222
|
+
"readOnly": true
|
|
95888
97223
|
}
|
|
95889
97224
|
},
|
|
95890
97225
|
"title": "Common"
|
|
@@ -96193,6 +97528,13 @@
|
|
|
96193
97528
|
],
|
|
96194
97529
|
"additionalProperties": false,
|
|
96195
97530
|
"title": "Source Location"
|
|
97531
|
+
},
|
|
97532
|
+
"autoScreenshot": {
|
|
97533
|
+
"type": "string",
|
|
97534
|
+
"minLength": 1,
|
|
97535
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97536
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97537
|
+
"readOnly": true
|
|
96196
97538
|
}
|
|
96197
97539
|
},
|
|
96198
97540
|
"title": "Common"
|
|
@@ -96545,6 +97887,13 @@
|
|
|
96545
97887
|
],
|
|
96546
97888
|
"additionalProperties": false,
|
|
96547
97889
|
"title": "Source Location"
|
|
97890
|
+
},
|
|
97891
|
+
"autoScreenshot": {
|
|
97892
|
+
"type": "string",
|
|
97893
|
+
"minLength": 1,
|
|
97894
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97895
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97896
|
+
"readOnly": true
|
|
96548
97897
|
}
|
|
96549
97898
|
},
|
|
96550
97899
|
"title": "Common"
|
|
@@ -97994,6 +99343,13 @@
|
|
|
97994
99343
|
],
|
|
97995
99344
|
"additionalProperties": false,
|
|
97996
99345
|
"title": "Source Location"
|
|
99346
|
+
},
|
|
99347
|
+
"autoScreenshot": {
|
|
99348
|
+
"type": "string",
|
|
99349
|
+
"minLength": 1,
|
|
99350
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
99351
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
99352
|
+
"readOnly": true
|
|
97997
99353
|
}
|
|
97998
99354
|
},
|
|
97999
99355
|
"title": "Common"
|
|
@@ -98536,6 +99892,13 @@
|
|
|
98536
99892
|
],
|
|
98537
99893
|
"additionalProperties": false,
|
|
98538
99894
|
"title": "Source Location"
|
|
99895
|
+
},
|
|
99896
|
+
"autoScreenshot": {
|
|
99897
|
+
"type": "string",
|
|
99898
|
+
"minLength": 1,
|
|
99899
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
99900
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
99901
|
+
"readOnly": true
|
|
98539
99902
|
}
|
|
98540
99903
|
},
|
|
98541
99904
|
"title": "Common"
|
|
@@ -99630,6 +100993,13 @@
|
|
|
99630
100993
|
],
|
|
99631
100994
|
"additionalProperties": false,
|
|
99632
100995
|
"title": "Source Location"
|
|
100996
|
+
},
|
|
100997
|
+
"autoScreenshot": {
|
|
100998
|
+
"type": "string",
|
|
100999
|
+
"minLength": 1,
|
|
101000
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101001
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101002
|
+
"readOnly": true
|
|
99633
101003
|
}
|
|
99634
101004
|
},
|
|
99635
101005
|
"title": "Common"
|
|
@@ -99966,6 +101336,13 @@
|
|
|
99966
101336
|
],
|
|
99967
101337
|
"additionalProperties": false,
|
|
99968
101338
|
"title": "Source Location"
|
|
101339
|
+
},
|
|
101340
|
+
"autoScreenshot": {
|
|
101341
|
+
"type": "string",
|
|
101342
|
+
"minLength": 1,
|
|
101343
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101344
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101345
|
+
"readOnly": true
|
|
99969
101346
|
}
|
|
99970
101347
|
},
|
|
99971
101348
|
"title": "Common"
|
|
@@ -100288,6 +101665,13 @@
|
|
|
100288
101665
|
],
|
|
100289
101666
|
"additionalProperties": false,
|
|
100290
101667
|
"title": "Source Location"
|
|
101668
|
+
},
|
|
101669
|
+
"autoScreenshot": {
|
|
101670
|
+
"type": "string",
|
|
101671
|
+
"minLength": 1,
|
|
101672
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101673
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101674
|
+
"readOnly": true
|
|
100291
101675
|
}
|
|
100292
101676
|
},
|
|
100293
101677
|
"title": "Common"
|
|
@@ -100632,6 +102016,13 @@
|
|
|
100632
102016
|
],
|
|
100633
102017
|
"additionalProperties": false,
|
|
100634
102018
|
"title": "Source Location"
|
|
102019
|
+
},
|
|
102020
|
+
"autoScreenshot": {
|
|
102021
|
+
"type": "string",
|
|
102022
|
+
"minLength": 1,
|
|
102023
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
102024
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
102025
|
+
"readOnly": true
|
|
100635
102026
|
}
|
|
100636
102027
|
},
|
|
100637
102028
|
"title": "Common"
|
|
@@ -101419,6 +102810,13 @@
|
|
|
101419
102810
|
],
|
|
101420
102811
|
"additionalProperties": false,
|
|
101421
102812
|
"title": "Source Location"
|
|
102813
|
+
},
|
|
102814
|
+
"autoScreenshot": {
|
|
102815
|
+
"type": "string",
|
|
102816
|
+
"minLength": 1,
|
|
102817
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
102818
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
102819
|
+
"readOnly": true
|
|
101422
102820
|
}
|
|
101423
102821
|
},
|
|
101424
102822
|
"title": "Common"
|
|
@@ -101764,6 +103162,13 @@
|
|
|
101764
103162
|
],
|
|
101765
103163
|
"additionalProperties": false,
|
|
101766
103164
|
"title": "Source Location"
|
|
103165
|
+
},
|
|
103166
|
+
"autoScreenshot": {
|
|
103167
|
+
"type": "string",
|
|
103168
|
+
"minLength": 1,
|
|
103169
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103170
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103171
|
+
"readOnly": true
|
|
101767
103172
|
}
|
|
101768
103173
|
},
|
|
101769
103174
|
"title": "Common"
|
|
@@ -101965,6 +103370,13 @@
|
|
|
101965
103370
|
],
|
|
101966
103371
|
"additionalProperties": false,
|
|
101967
103372
|
"title": "Source Location"
|
|
103373
|
+
},
|
|
103374
|
+
"autoScreenshot": {
|
|
103375
|
+
"type": "string",
|
|
103376
|
+
"minLength": 1,
|
|
103377
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103378
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103379
|
+
"readOnly": true
|
|
101968
103380
|
}
|
|
101969
103381
|
},
|
|
101970
103382
|
"title": "Common"
|
|
@@ -102077,6 +103489,13 @@
|
|
|
102077
103489
|
],
|
|
102078
103490
|
"additionalProperties": false,
|
|
102079
103491
|
"title": "Source Location"
|
|
103492
|
+
},
|
|
103493
|
+
"autoScreenshot": {
|
|
103494
|
+
"type": "string",
|
|
103495
|
+
"minLength": 1,
|
|
103496
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103497
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103498
|
+
"readOnly": true
|
|
102080
103499
|
}
|
|
102081
103500
|
},
|
|
102082
103501
|
"title": "Common"
|
|
@@ -102186,6 +103605,13 @@
|
|
|
102186
103605
|
],
|
|
102187
103606
|
"additionalProperties": false,
|
|
102188
103607
|
"title": "Source Location"
|
|
103608
|
+
},
|
|
103609
|
+
"autoScreenshot": {
|
|
103610
|
+
"type": "string",
|
|
103611
|
+
"minLength": 1,
|
|
103612
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103613
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103614
|
+
"readOnly": true
|
|
102189
103615
|
}
|
|
102190
103616
|
},
|
|
102191
103617
|
"title": "Common"
|
|
@@ -102782,6 +104208,13 @@
|
|
|
102782
104208
|
],
|
|
102783
104209
|
"additionalProperties": false,
|
|
102784
104210
|
"title": "Source Location"
|
|
104211
|
+
},
|
|
104212
|
+
"autoScreenshot": {
|
|
104213
|
+
"type": "string",
|
|
104214
|
+
"minLength": 1,
|
|
104215
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
104216
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
104217
|
+
"readOnly": true
|
|
102785
104218
|
}
|
|
102786
104219
|
},
|
|
102787
104220
|
"title": "Common"
|
|
@@ -103110,6 +104543,13 @@
|
|
|
103110
104543
|
],
|
|
103111
104544
|
"additionalProperties": false,
|
|
103112
104545
|
"title": "Source Location"
|
|
104546
|
+
},
|
|
104547
|
+
"autoScreenshot": {
|
|
104548
|
+
"type": "string",
|
|
104549
|
+
"minLength": 1,
|
|
104550
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
104551
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
104552
|
+
"readOnly": true
|
|
103113
104553
|
}
|
|
103114
104554
|
},
|
|
103115
104555
|
"title": "Common"
|
|
@@ -103591,6 +105031,10 @@
|
|
|
103591
105031
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
103592
105032
|
"default": true
|
|
103593
105033
|
},
|
|
105034
|
+
"autoScreenshot": {
|
|
105035
|
+
"type": "boolean",
|
|
105036
|
+
"description": "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
105037
|
+
},
|
|
103594
105038
|
"runOn": {
|
|
103595
105039
|
"type": "array",
|
|
103596
105040
|
"description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -104257,6 +105701,13 @@
|
|
|
104257
105701
|
],
|
|
104258
105702
|
"additionalProperties": false,
|
|
104259
105703
|
"title": "Source Location"
|
|
105704
|
+
},
|
|
105705
|
+
"autoScreenshot": {
|
|
105706
|
+
"type": "string",
|
|
105707
|
+
"minLength": 1,
|
|
105708
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105709
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105710
|
+
"readOnly": true
|
|
104260
105711
|
}
|
|
104261
105712
|
},
|
|
104262
105713
|
"title": "Common"
|
|
@@ -104310,6 +105761,13 @@
|
|
|
104310
105761
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
104311
105762
|
"default": false
|
|
104312
105763
|
},
|
|
105764
|
+
"autoScreenshot": {
|
|
105765
|
+
"type": "string",
|
|
105766
|
+
"minLength": 1,
|
|
105767
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105768
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105769
|
+
"readOnly": true
|
|
105770
|
+
},
|
|
104313
105771
|
"location": {
|
|
104314
105772
|
"type": "object",
|
|
104315
105773
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -104427,6 +105885,13 @@
|
|
|
104427
105885
|
],
|
|
104428
105886
|
"additionalProperties": false,
|
|
104429
105887
|
"title": "Source Location"
|
|
105888
|
+
},
|
|
105889
|
+
"autoScreenshot": {
|
|
105890
|
+
"type": "string",
|
|
105891
|
+
"minLength": 1,
|
|
105892
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105893
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105894
|
+
"readOnly": true
|
|
104430
105895
|
}
|
|
104431
105896
|
},
|
|
104432
105897
|
"title": "Common"
|
|
@@ -104735,6 +106200,13 @@
|
|
|
104735
106200
|
],
|
|
104736
106201
|
"additionalProperties": false,
|
|
104737
106202
|
"title": "Source Location"
|
|
106203
|
+
},
|
|
106204
|
+
"autoScreenshot": {
|
|
106205
|
+
"type": "string",
|
|
106206
|
+
"minLength": 1,
|
|
106207
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
106208
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
106209
|
+
"readOnly": true
|
|
104738
106210
|
}
|
|
104739
106211
|
},
|
|
104740
106212
|
"title": "Common"
|
|
@@ -105087,6 +106559,13 @@
|
|
|
105087
106559
|
],
|
|
105088
106560
|
"additionalProperties": false,
|
|
105089
106561
|
"title": "Source Location"
|
|
106562
|
+
},
|
|
106563
|
+
"autoScreenshot": {
|
|
106564
|
+
"type": "string",
|
|
106565
|
+
"minLength": 1,
|
|
106566
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
106567
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
106568
|
+
"readOnly": true
|
|
105090
106569
|
}
|
|
105091
106570
|
},
|
|
105092
106571
|
"title": "Common"
|
|
@@ -106536,6 +108015,13 @@
|
|
|
106536
108015
|
],
|
|
106537
108016
|
"additionalProperties": false,
|
|
106538
108017
|
"title": "Source Location"
|
|
108018
|
+
},
|
|
108019
|
+
"autoScreenshot": {
|
|
108020
|
+
"type": "string",
|
|
108021
|
+
"minLength": 1,
|
|
108022
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
108023
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
108024
|
+
"readOnly": true
|
|
106539
108025
|
}
|
|
106540
108026
|
},
|
|
106541
108027
|
"title": "Common"
|
|
@@ -107078,6 +108564,13 @@
|
|
|
107078
108564
|
],
|
|
107079
108565
|
"additionalProperties": false,
|
|
107080
108566
|
"title": "Source Location"
|
|
108567
|
+
},
|
|
108568
|
+
"autoScreenshot": {
|
|
108569
|
+
"type": "string",
|
|
108570
|
+
"minLength": 1,
|
|
108571
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
108572
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
108573
|
+
"readOnly": true
|
|
107081
108574
|
}
|
|
107082
108575
|
},
|
|
107083
108576
|
"title": "Common"
|
|
@@ -108172,6 +109665,13 @@
|
|
|
108172
109665
|
],
|
|
108173
109666
|
"additionalProperties": false,
|
|
108174
109667
|
"title": "Source Location"
|
|
109668
|
+
},
|
|
109669
|
+
"autoScreenshot": {
|
|
109670
|
+
"type": "string",
|
|
109671
|
+
"minLength": 1,
|
|
109672
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
109673
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
109674
|
+
"readOnly": true
|
|
108175
109675
|
}
|
|
108176
109676
|
},
|
|
108177
109677
|
"title": "Common"
|
|
@@ -108508,6 +110008,13 @@
|
|
|
108508
110008
|
],
|
|
108509
110009
|
"additionalProperties": false,
|
|
108510
110010
|
"title": "Source Location"
|
|
110011
|
+
},
|
|
110012
|
+
"autoScreenshot": {
|
|
110013
|
+
"type": "string",
|
|
110014
|
+
"minLength": 1,
|
|
110015
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110016
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110017
|
+
"readOnly": true
|
|
108511
110018
|
}
|
|
108512
110019
|
},
|
|
108513
110020
|
"title": "Common"
|
|
@@ -108830,6 +110337,13 @@
|
|
|
108830
110337
|
],
|
|
108831
110338
|
"additionalProperties": false,
|
|
108832
110339
|
"title": "Source Location"
|
|
110340
|
+
},
|
|
110341
|
+
"autoScreenshot": {
|
|
110342
|
+
"type": "string",
|
|
110343
|
+
"minLength": 1,
|
|
110344
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110345
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110346
|
+
"readOnly": true
|
|
108833
110347
|
}
|
|
108834
110348
|
},
|
|
108835
110349
|
"title": "Common"
|
|
@@ -109174,6 +110688,13 @@
|
|
|
109174
110688
|
],
|
|
109175
110689
|
"additionalProperties": false,
|
|
109176
110690
|
"title": "Source Location"
|
|
110691
|
+
},
|
|
110692
|
+
"autoScreenshot": {
|
|
110693
|
+
"type": "string",
|
|
110694
|
+
"minLength": 1,
|
|
110695
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110696
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110697
|
+
"readOnly": true
|
|
109177
110698
|
}
|
|
109178
110699
|
},
|
|
109179
110700
|
"title": "Common"
|
|
@@ -109961,6 +111482,13 @@
|
|
|
109961
111482
|
],
|
|
109962
111483
|
"additionalProperties": false,
|
|
109963
111484
|
"title": "Source Location"
|
|
111485
|
+
},
|
|
111486
|
+
"autoScreenshot": {
|
|
111487
|
+
"type": "string",
|
|
111488
|
+
"minLength": 1,
|
|
111489
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
111490
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
111491
|
+
"readOnly": true
|
|
109964
111492
|
}
|
|
109965
111493
|
},
|
|
109966
111494
|
"title": "Common"
|
|
@@ -110306,6 +111834,13 @@
|
|
|
110306
111834
|
],
|
|
110307
111835
|
"additionalProperties": false,
|
|
110308
111836
|
"title": "Source Location"
|
|
111837
|
+
},
|
|
111838
|
+
"autoScreenshot": {
|
|
111839
|
+
"type": "string",
|
|
111840
|
+
"minLength": 1,
|
|
111841
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
111842
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
111843
|
+
"readOnly": true
|
|
110309
111844
|
}
|
|
110310
111845
|
},
|
|
110311
111846
|
"title": "Common"
|
|
@@ -110507,6 +112042,13 @@
|
|
|
110507
112042
|
],
|
|
110508
112043
|
"additionalProperties": false,
|
|
110509
112044
|
"title": "Source Location"
|
|
112045
|
+
},
|
|
112046
|
+
"autoScreenshot": {
|
|
112047
|
+
"type": "string",
|
|
112048
|
+
"minLength": 1,
|
|
112049
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112050
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112051
|
+
"readOnly": true
|
|
110510
112052
|
}
|
|
110511
112053
|
},
|
|
110512
112054
|
"title": "Common"
|
|
@@ -110619,6 +112161,13 @@
|
|
|
110619
112161
|
],
|
|
110620
112162
|
"additionalProperties": false,
|
|
110621
112163
|
"title": "Source Location"
|
|
112164
|
+
},
|
|
112165
|
+
"autoScreenshot": {
|
|
112166
|
+
"type": "string",
|
|
112167
|
+
"minLength": 1,
|
|
112168
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112169
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112170
|
+
"readOnly": true
|
|
110622
112171
|
}
|
|
110623
112172
|
},
|
|
110624
112173
|
"title": "Common"
|
|
@@ -110728,6 +112277,13 @@
|
|
|
110728
112277
|
],
|
|
110729
112278
|
"additionalProperties": false,
|
|
110730
112279
|
"title": "Source Location"
|
|
112280
|
+
},
|
|
112281
|
+
"autoScreenshot": {
|
|
112282
|
+
"type": "string",
|
|
112283
|
+
"minLength": 1,
|
|
112284
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112285
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112286
|
+
"readOnly": true
|
|
110731
112287
|
}
|
|
110732
112288
|
},
|
|
110733
112289
|
"title": "Common"
|
|
@@ -111324,6 +112880,13 @@
|
|
|
111324
112880
|
],
|
|
111325
112881
|
"additionalProperties": false,
|
|
111326
112882
|
"title": "Source Location"
|
|
112883
|
+
},
|
|
112884
|
+
"autoScreenshot": {
|
|
112885
|
+
"type": "string",
|
|
112886
|
+
"minLength": 1,
|
|
112887
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112888
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112889
|
+
"readOnly": true
|
|
111327
112890
|
}
|
|
111328
112891
|
},
|
|
111329
112892
|
"title": "Common"
|
|
@@ -111652,6 +113215,13 @@
|
|
|
111652
113215
|
],
|
|
111653
113216
|
"additionalProperties": false,
|
|
111654
113217
|
"title": "Source Location"
|
|
113218
|
+
},
|
|
113219
|
+
"autoScreenshot": {
|
|
113220
|
+
"type": "string",
|
|
113221
|
+
"minLength": 1,
|
|
113222
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
113223
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
113224
|
+
"readOnly": true
|
|
111655
113225
|
}
|
|
111656
113226
|
},
|
|
111657
113227
|
"title": "Common"
|
|
@@ -112446,6 +114016,13 @@
|
|
|
112446
114016
|
],
|
|
112447
114017
|
"additionalProperties": false,
|
|
112448
114018
|
"title": "Source Location"
|
|
114019
|
+
},
|
|
114020
|
+
"autoScreenshot": {
|
|
114021
|
+
"type": "string",
|
|
114022
|
+
"minLength": 1,
|
|
114023
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114024
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114025
|
+
"readOnly": true
|
|
112449
114026
|
}
|
|
112450
114027
|
},
|
|
112451
114028
|
"title": "Common"
|
|
@@ -112499,6 +114076,13 @@
|
|
|
112499
114076
|
"description": "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
112500
114077
|
"default": false
|
|
112501
114078
|
},
|
|
114079
|
+
"autoScreenshot": {
|
|
114080
|
+
"type": "string",
|
|
114081
|
+
"minLength": 1,
|
|
114082
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114083
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114084
|
+
"readOnly": true
|
|
114085
|
+
},
|
|
112502
114086
|
"location": {
|
|
112503
114087
|
"type": "object",
|
|
112504
114088
|
"description": "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -112616,6 +114200,13 @@
|
|
|
112616
114200
|
],
|
|
112617
114201
|
"additionalProperties": false,
|
|
112618
114202
|
"title": "Source Location"
|
|
114203
|
+
},
|
|
114204
|
+
"autoScreenshot": {
|
|
114205
|
+
"type": "string",
|
|
114206
|
+
"minLength": 1,
|
|
114207
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114208
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114209
|
+
"readOnly": true
|
|
112619
114210
|
}
|
|
112620
114211
|
},
|
|
112621
114212
|
"title": "Common"
|
|
@@ -112924,6 +114515,13 @@
|
|
|
112924
114515
|
],
|
|
112925
114516
|
"additionalProperties": false,
|
|
112926
114517
|
"title": "Source Location"
|
|
114518
|
+
},
|
|
114519
|
+
"autoScreenshot": {
|
|
114520
|
+
"type": "string",
|
|
114521
|
+
"minLength": 1,
|
|
114522
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114523
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114524
|
+
"readOnly": true
|
|
112927
114525
|
}
|
|
112928
114526
|
},
|
|
112929
114527
|
"title": "Common"
|
|
@@ -113276,6 +114874,13 @@
|
|
|
113276
114874
|
],
|
|
113277
114875
|
"additionalProperties": false,
|
|
113278
114876
|
"title": "Source Location"
|
|
114877
|
+
},
|
|
114878
|
+
"autoScreenshot": {
|
|
114879
|
+
"type": "string",
|
|
114880
|
+
"minLength": 1,
|
|
114881
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114882
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114883
|
+
"readOnly": true
|
|
113279
114884
|
}
|
|
113280
114885
|
},
|
|
113281
114886
|
"title": "Common"
|
|
@@ -114725,6 +116330,13 @@
|
|
|
114725
116330
|
],
|
|
114726
116331
|
"additionalProperties": false,
|
|
114727
116332
|
"title": "Source Location"
|
|
116333
|
+
},
|
|
116334
|
+
"autoScreenshot": {
|
|
116335
|
+
"type": "string",
|
|
116336
|
+
"minLength": 1,
|
|
116337
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
116338
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
116339
|
+
"readOnly": true
|
|
114728
116340
|
}
|
|
114729
116341
|
},
|
|
114730
116342
|
"title": "Common"
|
|
@@ -115267,6 +116879,13 @@
|
|
|
115267
116879
|
],
|
|
115268
116880
|
"additionalProperties": false,
|
|
115269
116881
|
"title": "Source Location"
|
|
116882
|
+
},
|
|
116883
|
+
"autoScreenshot": {
|
|
116884
|
+
"type": "string",
|
|
116885
|
+
"minLength": 1,
|
|
116886
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
116887
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
116888
|
+
"readOnly": true
|
|
115270
116889
|
}
|
|
115271
116890
|
},
|
|
115272
116891
|
"title": "Common"
|
|
@@ -116361,6 +117980,13 @@
|
|
|
116361
117980
|
],
|
|
116362
117981
|
"additionalProperties": false,
|
|
116363
117982
|
"title": "Source Location"
|
|
117983
|
+
},
|
|
117984
|
+
"autoScreenshot": {
|
|
117985
|
+
"type": "string",
|
|
117986
|
+
"minLength": 1,
|
|
117987
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
117988
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
117989
|
+
"readOnly": true
|
|
116364
117990
|
}
|
|
116365
117991
|
},
|
|
116366
117992
|
"title": "Common"
|
|
@@ -116697,6 +118323,13 @@
|
|
|
116697
118323
|
],
|
|
116698
118324
|
"additionalProperties": false,
|
|
116699
118325
|
"title": "Source Location"
|
|
118326
|
+
},
|
|
118327
|
+
"autoScreenshot": {
|
|
118328
|
+
"type": "string",
|
|
118329
|
+
"minLength": 1,
|
|
118330
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
118331
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
118332
|
+
"readOnly": true
|
|
116700
118333
|
}
|
|
116701
118334
|
},
|
|
116702
118335
|
"title": "Common"
|
|
@@ -117019,6 +118652,13 @@
|
|
|
117019
118652
|
],
|
|
117020
118653
|
"additionalProperties": false,
|
|
117021
118654
|
"title": "Source Location"
|
|
118655
|
+
},
|
|
118656
|
+
"autoScreenshot": {
|
|
118657
|
+
"type": "string",
|
|
118658
|
+
"minLength": 1,
|
|
118659
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
118660
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
118661
|
+
"readOnly": true
|
|
117022
118662
|
}
|
|
117023
118663
|
},
|
|
117024
118664
|
"title": "Common"
|
|
@@ -117363,6 +119003,13 @@
|
|
|
117363
119003
|
],
|
|
117364
119004
|
"additionalProperties": false,
|
|
117365
119005
|
"title": "Source Location"
|
|
119006
|
+
},
|
|
119007
|
+
"autoScreenshot": {
|
|
119008
|
+
"type": "string",
|
|
119009
|
+
"minLength": 1,
|
|
119010
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
119011
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
119012
|
+
"readOnly": true
|
|
117366
119013
|
}
|
|
117367
119014
|
},
|
|
117368
119015
|
"title": "Common"
|
|
@@ -118150,6 +119797,13 @@
|
|
|
118150
119797
|
],
|
|
118151
119798
|
"additionalProperties": false,
|
|
118152
119799
|
"title": "Source Location"
|
|
119800
|
+
},
|
|
119801
|
+
"autoScreenshot": {
|
|
119802
|
+
"type": "string",
|
|
119803
|
+
"minLength": 1,
|
|
119804
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
119805
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
119806
|
+
"readOnly": true
|
|
118153
119807
|
}
|
|
118154
119808
|
},
|
|
118155
119809
|
"title": "Common"
|
|
@@ -118495,6 +120149,13 @@
|
|
|
118495
120149
|
],
|
|
118496
120150
|
"additionalProperties": false,
|
|
118497
120151
|
"title": "Source Location"
|
|
120152
|
+
},
|
|
120153
|
+
"autoScreenshot": {
|
|
120154
|
+
"type": "string",
|
|
120155
|
+
"minLength": 1,
|
|
120156
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120157
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120158
|
+
"readOnly": true
|
|
118498
120159
|
}
|
|
118499
120160
|
},
|
|
118500
120161
|
"title": "Common"
|
|
@@ -118696,6 +120357,13 @@
|
|
|
118696
120357
|
],
|
|
118697
120358
|
"additionalProperties": false,
|
|
118698
120359
|
"title": "Source Location"
|
|
120360
|
+
},
|
|
120361
|
+
"autoScreenshot": {
|
|
120362
|
+
"type": "string",
|
|
120363
|
+
"minLength": 1,
|
|
120364
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120365
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120366
|
+
"readOnly": true
|
|
118699
120367
|
}
|
|
118700
120368
|
},
|
|
118701
120369
|
"title": "Common"
|
|
@@ -118808,6 +120476,13 @@
|
|
|
118808
120476
|
],
|
|
118809
120477
|
"additionalProperties": false,
|
|
118810
120478
|
"title": "Source Location"
|
|
120479
|
+
},
|
|
120480
|
+
"autoScreenshot": {
|
|
120481
|
+
"type": "string",
|
|
120482
|
+
"minLength": 1,
|
|
120483
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120484
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120485
|
+
"readOnly": true
|
|
118811
120486
|
}
|
|
118812
120487
|
},
|
|
118813
120488
|
"title": "Common"
|
|
@@ -118917,6 +120592,13 @@
|
|
|
118917
120592
|
],
|
|
118918
120593
|
"additionalProperties": false,
|
|
118919
120594
|
"title": "Source Location"
|
|
120595
|
+
},
|
|
120596
|
+
"autoScreenshot": {
|
|
120597
|
+
"type": "string",
|
|
120598
|
+
"minLength": 1,
|
|
120599
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120600
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120601
|
+
"readOnly": true
|
|
118920
120602
|
}
|
|
118921
120603
|
},
|
|
118922
120604
|
"title": "Common"
|
|
@@ -119513,6 +121195,13 @@
|
|
|
119513
121195
|
],
|
|
119514
121196
|
"additionalProperties": false,
|
|
119515
121197
|
"title": "Source Location"
|
|
121198
|
+
},
|
|
121199
|
+
"autoScreenshot": {
|
|
121200
|
+
"type": "string",
|
|
121201
|
+
"minLength": 1,
|
|
121202
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
121203
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
121204
|
+
"readOnly": true
|
|
119516
121205
|
}
|
|
119517
121206
|
},
|
|
119518
121207
|
"title": "Common"
|
|
@@ -119841,6 +121530,13 @@
|
|
|
119841
121530
|
],
|
|
119842
121531
|
"additionalProperties": false,
|
|
119843
121532
|
"title": "Source Location"
|
|
121533
|
+
},
|
|
121534
|
+
"autoScreenshot": {
|
|
121535
|
+
"type": "string",
|
|
121536
|
+
"minLength": 1,
|
|
121537
|
+
"pattern": "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
121538
|
+
"description": "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
121539
|
+
"readOnly": true
|
|
119844
121540
|
}
|
|
119845
121541
|
},
|
|
119846
121542
|
"title": "Common"
|