doc-detective 4.12.1 → 4.14.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.
Files changed (73) hide show
  1. package/dist/common/src/schemas/schemas.json +6759 -1997
  2. package/dist/common/src/types/generated/config_v3.d.ts +4 -0
  3. package/dist/common/src/types/generated/config_v3.d.ts.map +1 -1
  4. package/dist/common/src/types/generated/record_v3.d.ts +4 -0
  5. package/dist/common/src/types/generated/record_v3.d.ts.map +1 -1
  6. package/dist/common/src/types/generated/report_v3.d.ts +4 -0
  7. package/dist/common/src/types/generated/report_v3.d.ts.map +1 -1
  8. package/dist/common/src/types/generated/resolvedTests_v3.d.ts +8 -0
  9. package/dist/common/src/types/generated/resolvedTests_v3.d.ts.map +1 -1
  10. package/dist/common/src/types/generated/runBrowserScript_v3.d.ts +48 -0
  11. package/dist/common/src/types/generated/runBrowserScript_v3.d.ts.map +1 -0
  12. package/dist/common/src/types/generated/runBrowserScript_v3.js +7 -0
  13. package/dist/common/src/types/generated/runBrowserScript_v3.js.map +1 -0
  14. package/dist/common/src/types/generated/spec_v3.d.ts +4 -0
  15. package/dist/common/src/types/generated/spec_v3.d.ts.map +1 -1
  16. package/dist/common/src/types/generated/step_v3.d.ts +215 -75
  17. package/dist/common/src/types/generated/step_v3.d.ts.map +1 -1
  18. package/dist/common/src/types/generated/stopRecord_v3.d.ts +20 -2
  19. package/dist/common/src/types/generated/stopRecord_v3.d.ts.map +1 -1
  20. package/dist/common/src/types/generated/test_v3.d.ts +506 -222
  21. package/dist/common/src/types/generated/test_v3.d.ts.map +1 -1
  22. package/dist/core/resolveTests.d.ts.map +1 -1
  23. package/dist/core/resolveTests.js +2 -13
  24. package/dist/core/resolveTests.js.map +1 -1
  25. package/dist/core/tests/ffmpegRecorder.d.ts +11 -2
  26. package/dist/core/tests/ffmpegRecorder.d.ts.map +1 -1
  27. package/dist/core/tests/ffmpegRecorder.js +155 -8
  28. package/dist/core/tests/ffmpegRecorder.js.map +1 -1
  29. package/dist/core/tests/findElement.d.ts.map +1 -1
  30. package/dist/core/tests/findElement.js +2 -1
  31. package/dist/core/tests/findElement.js.map +1 -1
  32. package/dist/core/tests/runBrowserScript.d.ts +7 -0
  33. package/dist/core/tests/runBrowserScript.d.ts.map +1 -0
  34. package/dist/core/tests/runBrowserScript.js +133 -0
  35. package/dist/core/tests/runBrowserScript.js.map +1 -0
  36. package/dist/core/tests/saveScreenshot.d.ts.map +1 -1
  37. package/dist/core/tests/saveScreenshot.js +26 -9
  38. package/dist/core/tests/saveScreenshot.js.map +1 -1
  39. package/dist/core/tests/startRecording.d.ts.map +1 -1
  40. package/dist/core/tests/startRecording.js +36 -2
  41. package/dist/core/tests/startRecording.js.map +1 -1
  42. package/dist/core/tests/stopRecording.d.ts.map +1 -1
  43. package/dist/core/tests/stopRecording.js +51 -16
  44. package/dist/core/tests/stopRecording.js.map +1 -1
  45. package/dist/core/tests/typeKeys.d.ts.map +1 -1
  46. package/dist/core/tests/typeKeys.js +3 -2
  47. package/dist/core/tests/typeKeys.js.map +1 -1
  48. package/dist/core/tests.d.ts +12 -1
  49. package/dist/core/tests.d.ts.map +1 -1
  50. package/dist/core/tests.js +198 -47
  51. package/dist/core/tests.js.map +1 -1
  52. package/dist/core/utils.d.ts +25 -1
  53. package/dist/core/utils.d.ts.map +1 -1
  54. package/dist/core/utils.js +68 -9
  55. package/dist/core/utils.js.map +1 -1
  56. package/dist/debug/provenance.d.ts.map +1 -1
  57. package/dist/debug/provenance.js +6 -0
  58. package/dist/debug/provenance.js.map +1 -1
  59. package/dist/hints/hints.d.ts.map +1 -1
  60. package/dist/hints/hints.js +40 -0
  61. package/dist/hints/hints.js.map +1 -1
  62. package/dist/index.cjs +6446 -1341
  63. package/dist/runtime/browserStepKeys.d.ts +19 -0
  64. package/dist/runtime/browserStepKeys.d.ts.map +1 -0
  65. package/dist/runtime/browserStepKeys.js +33 -0
  66. package/dist/runtime/browserStepKeys.js.map +1 -0
  67. package/dist/runtime/inferRuntimeNeeds.d.ts.map +1 -1
  68. package/dist/runtime/inferRuntimeNeeds.js +4 -19
  69. package/dist/runtime/inferRuntimeNeeds.js.map +1 -1
  70. package/dist/utils.d.ts.map +1 -1
  71. package/dist/utils.js +7 -0
  72. package/dist/utils.js.map +1 -1
  73. package/package.json +1 -1
@@ -28,6 +28,10 @@ export type Test = {
28
28
  * 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.
29
29
  */
30
30
  autoScreenshot?: boolean;
31
+ /**
32
+ * If `true`, records a video of every browser context in this test. Overrides `autoRecord` set at the spec or config level. When unset, defers to the spec level, then the config level.
33
+ */
34
+ autoRecord?: boolean;
31
35
  /**
32
36
  * Contexts to run the test in. Overrides contexts defined at the config and spec levels.
33
37
  */
@@ -58,7 +62,7 @@ export type OpenApi = {
58
62
  /**
59
63
  * A step in a test.
60
64
  */
61
- export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 & Type) | (Common8 & Screenshot) | (Common9 & SaveCookie) | (Common10 & Record) | (Common11 & StopRecord) | (Common12 & LoadVariables) | (Common13 & DragAndDrop) | (Common14 & LoadCookie) | (Common15 & Wait);
65
+ export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 & RunBrowserScript) | (Common8 & Type) | (Common9 & Screenshot) | (Common10 & SaveCookie) | (Common11 & Record) | (Common12 & StopRecord) | (Common13 & LoadVariables) | (Common14 & DragAndDrop) | (Common15 & LoadCookie) | (Common16 & Wait);
62
66
  export type CheckLink1 = CheckLinkDetailed | CheckLinkDetailed1;
63
67
  /**
64
68
  * Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.
@@ -145,6 +149,14 @@ export type RunShellCommandSimple = string;
145
149
  * Assemble and run code.
146
150
  */
147
151
  export type RunCode1 = RunCodeDetailed;
152
+ /**
153
+ * Execute arbitrary JavaScript in the browser page context. Runs via the WebDriver `executeScript` endpoint, so it has access to the page's `document`, `window`, and DOM. Doc Detective captures the script's return value in the step's `outputs.result`. Distinct from `runCode`, which runs Node/Python/bash on the host machine.
154
+ */
155
+ export type RunBrowserScript1 = RunBrowserScriptSimple | RunBrowserScriptDetailed;
156
+ /**
157
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`.
158
+ */
159
+ export type RunBrowserScriptSimple = string;
148
160
  /**
149
161
  * Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.
150
162
  */
@@ -229,9 +241,21 @@ export type RecordingEngineSimple = "browser" | "ffmpeg";
229
241
  */
230
242
  export type RecordBoolean = boolean;
231
243
  /**
232
- * Stop the current recording.
244
+ * Stop a recording started by an earlier `record` step. With no target (`true`/`null`), stops the most recently started recording that is still active (LIFO). To stop a specific recording when several overlap, target it by name with a string (`stopRecord: "<name>"`) or an object (`stopRecord: { name: "<name>" }`).
245
+ */
246
+ export type StopRecord1 = StopRecordBoolean | StopRecordNull | StopRecordName | StopRecordDetailed;
247
+ /**
248
+ * If `true`, stops the most recently started active recording (LIFO). If `false`, does nothing — an explicit no-op (mirrors `record: false`).
233
249
  */
234
- export type StopRecord1 = boolean | null;
250
+ export type StopRecordBoolean = boolean;
251
+ /**
252
+ * Stops the most recently started active recording (LIFO).
253
+ */
254
+ export type StopRecordNull = null;
255
+ /**
256
+ * Name of the recording to stop. Matches the `name` given to a `record` step.
257
+ */
258
+ export type StopRecordName = string;
235
259
  /**
236
260
  * Load environment variables from the specified `.env` file.
237
261
  */
@@ -303,7 +327,7 @@ export type OpenApi1 = {
303
327
  /**
304
328
  * A step in a test.
305
329
  */
306
- export type Step1 = (Common16 & CheckLink2) | (Common17 & Click2) | (Common18 & Find2) | (Common19 & GoTo2) | (Common20 & HttpRequest2) | (Common21 & RunShell2) | (Common22 & RunCode2) | (Common23 & Type1) | (Common24 & Screenshot2) | (Common25 & SaveCookie2) | (Common26 & Record2) | (Common27 & StopRecord2) | (Common28 & LoadVariables2) | (Common29 & DragAndDrop2) | (Common30 & LoadCookie2) | (Common31 & Wait2);
330
+ export type Step1 = (Common17 & CheckLink2) | (Common18 & Click2) | (Common19 & Find2) | (Common20 & GoTo2) | (Common21 & HttpRequest2) | (Common22 & RunShell2) | (Common23 & RunCode2) | (Common24 & RunBrowserScript2) | (Common25 & Type1) | (Common26 & Screenshot2) | (Common27 & SaveCookie2) | (Common28 & Record2) | (Common29 & StopRecord2) | (Common30 & LoadVariables2) | (Common31 & DragAndDrop2) | (Common32 & LoadCookie2) | (Common33 & Wait2);
307
331
  export type CheckLink3 = CheckLinkDetailed2 | CheckLinkDetailed3;
308
332
  /**
309
333
  * Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.
@@ -390,6 +414,14 @@ export type RunShellCommandSimple1 = string;
390
414
  * Assemble and run code.
391
415
  */
392
416
  export type RunCode3 = RunCodeDetailed1;
417
+ /**
418
+ * Execute arbitrary JavaScript in the browser page context. Runs via the WebDriver `executeScript` endpoint, so it has access to the page's `document`, `window`, and DOM. Doc Detective captures the script's return value in the step's `outputs.result`. Distinct from `runCode`, which runs Node/Python/bash on the host machine.
419
+ */
420
+ export type RunBrowserScript3 = RunBrowserScriptSimple1 | RunBrowserScriptDetailed1;
421
+ /**
422
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`.
423
+ */
424
+ export type RunBrowserScriptSimple1 = string;
393
425
  /**
394
426
  * Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.
395
427
  */
@@ -474,9 +506,21 @@ export type RecordingEngineSimple1 = "browser" | "ffmpeg";
474
506
  */
475
507
  export type RecordBoolean1 = boolean;
476
508
  /**
477
- * Stop the current recording.
509
+ * Stop a recording started by an earlier `record` step. With no target (`true`/`null`), stops the most recently started recording that is still active (LIFO). To stop a specific recording when several overlap, target it by name with a string (`stopRecord: "<name>"`) or an object (`stopRecord: { name: "<name>" }`).
478
510
  */
479
- export type StopRecord3 = boolean | null;
511
+ export type StopRecord3 = StopRecordBoolean1 | StopRecordNull1 | StopRecordName1 | StopRecordDetailed1;
512
+ /**
513
+ * If `true`, stops the most recently started active recording (LIFO). If `false`, does nothing — an explicit no-op (mirrors `record: false`).
514
+ */
515
+ export type StopRecordBoolean1 = boolean;
516
+ /**
517
+ * Stops the most recently started active recording (LIFO).
518
+ */
519
+ export type StopRecordNull1 = null;
520
+ /**
521
+ * Name of the recording to stop. Matches the `name` given to a `record` step.
522
+ */
523
+ export type StopRecordName1 = string;
480
524
  /**
481
525
  * Load environment variables from the specified `.env` file.
482
526
  */
@@ -1423,6 +1467,116 @@ export interface SourceLocation7 {
1423
1467
  */
1424
1468
  endIndex: number;
1425
1469
  }
1470
+ export interface RunBrowserScript {
1471
+ runBrowserScript: RunBrowserScript1;
1472
+ [k: string]: unknown;
1473
+ }
1474
+ export interface RunBrowserScriptDetailed {
1475
+ /**
1476
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`. The script reads arguments supplied in `args` through the `arguments` object (`arguments[0]`, `arguments[1]`, and so on).
1477
+ */
1478
+ script: string;
1479
+ /**
1480
+ * Arguments passed positionally to the script and exposed through the `arguments` object. Each item may be any JSON-serializable value (string, number, boolean, null, object, or array), matching what `executeScript` accepts.
1481
+ */
1482
+ args?: unknown[];
1483
+ /**
1484
+ * Content expected in the script's serialized return value. Doc Detective serializes non-string return values to JSON before matching. If the serialized return value doesn't contain the expected content, the step fails. Supports strings and regular expressions. To use a regular expression, the string must start and end with a forward slash, like in `/^hello-world.* /`.
1485
+ */
1486
+ output?: string;
1487
+ /**
1488
+ * File path to save the script's serialized return value, relative to `directory`.
1489
+ */
1490
+ path?: string;
1491
+ /**
1492
+ * Directory to save the script's return value. If the directory doesn't exist, creates the directory. If not specified, the directory is your media directory.
1493
+ */
1494
+ directory?: string;
1495
+ /**
1496
+ * Allowed variation as a fraction (0 to 1) of text different between the current return value and previously saved value. For example, 0.1 means 10%. If the difference between the current value and the previous value is greater than `maxVariation`, the step returns a warning. If no output exists at `path`, Doc Detective ignores this value.
1497
+ */
1498
+ maxVariation?: number;
1499
+ /**
1500
+ * If `true`, overwrites the existing output at `path` if it exists.
1501
+ * If `aboveVariation`, overwrites the existing output at `path` if the difference between the new output and the existing output is greater than `maxVariation`.
1502
+ */
1503
+ overwrite?: "true" | "false" | "aboveVariation";
1504
+ /**
1505
+ * Maximum time in milliseconds the script may run. If the script runs longer than this, the step fails.
1506
+ */
1507
+ timeout?: number;
1508
+ }
1509
+ export interface Common8 {
1510
+ /**
1511
+ * JSON Schema for this object.
1512
+ */
1513
+ $schema?: "https://raw.githubusercontent.com/doc-detective/common/refs/heads/main/dist/schemas/step_v3.schema.json";
1514
+ /**
1515
+ * ID of the step.
1516
+ */
1517
+ stepId?: string;
1518
+ /**
1519
+ * Description of the step.
1520
+ */
1521
+ description?: string;
1522
+ /**
1523
+ * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1524
+ */
1525
+ unsafe?: boolean;
1526
+ outputs?: OutputsStep8;
1527
+ variables?: VariablesStep8;
1528
+ /**
1529
+ * 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.
1530
+ */
1531
+ breakpoint?: boolean;
1532
+ location?: SourceLocation8;
1533
+ /**
1534
+ * 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.
1535
+ */
1536
+ autoScreenshot?: string;
1537
+ [k: string]: unknown;
1538
+ }
1539
+ /**
1540
+ * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1541
+ */
1542
+ export interface OutputsStep8 {
1543
+ /**
1544
+ * Runtime expression for a user-defined output value.
1545
+ *
1546
+ * This interface was referenced by `OutputsStep8`'s JSON-Schema definition
1547
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
1548
+ */
1549
+ [k: string]: string;
1550
+ }
1551
+ /**
1552
+ * Environment variables to set from user-defined expressions.
1553
+ */
1554
+ export interface VariablesStep8 {
1555
+ /**
1556
+ * Runtime expression for a user-defined output value.
1557
+ *
1558
+ * This interface was referenced by `VariablesStep8`'s JSON-Schema definition
1559
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
1560
+ */
1561
+ [k: string]: string;
1562
+ }
1563
+ /**
1564
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1565
+ */
1566
+ export interface SourceLocation8 {
1567
+ /**
1568
+ * 1-indexed line number in the source file where the step was detected.
1569
+ */
1570
+ line: number;
1571
+ /**
1572
+ * 0-indexed character offset from the start of the source file where the step begins.
1573
+ */
1574
+ startIndex: number;
1575
+ /**
1576
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
1577
+ */
1578
+ endIndex: number;
1579
+ }
1426
1580
  export interface Type {
1427
1581
  type: TypeKeys;
1428
1582
  [k: string]: unknown;
@@ -1464,7 +1618,7 @@ export interface TypeKeysDetailed {
1464
1618
  */
1465
1619
  elementAria?: string;
1466
1620
  }
1467
- export interface Common8 {
1621
+ export interface Common9 {
1468
1622
  /**
1469
1623
  * JSON Schema for this object.
1470
1624
  */
@@ -1481,13 +1635,13 @@ export interface Common8 {
1481
1635
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1482
1636
  */
1483
1637
  unsafe?: boolean;
1484
- outputs?: OutputsStep8;
1485
- variables?: VariablesStep8;
1638
+ outputs?: OutputsStep9;
1639
+ variables?: VariablesStep9;
1486
1640
  /**
1487
1641
  * 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.
1488
1642
  */
1489
1643
  breakpoint?: boolean;
1490
- location?: SourceLocation8;
1644
+ location?: SourceLocation9;
1491
1645
  /**
1492
1646
  * 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.
1493
1647
  */
@@ -1497,11 +1651,11 @@ export interface Common8 {
1497
1651
  /**
1498
1652
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1499
1653
  */
1500
- export interface OutputsStep8 {
1654
+ export interface OutputsStep9 {
1501
1655
  /**
1502
1656
  * Runtime expression for a user-defined output value.
1503
1657
  *
1504
- * This interface was referenced by `OutputsStep8`'s JSON-Schema definition
1658
+ * This interface was referenced by `OutputsStep9`'s JSON-Schema definition
1505
1659
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1506
1660
  */
1507
1661
  [k: string]: string;
@@ -1509,11 +1663,11 @@ export interface OutputsStep8 {
1509
1663
  /**
1510
1664
  * Environment variables to set from user-defined expressions.
1511
1665
  */
1512
- export interface VariablesStep8 {
1666
+ export interface VariablesStep9 {
1513
1667
  /**
1514
1668
  * Runtime expression for a user-defined output value.
1515
1669
  *
1516
- * This interface was referenced by `VariablesStep8`'s JSON-Schema definition
1670
+ * This interface was referenced by `VariablesStep9`'s JSON-Schema definition
1517
1671
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1518
1672
  */
1519
1673
  [k: string]: string;
@@ -1521,7 +1675,7 @@ export interface VariablesStep8 {
1521
1675
  /**
1522
1676
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1523
1677
  */
1524
- export interface SourceLocation8 {
1678
+ export interface SourceLocation9 {
1525
1679
  /**
1526
1680
  * 1-indexed line number in the source file where the step was detected.
1527
1681
  */
@@ -1582,7 +1736,7 @@ export interface SourceIntegration {
1582
1736
  */
1583
1737
  contentPath?: string;
1584
1738
  }
1585
- export interface Common9 {
1739
+ export interface Common10 {
1586
1740
  /**
1587
1741
  * JSON Schema for this object.
1588
1742
  */
@@ -1599,13 +1753,13 @@ export interface Common9 {
1599
1753
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1600
1754
  */
1601
1755
  unsafe?: boolean;
1602
- outputs?: OutputsStep9;
1603
- variables?: VariablesStep9;
1756
+ outputs?: OutputsStep10;
1757
+ variables?: VariablesStep10;
1604
1758
  /**
1605
1759
  * 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.
1606
1760
  */
1607
1761
  breakpoint?: boolean;
1608
- location?: SourceLocation9;
1762
+ location?: SourceLocation10;
1609
1763
  /**
1610
1764
  * 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.
1611
1765
  */
@@ -1615,11 +1769,11 @@ export interface Common9 {
1615
1769
  /**
1616
1770
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1617
1771
  */
1618
- export interface OutputsStep9 {
1772
+ export interface OutputsStep10 {
1619
1773
  /**
1620
1774
  * Runtime expression for a user-defined output value.
1621
1775
  *
1622
- * This interface was referenced by `OutputsStep9`'s JSON-Schema definition
1776
+ * This interface was referenced by `OutputsStep10`'s JSON-Schema definition
1623
1777
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1624
1778
  */
1625
1779
  [k: string]: string;
@@ -1627,11 +1781,11 @@ export interface OutputsStep9 {
1627
1781
  /**
1628
1782
  * Environment variables to set from user-defined expressions.
1629
1783
  */
1630
- export interface VariablesStep9 {
1784
+ export interface VariablesStep10 {
1631
1785
  /**
1632
1786
  * Runtime expression for a user-defined output value.
1633
1787
  *
1634
- * This interface was referenced by `VariablesStep9`'s JSON-Schema definition
1788
+ * This interface was referenced by `VariablesStep10`'s JSON-Schema definition
1635
1789
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1636
1790
  */
1637
1791
  [k: string]: string;
@@ -1639,7 +1793,7 @@ export interface VariablesStep9 {
1639
1793
  /**
1640
1794
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1641
1795
  */
1642
- export interface SourceLocation9 {
1796
+ export interface SourceLocation10 {
1643
1797
  /**
1644
1798
  * 1-indexed line number in the source file where the step was detected.
1645
1799
  */
@@ -1657,7 +1811,7 @@ export interface SaveCookie {
1657
1811
  saveCookie: SaveCookie1;
1658
1812
  [k: string]: unknown;
1659
1813
  }
1660
- export interface Common10 {
1814
+ export interface Common11 {
1661
1815
  /**
1662
1816
  * JSON Schema for this object.
1663
1817
  */
@@ -1674,13 +1828,13 @@ export interface Common10 {
1674
1828
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1675
1829
  */
1676
1830
  unsafe?: boolean;
1677
- outputs?: OutputsStep10;
1678
- variables?: VariablesStep10;
1831
+ outputs?: OutputsStep11;
1832
+ variables?: VariablesStep11;
1679
1833
  /**
1680
1834
  * 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.
1681
1835
  */
1682
1836
  breakpoint?: boolean;
1683
- location?: SourceLocation10;
1837
+ location?: SourceLocation11;
1684
1838
  /**
1685
1839
  * 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.
1686
1840
  */
@@ -1690,11 +1844,11 @@ export interface Common10 {
1690
1844
  /**
1691
1845
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1692
1846
  */
1693
- export interface OutputsStep10 {
1847
+ export interface OutputsStep11 {
1694
1848
  /**
1695
1849
  * Runtime expression for a user-defined output value.
1696
1850
  *
1697
- * This interface was referenced by `OutputsStep10`'s JSON-Schema definition
1851
+ * This interface was referenced by `OutputsStep11`'s JSON-Schema definition
1698
1852
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1699
1853
  */
1700
1854
  [k: string]: string;
@@ -1702,11 +1856,11 @@ export interface OutputsStep10 {
1702
1856
  /**
1703
1857
  * Environment variables to set from user-defined expressions.
1704
1858
  */
1705
- export interface VariablesStep10 {
1859
+ export interface VariablesStep11 {
1706
1860
  /**
1707
1861
  * Runtime expression for a user-defined output value.
1708
1862
  *
1709
- * This interface was referenced by `VariablesStep10`'s JSON-Schema definition
1863
+ * This interface was referenced by `VariablesStep11`'s JSON-Schema definition
1710
1864
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1711
1865
  */
1712
1866
  [k: string]: string;
@@ -1714,7 +1868,7 @@ export interface VariablesStep10 {
1714
1868
  /**
1715
1869
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1716
1870
  */
1717
- export interface SourceLocation10 {
1871
+ export interface SourceLocation11 {
1718
1872
  /**
1719
1873
  * 1-indexed line number in the source file where the step was detected.
1720
1874
  */
@@ -1745,6 +1899,10 @@ export interface RecordDetailed {
1745
1899
  * If `true`, overwrites the existing recording at `path` if it exists.
1746
1900
  */
1747
1901
  overwrite?: "true" | "false";
1902
+ /**
1903
+ * Identifier for this recording. A later `stopRecord` step can target it by name (`stopRecord: "<name>"`), which is how you stop a specific recording when several overlap. Names must be unique among recordings that are active at the same time. If omitted, the recording is anonymous and is stopped LIFO by an untargeted `stopRecord`.
1904
+ */
1905
+ name?: string;
1748
1906
  engine?: RecordingEngine;
1749
1907
  [k: string]: unknown;
1750
1908
  }
@@ -1762,7 +1920,7 @@ export interface RecordingEngineDetailed {
1762
1920
  */
1763
1921
  fps?: number;
1764
1922
  }
1765
- export interface Common11 {
1923
+ export interface Common12 {
1766
1924
  /**
1767
1925
  * JSON Schema for this object.
1768
1926
  */
@@ -1779,13 +1937,13 @@ export interface Common11 {
1779
1937
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1780
1938
  */
1781
1939
  unsafe?: boolean;
1782
- outputs?: OutputsStep11;
1783
- variables?: VariablesStep11;
1940
+ outputs?: OutputsStep12;
1941
+ variables?: VariablesStep12;
1784
1942
  /**
1785
1943
  * 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.
1786
1944
  */
1787
1945
  breakpoint?: boolean;
1788
- location?: SourceLocation11;
1946
+ location?: SourceLocation12;
1789
1947
  /**
1790
1948
  * 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.
1791
1949
  */
@@ -1795,11 +1953,11 @@ export interface Common11 {
1795
1953
  /**
1796
1954
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1797
1955
  */
1798
- export interface OutputsStep11 {
1956
+ export interface OutputsStep12 {
1799
1957
  /**
1800
1958
  * Runtime expression for a user-defined output value.
1801
1959
  *
1802
- * This interface was referenced by `OutputsStep11`'s JSON-Schema definition
1960
+ * This interface was referenced by `OutputsStep12`'s JSON-Schema definition
1803
1961
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1804
1962
  */
1805
1963
  [k: string]: string;
@@ -1807,11 +1965,11 @@ export interface OutputsStep11 {
1807
1965
  /**
1808
1966
  * Environment variables to set from user-defined expressions.
1809
1967
  */
1810
- export interface VariablesStep11 {
1968
+ export interface VariablesStep12 {
1811
1969
  /**
1812
1970
  * Runtime expression for a user-defined output value.
1813
1971
  *
1814
- * This interface was referenced by `VariablesStep11`'s JSON-Schema definition
1972
+ * This interface was referenced by `VariablesStep12`'s JSON-Schema definition
1815
1973
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1816
1974
  */
1817
1975
  [k: string]: string;
@@ -1819,7 +1977,7 @@ export interface VariablesStep11 {
1819
1977
  /**
1820
1978
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1821
1979
  */
1822
- export interface SourceLocation11 {
1980
+ export interface SourceLocation12 {
1823
1981
  /**
1824
1982
  * 1-indexed line number in the source file where the step was detected.
1825
1983
  */
@@ -1837,7 +1995,13 @@ export interface StopRecord {
1837
1995
  stopRecord: StopRecord1;
1838
1996
  [k: string]: unknown;
1839
1997
  }
1840
- export interface Common12 {
1998
+ export interface StopRecordDetailed {
1999
+ /**
2000
+ * Name of the recording to stop. Matches the `name` given to a `record` step.
2001
+ */
2002
+ name: string;
2003
+ }
2004
+ export interface Common13 {
1841
2005
  /**
1842
2006
  * JSON Schema for this object.
1843
2007
  */
@@ -1854,13 +2018,13 @@ export interface Common12 {
1854
2018
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1855
2019
  */
1856
2020
  unsafe?: boolean;
1857
- outputs?: OutputsStep12;
1858
- variables?: VariablesStep12;
2021
+ outputs?: OutputsStep13;
2022
+ variables?: VariablesStep13;
1859
2023
  /**
1860
2024
  * 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.
1861
2025
  */
1862
2026
  breakpoint?: boolean;
1863
- location?: SourceLocation12;
2027
+ location?: SourceLocation13;
1864
2028
  /**
1865
2029
  * 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.
1866
2030
  */
@@ -1870,11 +2034,11 @@ export interface Common12 {
1870
2034
  /**
1871
2035
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1872
2036
  */
1873
- export interface OutputsStep12 {
2037
+ export interface OutputsStep13 {
1874
2038
  /**
1875
2039
  * Runtime expression for a user-defined output value.
1876
2040
  *
1877
- * This interface was referenced by `OutputsStep12`'s JSON-Schema definition
2041
+ * This interface was referenced by `OutputsStep13`'s JSON-Schema definition
1878
2042
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1879
2043
  */
1880
2044
  [k: string]: string;
@@ -1882,11 +2046,11 @@ export interface OutputsStep12 {
1882
2046
  /**
1883
2047
  * Environment variables to set from user-defined expressions.
1884
2048
  */
1885
- export interface VariablesStep12 {
2049
+ export interface VariablesStep13 {
1886
2050
  /**
1887
2051
  * Runtime expression for a user-defined output value.
1888
2052
  *
1889
- * This interface was referenced by `VariablesStep12`'s JSON-Schema definition
2053
+ * This interface was referenced by `VariablesStep13`'s JSON-Schema definition
1890
2054
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1891
2055
  */
1892
2056
  [k: string]: string;
@@ -1894,7 +2058,7 @@ export interface VariablesStep12 {
1894
2058
  /**
1895
2059
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1896
2060
  */
1897
- export interface SourceLocation12 {
2061
+ export interface SourceLocation13 {
1898
2062
  /**
1899
2063
  * 1-indexed line number in the source file where the step was detected.
1900
2064
  */
@@ -1912,7 +2076,7 @@ export interface LoadVariables {
1912
2076
  loadVariables: LoadVariables1;
1913
2077
  [k: string]: unknown;
1914
2078
  }
1915
- export interface Common13 {
2079
+ export interface Common14 {
1916
2080
  /**
1917
2081
  * JSON Schema for this object.
1918
2082
  */
@@ -1929,13 +2093,13 @@ export interface Common13 {
1929
2093
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
1930
2094
  */
1931
2095
  unsafe?: boolean;
1932
- outputs?: OutputsStep13;
1933
- variables?: VariablesStep13;
2096
+ outputs?: OutputsStep14;
2097
+ variables?: VariablesStep14;
1934
2098
  /**
1935
2099
  * 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.
1936
2100
  */
1937
2101
  breakpoint?: boolean;
1938
- location?: SourceLocation13;
2102
+ location?: SourceLocation14;
1939
2103
  /**
1940
2104
  * 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.
1941
2105
  */
@@ -1945,11 +2109,11 @@ export interface Common13 {
1945
2109
  /**
1946
2110
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
1947
2111
  */
1948
- export interface OutputsStep13 {
2112
+ export interface OutputsStep14 {
1949
2113
  /**
1950
2114
  * Runtime expression for a user-defined output value.
1951
2115
  *
1952
- * This interface was referenced by `OutputsStep13`'s JSON-Schema definition
2116
+ * This interface was referenced by `OutputsStep14`'s JSON-Schema definition
1953
2117
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1954
2118
  */
1955
2119
  [k: string]: string;
@@ -1957,11 +2121,11 @@ export interface OutputsStep13 {
1957
2121
  /**
1958
2122
  * Environment variables to set from user-defined expressions.
1959
2123
  */
1960
- export interface VariablesStep13 {
2124
+ export interface VariablesStep14 {
1961
2125
  /**
1962
2126
  * Runtime expression for a user-defined output value.
1963
2127
  *
1964
- * This interface was referenced by `VariablesStep13`'s JSON-Schema definition
2128
+ * This interface was referenced by `VariablesStep14`'s JSON-Schema definition
1965
2129
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
1966
2130
  */
1967
2131
  [k: string]: string;
@@ -1969,7 +2133,7 @@ export interface VariablesStep13 {
1969
2133
  /**
1970
2134
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
1971
2135
  */
1972
- export interface SourceLocation13 {
2136
+ export interface SourceLocation14 {
1973
2137
  /**
1974
2138
  * 1-indexed line number in the source file where the step was detected.
1975
2139
  */
@@ -2005,7 +2169,7 @@ export interface DragAndDrop1 {
2005
2169
  duration?: number;
2006
2170
  [k: string]: unknown;
2007
2171
  }
2008
- export interface Common14 {
2172
+ export interface Common15 {
2009
2173
  /**
2010
2174
  * JSON Schema for this object.
2011
2175
  */
@@ -2022,13 +2186,13 @@ export interface Common14 {
2022
2186
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2023
2187
  */
2024
2188
  unsafe?: boolean;
2025
- outputs?: OutputsStep14;
2026
- variables?: VariablesStep14;
2189
+ outputs?: OutputsStep15;
2190
+ variables?: VariablesStep15;
2027
2191
  /**
2028
2192
  * 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.
2029
2193
  */
2030
2194
  breakpoint?: boolean;
2031
- location?: SourceLocation14;
2195
+ location?: SourceLocation15;
2032
2196
  /**
2033
2197
  * 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.
2034
2198
  */
@@ -2038,11 +2202,11 @@ export interface Common14 {
2038
2202
  /**
2039
2203
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2040
2204
  */
2041
- export interface OutputsStep14 {
2205
+ export interface OutputsStep15 {
2042
2206
  /**
2043
2207
  * Runtime expression for a user-defined output value.
2044
2208
  *
2045
- * This interface was referenced by `OutputsStep14`'s JSON-Schema definition
2209
+ * This interface was referenced by `OutputsStep15`'s JSON-Schema definition
2046
2210
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2047
2211
  */
2048
2212
  [k: string]: string;
@@ -2050,11 +2214,11 @@ export interface OutputsStep14 {
2050
2214
  /**
2051
2215
  * Environment variables to set from user-defined expressions.
2052
2216
  */
2053
- export interface VariablesStep14 {
2217
+ export interface VariablesStep15 {
2054
2218
  /**
2055
2219
  * Runtime expression for a user-defined output value.
2056
2220
  *
2057
- * This interface was referenced by `VariablesStep14`'s JSON-Schema definition
2221
+ * This interface was referenced by `VariablesStep15`'s JSON-Schema definition
2058
2222
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2059
2223
  */
2060
2224
  [k: string]: string;
@@ -2062,7 +2226,7 @@ export interface VariablesStep14 {
2062
2226
  /**
2063
2227
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2064
2228
  */
2065
- export interface SourceLocation14 {
2229
+ export interface SourceLocation15 {
2066
2230
  /**
2067
2231
  * 1-indexed line number in the source file where the step was detected.
2068
2232
  */
@@ -2080,7 +2244,7 @@ export interface LoadCookie {
2080
2244
  loadCookie: LoadCookie1;
2081
2245
  [k: string]: unknown;
2082
2246
  }
2083
- export interface Common15 {
2247
+ export interface Common16 {
2084
2248
  /**
2085
2249
  * JSON Schema for this object.
2086
2250
  */
@@ -2097,13 +2261,13 @@ export interface Common15 {
2097
2261
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2098
2262
  */
2099
2263
  unsafe?: boolean;
2100
- outputs?: OutputsStep15;
2101
- variables?: VariablesStep15;
2264
+ outputs?: OutputsStep16;
2265
+ variables?: VariablesStep16;
2102
2266
  /**
2103
2267
  * 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.
2104
2268
  */
2105
2269
  breakpoint?: boolean;
2106
- location?: SourceLocation15;
2270
+ location?: SourceLocation16;
2107
2271
  /**
2108
2272
  * 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.
2109
2273
  */
@@ -2113,11 +2277,11 @@ export interface Common15 {
2113
2277
  /**
2114
2278
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2115
2279
  */
2116
- export interface OutputsStep15 {
2280
+ export interface OutputsStep16 {
2117
2281
  /**
2118
2282
  * Runtime expression for a user-defined output value.
2119
2283
  *
2120
- * This interface was referenced by `OutputsStep15`'s JSON-Schema definition
2284
+ * This interface was referenced by `OutputsStep16`'s JSON-Schema definition
2121
2285
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2122
2286
  */
2123
2287
  [k: string]: string;
@@ -2125,11 +2289,11 @@ export interface OutputsStep15 {
2125
2289
  /**
2126
2290
  * Environment variables to set from user-defined expressions.
2127
2291
  */
2128
- export interface VariablesStep15 {
2292
+ export interface VariablesStep16 {
2129
2293
  /**
2130
2294
  * Runtime expression for a user-defined output value.
2131
2295
  *
2132
- * This interface was referenced by `VariablesStep15`'s JSON-Schema definition
2296
+ * This interface was referenced by `VariablesStep16`'s JSON-Schema definition
2133
2297
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2134
2298
  */
2135
2299
  [k: string]: string;
@@ -2137,7 +2301,7 @@ export interface VariablesStep15 {
2137
2301
  /**
2138
2302
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2139
2303
  */
2140
- export interface SourceLocation15 {
2304
+ export interface SourceLocation16 {
2141
2305
  /**
2142
2306
  * 1-indexed line number in the source file where the step was detected.
2143
2307
  */
@@ -2214,7 +2378,7 @@ export interface BrowserViewport2 {
2214
2378
  export interface OpenAPIDescriptionTest1 {
2215
2379
  [k: string]: unknown;
2216
2380
  }
2217
- export interface Common16 {
2381
+ export interface Common17 {
2218
2382
  /**
2219
2383
  * JSON Schema for this object.
2220
2384
  */
@@ -2231,13 +2395,13 @@ export interface Common16 {
2231
2395
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2232
2396
  */
2233
2397
  unsafe?: boolean;
2234
- outputs?: OutputsStep16;
2235
- variables?: VariablesStep16;
2398
+ outputs?: OutputsStep17;
2399
+ variables?: VariablesStep17;
2236
2400
  /**
2237
2401
  * 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.
2238
2402
  */
2239
2403
  breakpoint?: boolean;
2240
- location?: SourceLocation16;
2404
+ location?: SourceLocation17;
2241
2405
  /**
2242
2406
  * 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.
2243
2407
  */
@@ -2247,11 +2411,11 @@ export interface Common16 {
2247
2411
  /**
2248
2412
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2249
2413
  */
2250
- export interface OutputsStep16 {
2414
+ export interface OutputsStep17 {
2251
2415
  /**
2252
2416
  * Runtime expression for a user-defined output value.
2253
2417
  *
2254
- * This interface was referenced by `OutputsStep16`'s JSON-Schema definition
2418
+ * This interface was referenced by `OutputsStep17`'s JSON-Schema definition
2255
2419
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2256
2420
  */
2257
2421
  [k: string]: string;
@@ -2259,11 +2423,11 @@ export interface OutputsStep16 {
2259
2423
  /**
2260
2424
  * Environment variables to set from user-defined expressions.
2261
2425
  */
2262
- export interface VariablesStep16 {
2426
+ export interface VariablesStep17 {
2263
2427
  /**
2264
2428
  * Runtime expression for a user-defined output value.
2265
2429
  *
2266
- * This interface was referenced by `VariablesStep16`'s JSON-Schema definition
2430
+ * This interface was referenced by `VariablesStep17`'s JSON-Schema definition
2267
2431
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2268
2432
  */
2269
2433
  [k: string]: string;
@@ -2271,7 +2435,7 @@ export interface VariablesStep16 {
2271
2435
  /**
2272
2436
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2273
2437
  */
2274
- export interface SourceLocation16 {
2438
+ export interface SourceLocation17 {
2275
2439
  /**
2276
2440
  * 1-indexed line number in the source file where the step was detected.
2277
2441
  */
@@ -2322,7 +2486,7 @@ export interface CheckLinkDetailed3 {
2322
2486
  export interface RequestHeadersObject1 {
2323
2487
  [k: string]: string;
2324
2488
  }
2325
- export interface Common17 {
2489
+ export interface Common18 {
2326
2490
  /**
2327
2491
  * JSON Schema for this object.
2328
2492
  */
@@ -2339,13 +2503,13 @@ export interface Common17 {
2339
2503
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2340
2504
  */
2341
2505
  unsafe?: boolean;
2342
- outputs?: OutputsStep17;
2343
- variables?: VariablesStep17;
2506
+ outputs?: OutputsStep18;
2507
+ variables?: VariablesStep18;
2344
2508
  /**
2345
2509
  * 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.
2346
2510
  */
2347
2511
  breakpoint?: boolean;
2348
- location?: SourceLocation17;
2512
+ location?: SourceLocation18;
2349
2513
  /**
2350
2514
  * 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.
2351
2515
  */
@@ -2355,11 +2519,11 @@ export interface Common17 {
2355
2519
  /**
2356
2520
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2357
2521
  */
2358
- export interface OutputsStep17 {
2522
+ export interface OutputsStep18 {
2359
2523
  /**
2360
2524
  * Runtime expression for a user-defined output value.
2361
2525
  *
2362
- * This interface was referenced by `OutputsStep17`'s JSON-Schema definition
2526
+ * This interface was referenced by `OutputsStep18`'s JSON-Schema definition
2363
2527
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2364
2528
  */
2365
2529
  [k: string]: string;
@@ -2367,11 +2531,11 @@ export interface OutputsStep17 {
2367
2531
  /**
2368
2532
  * Environment variables to set from user-defined expressions.
2369
2533
  */
2370
- export interface VariablesStep17 {
2534
+ export interface VariablesStep18 {
2371
2535
  /**
2372
2536
  * Runtime expression for a user-defined output value.
2373
2537
  *
2374
- * This interface was referenced by `VariablesStep17`'s JSON-Schema definition
2538
+ * This interface was referenced by `VariablesStep18`'s JSON-Schema definition
2375
2539
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2376
2540
  */
2377
2541
  [k: string]: string;
@@ -2379,7 +2543,7 @@ export interface VariablesStep17 {
2379
2543
  /**
2380
2544
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2381
2545
  */
2382
- export interface SourceLocation17 {
2546
+ export interface SourceLocation18 {
2383
2547
  /**
2384
2548
  * 1-indexed line number in the source file where the step was detected.
2385
2549
  */
@@ -2397,7 +2561,7 @@ export interface Click2 {
2397
2561
  click: Click3;
2398
2562
  [k: string]: unknown;
2399
2563
  }
2400
- export interface Common18 {
2564
+ export interface Common19 {
2401
2565
  /**
2402
2566
  * JSON Schema for this object.
2403
2567
  */
@@ -2414,13 +2578,13 @@ export interface Common18 {
2414
2578
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2415
2579
  */
2416
2580
  unsafe?: boolean;
2417
- outputs?: OutputsStep18;
2418
- variables?: VariablesStep18;
2581
+ outputs?: OutputsStep19;
2582
+ variables?: VariablesStep19;
2419
2583
  /**
2420
2584
  * 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.
2421
2585
  */
2422
2586
  breakpoint?: boolean;
2423
- location?: SourceLocation18;
2587
+ location?: SourceLocation19;
2424
2588
  /**
2425
2589
  * 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.
2426
2590
  */
@@ -2430,11 +2594,11 @@ export interface Common18 {
2430
2594
  /**
2431
2595
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2432
2596
  */
2433
- export interface OutputsStep18 {
2597
+ export interface OutputsStep19 {
2434
2598
  /**
2435
2599
  * Runtime expression for a user-defined output value.
2436
2600
  *
2437
- * This interface was referenced by `OutputsStep18`'s JSON-Schema definition
2601
+ * This interface was referenced by `OutputsStep19`'s JSON-Schema definition
2438
2602
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2439
2603
  */
2440
2604
  [k: string]: string;
@@ -2442,11 +2606,11 @@ export interface OutputsStep18 {
2442
2606
  /**
2443
2607
  * Environment variables to set from user-defined expressions.
2444
2608
  */
2445
- export interface VariablesStep18 {
2609
+ export interface VariablesStep19 {
2446
2610
  /**
2447
2611
  * Runtime expression for a user-defined output value.
2448
2612
  *
2449
- * This interface was referenced by `VariablesStep18`'s JSON-Schema definition
2613
+ * This interface was referenced by `VariablesStep19`'s JSON-Schema definition
2450
2614
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2451
2615
  */
2452
2616
  [k: string]: string;
@@ -2454,7 +2618,7 @@ export interface VariablesStep18 {
2454
2618
  /**
2455
2619
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2456
2620
  */
2457
- export interface SourceLocation18 {
2621
+ export interface SourceLocation19 {
2458
2622
  /**
2459
2623
  * 1-indexed line number in the source file where the step was detected.
2460
2624
  */
@@ -2472,7 +2636,7 @@ export interface Find2 {
2472
2636
  find: Find3;
2473
2637
  [k: string]: unknown;
2474
2638
  }
2475
- export interface Common19 {
2639
+ export interface Common20 {
2476
2640
  /**
2477
2641
  * JSON Schema for this object.
2478
2642
  */
@@ -2489,13 +2653,13 @@ export interface Common19 {
2489
2653
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2490
2654
  */
2491
2655
  unsafe?: boolean;
2492
- outputs?: OutputsStep19;
2493
- variables?: VariablesStep19;
2656
+ outputs?: OutputsStep20;
2657
+ variables?: VariablesStep20;
2494
2658
  /**
2495
2659
  * 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.
2496
2660
  */
2497
2661
  breakpoint?: boolean;
2498
- location?: SourceLocation19;
2662
+ location?: SourceLocation20;
2499
2663
  /**
2500
2664
  * 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.
2501
2665
  */
@@ -2505,11 +2669,11 @@ export interface Common19 {
2505
2669
  /**
2506
2670
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2507
2671
  */
2508
- export interface OutputsStep19 {
2672
+ export interface OutputsStep20 {
2509
2673
  /**
2510
2674
  * Runtime expression for a user-defined output value.
2511
2675
  *
2512
- * This interface was referenced by `OutputsStep19`'s JSON-Schema definition
2676
+ * This interface was referenced by `OutputsStep20`'s JSON-Schema definition
2513
2677
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2514
2678
  */
2515
2679
  [k: string]: string;
@@ -2517,11 +2681,11 @@ export interface OutputsStep19 {
2517
2681
  /**
2518
2682
  * Environment variables to set from user-defined expressions.
2519
2683
  */
2520
- export interface VariablesStep19 {
2684
+ export interface VariablesStep20 {
2521
2685
  /**
2522
2686
  * Runtime expression for a user-defined output value.
2523
2687
  *
2524
- * This interface was referenced by `VariablesStep19`'s JSON-Schema definition
2688
+ * This interface was referenced by `VariablesStep20`'s JSON-Schema definition
2525
2689
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2526
2690
  */
2527
2691
  [k: string]: string;
@@ -2529,7 +2693,7 @@ export interface VariablesStep19 {
2529
2693
  /**
2530
2694
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2531
2695
  */
2532
- export interface SourceLocation19 {
2696
+ export interface SourceLocation20 {
2533
2697
  /**
2534
2698
  * 1-indexed line number in the source file where the step was detected.
2535
2699
  */
@@ -2601,7 +2765,7 @@ export interface GoToURLDetailed1 {
2601
2765
  };
2602
2766
  };
2603
2767
  }
2604
- export interface Common20 {
2768
+ export interface Common21 {
2605
2769
  /**
2606
2770
  * JSON Schema for this object.
2607
2771
  */
@@ -2618,13 +2782,13 @@ export interface Common20 {
2618
2782
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2619
2783
  */
2620
2784
  unsafe?: boolean;
2621
- outputs?: OutputsStep20;
2622
- variables?: VariablesStep20;
2785
+ outputs?: OutputsStep21;
2786
+ variables?: VariablesStep21;
2623
2787
  /**
2624
2788
  * 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.
2625
2789
  */
2626
2790
  breakpoint?: boolean;
2627
- location?: SourceLocation20;
2791
+ location?: SourceLocation21;
2628
2792
  /**
2629
2793
  * 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.
2630
2794
  */
@@ -2634,11 +2798,11 @@ export interface Common20 {
2634
2798
  /**
2635
2799
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2636
2800
  */
2637
- export interface OutputsStep20 {
2801
+ export interface OutputsStep21 {
2638
2802
  /**
2639
2803
  * Runtime expression for a user-defined output value.
2640
2804
  *
2641
- * This interface was referenced by `OutputsStep20`'s JSON-Schema definition
2805
+ * This interface was referenced by `OutputsStep21`'s JSON-Schema definition
2642
2806
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2643
2807
  */
2644
2808
  [k: string]: string;
@@ -2646,11 +2810,11 @@ export interface OutputsStep20 {
2646
2810
  /**
2647
2811
  * Environment variables to set from user-defined expressions.
2648
2812
  */
2649
- export interface VariablesStep20 {
2813
+ export interface VariablesStep21 {
2650
2814
  /**
2651
2815
  * Runtime expression for a user-defined output value.
2652
2816
  *
2653
- * This interface was referenced by `VariablesStep20`'s JSON-Schema definition
2817
+ * This interface was referenced by `VariablesStep21`'s JSON-Schema definition
2654
2818
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2655
2819
  */
2656
2820
  [k: string]: string;
@@ -2658,7 +2822,7 @@ export interface VariablesStep20 {
2658
2822
  /**
2659
2823
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2660
2824
  */
2661
- export interface SourceLocation20 {
2825
+ export interface SourceLocation21 {
2662
2826
  /**
2663
2827
  * 1-indexed line number in the source file where the step was detected.
2664
2828
  */
@@ -2676,7 +2840,7 @@ export interface HttpRequest2 {
2676
2840
  httpRequest: HttpRequest3;
2677
2841
  [k: string]: unknown;
2678
2842
  }
2679
- export interface Common21 {
2843
+ export interface Common22 {
2680
2844
  /**
2681
2845
  * JSON Schema for this object.
2682
2846
  */
@@ -2693,13 +2857,13 @@ export interface Common21 {
2693
2857
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2694
2858
  */
2695
2859
  unsafe?: boolean;
2696
- outputs?: OutputsStep21;
2697
- variables?: VariablesStep21;
2860
+ outputs?: OutputsStep22;
2861
+ variables?: VariablesStep22;
2698
2862
  /**
2699
2863
  * 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.
2700
2864
  */
2701
2865
  breakpoint?: boolean;
2702
- location?: SourceLocation21;
2866
+ location?: SourceLocation22;
2703
2867
  /**
2704
2868
  * 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.
2705
2869
  */
@@ -2709,11 +2873,11 @@ export interface Common21 {
2709
2873
  /**
2710
2874
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2711
2875
  */
2712
- export interface OutputsStep21 {
2876
+ export interface OutputsStep22 {
2713
2877
  /**
2714
2878
  * Runtime expression for a user-defined output value.
2715
2879
  *
2716
- * This interface was referenced by `OutputsStep21`'s JSON-Schema definition
2880
+ * This interface was referenced by `OutputsStep22`'s JSON-Schema definition
2717
2881
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2718
2882
  */
2719
2883
  [k: string]: string;
@@ -2721,11 +2885,11 @@ export interface OutputsStep21 {
2721
2885
  /**
2722
2886
  * Environment variables to set from user-defined expressions.
2723
2887
  */
2724
- export interface VariablesStep21 {
2888
+ export interface VariablesStep22 {
2725
2889
  /**
2726
2890
  * Runtime expression for a user-defined output value.
2727
2891
  *
2728
- * This interface was referenced by `VariablesStep21`'s JSON-Schema definition
2892
+ * This interface was referenced by `VariablesStep22`'s JSON-Schema definition
2729
2893
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2730
2894
  */
2731
2895
  [k: string]: string;
@@ -2733,7 +2897,7 @@ export interface VariablesStep21 {
2733
2897
  /**
2734
2898
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2735
2899
  */
2736
- export interface SourceLocation21 {
2900
+ export interface SourceLocation22 {
2737
2901
  /**
2738
2902
  * 1-indexed line number in the source file where the step was detected.
2739
2903
  */
@@ -2794,7 +2958,7 @@ export interface RunShellCommandDetailed1 {
2794
2958
  */
2795
2959
  timeout?: number;
2796
2960
  }
2797
- export interface Common22 {
2961
+ export interface Common23 {
2798
2962
  /**
2799
2963
  * JSON Schema for this object.
2800
2964
  */
@@ -2811,13 +2975,13 @@ export interface Common22 {
2811
2975
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2812
2976
  */
2813
2977
  unsafe?: boolean;
2814
- outputs?: OutputsStep22;
2815
- variables?: VariablesStep22;
2978
+ outputs?: OutputsStep23;
2979
+ variables?: VariablesStep23;
2816
2980
  /**
2817
2981
  * 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.
2818
2982
  */
2819
2983
  breakpoint?: boolean;
2820
- location?: SourceLocation22;
2984
+ location?: SourceLocation23;
2821
2985
  /**
2822
2986
  * 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.
2823
2987
  */
@@ -2827,11 +2991,11 @@ export interface Common22 {
2827
2991
  /**
2828
2992
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2829
2993
  */
2830
- export interface OutputsStep22 {
2994
+ export interface OutputsStep23 {
2831
2995
  /**
2832
2996
  * Runtime expression for a user-defined output value.
2833
2997
  *
2834
- * This interface was referenced by `OutputsStep22`'s JSON-Schema definition
2998
+ * This interface was referenced by `OutputsStep23`'s JSON-Schema definition
2835
2999
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2836
3000
  */
2837
3001
  [k: string]: string;
@@ -2839,11 +3003,11 @@ export interface OutputsStep22 {
2839
3003
  /**
2840
3004
  * Environment variables to set from user-defined expressions.
2841
3005
  */
2842
- export interface VariablesStep22 {
3006
+ export interface VariablesStep23 {
2843
3007
  /**
2844
3008
  * Runtime expression for a user-defined output value.
2845
3009
  *
2846
- * This interface was referenced by `VariablesStep22`'s JSON-Schema definition
3010
+ * This interface was referenced by `VariablesStep23`'s JSON-Schema definition
2847
3011
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2848
3012
  */
2849
3013
  [k: string]: string;
@@ -2851,7 +3015,7 @@ export interface VariablesStep22 {
2851
3015
  /**
2852
3016
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2853
3017
  */
2854
- export interface SourceLocation22 {
3018
+ export interface SourceLocation23 {
2855
3019
  /**
2856
3020
  * 1-indexed line number in the source file where the step was detected.
2857
3021
  */
@@ -2917,7 +3081,7 @@ export interface RunCodeDetailed1 {
2917
3081
  timeout?: number;
2918
3082
  [k: string]: unknown;
2919
3083
  }
2920
- export interface Common23 {
3084
+ export interface Common24 {
2921
3085
  /**
2922
3086
  * JSON Schema for this object.
2923
3087
  */
@@ -2934,13 +3098,13 @@ export interface Common23 {
2934
3098
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
2935
3099
  */
2936
3100
  unsafe?: boolean;
2937
- outputs?: OutputsStep23;
2938
- variables?: VariablesStep23;
3101
+ outputs?: OutputsStep24;
3102
+ variables?: VariablesStep24;
2939
3103
  /**
2940
3104
  * 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.
2941
3105
  */
2942
3106
  breakpoint?: boolean;
2943
- location?: SourceLocation23;
3107
+ location?: SourceLocation24;
2944
3108
  /**
2945
3109
  * 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.
2946
3110
  */
@@ -2950,11 +3114,11 @@ export interface Common23 {
2950
3114
  /**
2951
3115
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
2952
3116
  */
2953
- export interface OutputsStep23 {
3117
+ export interface OutputsStep24 {
2954
3118
  /**
2955
3119
  * Runtime expression for a user-defined output value.
2956
3120
  *
2957
- * This interface was referenced by `OutputsStep23`'s JSON-Schema definition
3121
+ * This interface was referenced by `OutputsStep24`'s JSON-Schema definition
2958
3122
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2959
3123
  */
2960
3124
  [k: string]: string;
@@ -2962,11 +3126,11 @@ export interface OutputsStep23 {
2962
3126
  /**
2963
3127
  * Environment variables to set from user-defined expressions.
2964
3128
  */
2965
- export interface VariablesStep23 {
3129
+ export interface VariablesStep24 {
2966
3130
  /**
2967
3131
  * Runtime expression for a user-defined output value.
2968
3132
  *
2969
- * This interface was referenced by `VariablesStep23`'s JSON-Schema definition
3133
+ * This interface was referenced by `VariablesStep24`'s JSON-Schema definition
2970
3134
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
2971
3135
  */
2972
3136
  [k: string]: string;
@@ -2974,7 +3138,117 @@ export interface VariablesStep23 {
2974
3138
  /**
2975
3139
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
2976
3140
  */
2977
- export interface SourceLocation23 {
3141
+ export interface SourceLocation24 {
3142
+ /**
3143
+ * 1-indexed line number in the source file where the step was detected.
3144
+ */
3145
+ line: number;
3146
+ /**
3147
+ * 0-indexed character offset from the start of the source file where the step begins.
3148
+ */
3149
+ startIndex: number;
3150
+ /**
3151
+ * 0-indexed character offset from the start of the source file where the step ends (exclusive).
3152
+ */
3153
+ endIndex: number;
3154
+ }
3155
+ export interface RunBrowserScript2 {
3156
+ runBrowserScript: RunBrowserScript3;
3157
+ [k: string]: unknown;
3158
+ }
3159
+ export interface RunBrowserScriptDetailed1 {
3160
+ /**
3161
+ * JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`. The script reads arguments supplied in `args` through the `arguments` object (`arguments[0]`, `arguments[1]`, and so on).
3162
+ */
3163
+ script: string;
3164
+ /**
3165
+ * Arguments passed positionally to the script and exposed through the `arguments` object. Each item may be any JSON-serializable value (string, number, boolean, null, object, or array), matching what `executeScript` accepts.
3166
+ */
3167
+ args?: unknown[];
3168
+ /**
3169
+ * Content expected in the script's serialized return value. Doc Detective serializes non-string return values to JSON before matching. If the serialized return value doesn't contain the expected content, the step fails. Supports strings and regular expressions. To use a regular expression, the string must start and end with a forward slash, like in `/^hello-world.* /`.
3170
+ */
3171
+ output?: string;
3172
+ /**
3173
+ * File path to save the script's serialized return value, relative to `directory`.
3174
+ */
3175
+ path?: string;
3176
+ /**
3177
+ * Directory to save the script's return value. If the directory doesn't exist, creates the directory. If not specified, the directory is your media directory.
3178
+ */
3179
+ directory?: string;
3180
+ /**
3181
+ * Allowed variation as a fraction (0 to 1) of text different between the current return value and previously saved value. For example, 0.1 means 10%. If the difference between the current value and the previous value is greater than `maxVariation`, the step returns a warning. If no output exists at `path`, Doc Detective ignores this value.
3182
+ */
3183
+ maxVariation?: number;
3184
+ /**
3185
+ * If `true`, overwrites the existing output at `path` if it exists.
3186
+ * If `aboveVariation`, overwrites the existing output at `path` if the difference between the new output and the existing output is greater than `maxVariation`.
3187
+ */
3188
+ overwrite?: "true" | "false" | "aboveVariation";
3189
+ /**
3190
+ * Maximum time in milliseconds the script may run. If the script runs longer than this, the step fails.
3191
+ */
3192
+ timeout?: number;
3193
+ }
3194
+ export interface Common25 {
3195
+ /**
3196
+ * JSON Schema for this object.
3197
+ */
3198
+ $schema?: "https://raw.githubusercontent.com/doc-detective/common/refs/heads/main/dist/schemas/step_v3.schema.json";
3199
+ /**
3200
+ * ID of the step.
3201
+ */
3202
+ stepId?: string;
3203
+ /**
3204
+ * Description of the step.
3205
+ */
3206
+ description?: string;
3207
+ /**
3208
+ * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3209
+ */
3210
+ unsafe?: boolean;
3211
+ outputs?: OutputsStep25;
3212
+ variables?: VariablesStep25;
3213
+ /**
3214
+ * 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.
3215
+ */
3216
+ breakpoint?: boolean;
3217
+ location?: SourceLocation25;
3218
+ /**
3219
+ * 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.
3220
+ */
3221
+ autoScreenshot?: string;
3222
+ [k: string]: unknown;
3223
+ }
3224
+ /**
3225
+ * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3226
+ */
3227
+ export interface OutputsStep25 {
3228
+ /**
3229
+ * Runtime expression for a user-defined output value.
3230
+ *
3231
+ * This interface was referenced by `OutputsStep25`'s JSON-Schema definition
3232
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
3233
+ */
3234
+ [k: string]: string;
3235
+ }
3236
+ /**
3237
+ * Environment variables to set from user-defined expressions.
3238
+ */
3239
+ export interface VariablesStep25 {
3240
+ /**
3241
+ * Runtime expression for a user-defined output value.
3242
+ *
3243
+ * This interface was referenced by `VariablesStep25`'s JSON-Schema definition
3244
+ * via the `patternProperty` "^[A-Za-z0-9_]+$".
3245
+ */
3246
+ [k: string]: string;
3247
+ }
3248
+ /**
3249
+ * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3250
+ */
3251
+ export interface SourceLocation25 {
2978
3252
  /**
2979
3253
  * 1-indexed line number in the source file where the step was detected.
2980
3254
  */
@@ -3029,7 +3303,7 @@ export interface TypeKeysDetailed1 {
3029
3303
  */
3030
3304
  elementAria?: string;
3031
3305
  }
3032
- export interface Common24 {
3306
+ export interface Common26 {
3033
3307
  /**
3034
3308
  * JSON Schema for this object.
3035
3309
  */
@@ -3046,13 +3320,13 @@ export interface Common24 {
3046
3320
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3047
3321
  */
3048
3322
  unsafe?: boolean;
3049
- outputs?: OutputsStep24;
3050
- variables?: VariablesStep24;
3323
+ outputs?: OutputsStep26;
3324
+ variables?: VariablesStep26;
3051
3325
  /**
3052
3326
  * 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.
3053
3327
  */
3054
3328
  breakpoint?: boolean;
3055
- location?: SourceLocation24;
3329
+ location?: SourceLocation26;
3056
3330
  /**
3057
3331
  * 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.
3058
3332
  */
@@ -3062,11 +3336,11 @@ export interface Common24 {
3062
3336
  /**
3063
3337
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3064
3338
  */
3065
- export interface OutputsStep24 {
3339
+ export interface OutputsStep26 {
3066
3340
  /**
3067
3341
  * Runtime expression for a user-defined output value.
3068
3342
  *
3069
- * This interface was referenced by `OutputsStep24`'s JSON-Schema definition
3343
+ * This interface was referenced by `OutputsStep26`'s JSON-Schema definition
3070
3344
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3071
3345
  */
3072
3346
  [k: string]: string;
@@ -3074,11 +3348,11 @@ export interface OutputsStep24 {
3074
3348
  /**
3075
3349
  * Environment variables to set from user-defined expressions.
3076
3350
  */
3077
- export interface VariablesStep24 {
3351
+ export interface VariablesStep26 {
3078
3352
  /**
3079
3353
  * Runtime expression for a user-defined output value.
3080
3354
  *
3081
- * This interface was referenced by `VariablesStep24`'s JSON-Schema definition
3355
+ * This interface was referenced by `VariablesStep26`'s JSON-Schema definition
3082
3356
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3083
3357
  */
3084
3358
  [k: string]: string;
@@ -3086,7 +3360,7 @@ export interface VariablesStep24 {
3086
3360
  /**
3087
3361
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3088
3362
  */
3089
- export interface SourceLocation24 {
3363
+ export interface SourceLocation26 {
3090
3364
  /**
3091
3365
  * 1-indexed line number in the source file where the step was detected.
3092
3366
  */
@@ -3147,7 +3421,7 @@ export interface SourceIntegration1 {
3147
3421
  */
3148
3422
  contentPath?: string;
3149
3423
  }
3150
- export interface Common25 {
3424
+ export interface Common27 {
3151
3425
  /**
3152
3426
  * JSON Schema for this object.
3153
3427
  */
@@ -3164,13 +3438,13 @@ export interface Common25 {
3164
3438
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3165
3439
  */
3166
3440
  unsafe?: boolean;
3167
- outputs?: OutputsStep25;
3168
- variables?: VariablesStep25;
3441
+ outputs?: OutputsStep27;
3442
+ variables?: VariablesStep27;
3169
3443
  /**
3170
3444
  * 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.
3171
3445
  */
3172
3446
  breakpoint?: boolean;
3173
- location?: SourceLocation25;
3447
+ location?: SourceLocation27;
3174
3448
  /**
3175
3449
  * 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.
3176
3450
  */
@@ -3180,11 +3454,11 @@ export interface Common25 {
3180
3454
  /**
3181
3455
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3182
3456
  */
3183
- export interface OutputsStep25 {
3457
+ export interface OutputsStep27 {
3184
3458
  /**
3185
3459
  * Runtime expression for a user-defined output value.
3186
3460
  *
3187
- * This interface was referenced by `OutputsStep25`'s JSON-Schema definition
3461
+ * This interface was referenced by `OutputsStep27`'s JSON-Schema definition
3188
3462
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3189
3463
  */
3190
3464
  [k: string]: string;
@@ -3192,11 +3466,11 @@ export interface OutputsStep25 {
3192
3466
  /**
3193
3467
  * Environment variables to set from user-defined expressions.
3194
3468
  */
3195
- export interface VariablesStep25 {
3469
+ export interface VariablesStep27 {
3196
3470
  /**
3197
3471
  * Runtime expression for a user-defined output value.
3198
3472
  *
3199
- * This interface was referenced by `VariablesStep25`'s JSON-Schema definition
3473
+ * This interface was referenced by `VariablesStep27`'s JSON-Schema definition
3200
3474
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3201
3475
  */
3202
3476
  [k: string]: string;
@@ -3204,7 +3478,7 @@ export interface VariablesStep25 {
3204
3478
  /**
3205
3479
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3206
3480
  */
3207
- export interface SourceLocation25 {
3481
+ export interface SourceLocation27 {
3208
3482
  /**
3209
3483
  * 1-indexed line number in the source file where the step was detected.
3210
3484
  */
@@ -3222,7 +3496,7 @@ export interface SaveCookie2 {
3222
3496
  saveCookie: SaveCookie3;
3223
3497
  [k: string]: unknown;
3224
3498
  }
3225
- export interface Common26 {
3499
+ export interface Common28 {
3226
3500
  /**
3227
3501
  * JSON Schema for this object.
3228
3502
  */
@@ -3239,13 +3513,13 @@ export interface Common26 {
3239
3513
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3240
3514
  */
3241
3515
  unsafe?: boolean;
3242
- outputs?: OutputsStep26;
3243
- variables?: VariablesStep26;
3516
+ outputs?: OutputsStep28;
3517
+ variables?: VariablesStep28;
3244
3518
  /**
3245
3519
  * 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.
3246
3520
  */
3247
3521
  breakpoint?: boolean;
3248
- location?: SourceLocation26;
3522
+ location?: SourceLocation28;
3249
3523
  /**
3250
3524
  * 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.
3251
3525
  */
@@ -3255,11 +3529,11 @@ export interface Common26 {
3255
3529
  /**
3256
3530
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3257
3531
  */
3258
- export interface OutputsStep26 {
3532
+ export interface OutputsStep28 {
3259
3533
  /**
3260
3534
  * Runtime expression for a user-defined output value.
3261
3535
  *
3262
- * This interface was referenced by `OutputsStep26`'s JSON-Schema definition
3536
+ * This interface was referenced by `OutputsStep28`'s JSON-Schema definition
3263
3537
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3264
3538
  */
3265
3539
  [k: string]: string;
@@ -3267,11 +3541,11 @@ export interface OutputsStep26 {
3267
3541
  /**
3268
3542
  * Environment variables to set from user-defined expressions.
3269
3543
  */
3270
- export interface VariablesStep26 {
3544
+ export interface VariablesStep28 {
3271
3545
  /**
3272
3546
  * Runtime expression for a user-defined output value.
3273
3547
  *
3274
- * This interface was referenced by `VariablesStep26`'s JSON-Schema definition
3548
+ * This interface was referenced by `VariablesStep28`'s JSON-Schema definition
3275
3549
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3276
3550
  */
3277
3551
  [k: string]: string;
@@ -3279,7 +3553,7 @@ export interface VariablesStep26 {
3279
3553
  /**
3280
3554
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3281
3555
  */
3282
- export interface SourceLocation26 {
3556
+ export interface SourceLocation28 {
3283
3557
  /**
3284
3558
  * 1-indexed line number in the source file where the step was detected.
3285
3559
  */
@@ -3310,6 +3584,10 @@ export interface RecordDetailed1 {
3310
3584
  * If `true`, overwrites the existing recording at `path` if it exists.
3311
3585
  */
3312
3586
  overwrite?: "true" | "false";
3587
+ /**
3588
+ * Identifier for this recording. A later `stopRecord` step can target it by name (`stopRecord: "<name>"`), which is how you stop a specific recording when several overlap. Names must be unique among recordings that are active at the same time. If omitted, the recording is anonymous and is stopped LIFO by an untargeted `stopRecord`.
3589
+ */
3590
+ name?: string;
3313
3591
  engine?: RecordingEngine1;
3314
3592
  [k: string]: unknown;
3315
3593
  }
@@ -3327,7 +3605,7 @@ export interface RecordingEngineDetailed1 {
3327
3605
  */
3328
3606
  fps?: number;
3329
3607
  }
3330
- export interface Common27 {
3608
+ export interface Common29 {
3331
3609
  /**
3332
3610
  * JSON Schema for this object.
3333
3611
  */
@@ -3344,13 +3622,13 @@ export interface Common27 {
3344
3622
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3345
3623
  */
3346
3624
  unsafe?: boolean;
3347
- outputs?: OutputsStep27;
3348
- variables?: VariablesStep27;
3625
+ outputs?: OutputsStep29;
3626
+ variables?: VariablesStep29;
3349
3627
  /**
3350
3628
  * 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.
3351
3629
  */
3352
3630
  breakpoint?: boolean;
3353
- location?: SourceLocation27;
3631
+ location?: SourceLocation29;
3354
3632
  /**
3355
3633
  * 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.
3356
3634
  */
@@ -3360,11 +3638,11 @@ export interface Common27 {
3360
3638
  /**
3361
3639
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3362
3640
  */
3363
- export interface OutputsStep27 {
3641
+ export interface OutputsStep29 {
3364
3642
  /**
3365
3643
  * Runtime expression for a user-defined output value.
3366
3644
  *
3367
- * This interface was referenced by `OutputsStep27`'s JSON-Schema definition
3645
+ * This interface was referenced by `OutputsStep29`'s JSON-Schema definition
3368
3646
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3369
3647
  */
3370
3648
  [k: string]: string;
@@ -3372,11 +3650,11 @@ export interface OutputsStep27 {
3372
3650
  /**
3373
3651
  * Environment variables to set from user-defined expressions.
3374
3652
  */
3375
- export interface VariablesStep27 {
3653
+ export interface VariablesStep29 {
3376
3654
  /**
3377
3655
  * Runtime expression for a user-defined output value.
3378
3656
  *
3379
- * This interface was referenced by `VariablesStep27`'s JSON-Schema definition
3657
+ * This interface was referenced by `VariablesStep29`'s JSON-Schema definition
3380
3658
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3381
3659
  */
3382
3660
  [k: string]: string;
@@ -3384,7 +3662,7 @@ export interface VariablesStep27 {
3384
3662
  /**
3385
3663
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3386
3664
  */
3387
- export interface SourceLocation27 {
3665
+ export interface SourceLocation29 {
3388
3666
  /**
3389
3667
  * 1-indexed line number in the source file where the step was detected.
3390
3668
  */
@@ -3402,7 +3680,13 @@ export interface StopRecord2 {
3402
3680
  stopRecord: StopRecord3;
3403
3681
  [k: string]: unknown;
3404
3682
  }
3405
- export interface Common28 {
3683
+ export interface StopRecordDetailed1 {
3684
+ /**
3685
+ * Name of the recording to stop. Matches the `name` given to a `record` step.
3686
+ */
3687
+ name: string;
3688
+ }
3689
+ export interface Common30 {
3406
3690
  /**
3407
3691
  * JSON Schema for this object.
3408
3692
  */
@@ -3419,13 +3703,13 @@ export interface Common28 {
3419
3703
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3420
3704
  */
3421
3705
  unsafe?: boolean;
3422
- outputs?: OutputsStep28;
3423
- variables?: VariablesStep28;
3706
+ outputs?: OutputsStep30;
3707
+ variables?: VariablesStep30;
3424
3708
  /**
3425
3709
  * 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.
3426
3710
  */
3427
3711
  breakpoint?: boolean;
3428
- location?: SourceLocation28;
3712
+ location?: SourceLocation30;
3429
3713
  /**
3430
3714
  * 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.
3431
3715
  */
@@ -3435,11 +3719,11 @@ export interface Common28 {
3435
3719
  /**
3436
3720
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3437
3721
  */
3438
- export interface OutputsStep28 {
3722
+ export interface OutputsStep30 {
3439
3723
  /**
3440
3724
  * Runtime expression for a user-defined output value.
3441
3725
  *
3442
- * This interface was referenced by `OutputsStep28`'s JSON-Schema definition
3726
+ * This interface was referenced by `OutputsStep30`'s JSON-Schema definition
3443
3727
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3444
3728
  */
3445
3729
  [k: string]: string;
@@ -3447,11 +3731,11 @@ export interface OutputsStep28 {
3447
3731
  /**
3448
3732
  * Environment variables to set from user-defined expressions.
3449
3733
  */
3450
- export interface VariablesStep28 {
3734
+ export interface VariablesStep30 {
3451
3735
  /**
3452
3736
  * Runtime expression for a user-defined output value.
3453
3737
  *
3454
- * This interface was referenced by `VariablesStep28`'s JSON-Schema definition
3738
+ * This interface was referenced by `VariablesStep30`'s JSON-Schema definition
3455
3739
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3456
3740
  */
3457
3741
  [k: string]: string;
@@ -3459,7 +3743,7 @@ export interface VariablesStep28 {
3459
3743
  /**
3460
3744
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3461
3745
  */
3462
- export interface SourceLocation28 {
3746
+ export interface SourceLocation30 {
3463
3747
  /**
3464
3748
  * 1-indexed line number in the source file where the step was detected.
3465
3749
  */
@@ -3477,7 +3761,7 @@ export interface LoadVariables2 {
3477
3761
  loadVariables: LoadVariables3;
3478
3762
  [k: string]: unknown;
3479
3763
  }
3480
- export interface Common29 {
3764
+ export interface Common31 {
3481
3765
  /**
3482
3766
  * JSON Schema for this object.
3483
3767
  */
@@ -3494,13 +3778,13 @@ export interface Common29 {
3494
3778
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3495
3779
  */
3496
3780
  unsafe?: boolean;
3497
- outputs?: OutputsStep29;
3498
- variables?: VariablesStep29;
3781
+ outputs?: OutputsStep31;
3782
+ variables?: VariablesStep31;
3499
3783
  /**
3500
3784
  * 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.
3501
3785
  */
3502
3786
  breakpoint?: boolean;
3503
- location?: SourceLocation29;
3787
+ location?: SourceLocation31;
3504
3788
  /**
3505
3789
  * 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.
3506
3790
  */
@@ -3510,11 +3794,11 @@ export interface Common29 {
3510
3794
  /**
3511
3795
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3512
3796
  */
3513
- export interface OutputsStep29 {
3797
+ export interface OutputsStep31 {
3514
3798
  /**
3515
3799
  * Runtime expression for a user-defined output value.
3516
3800
  *
3517
- * This interface was referenced by `OutputsStep29`'s JSON-Schema definition
3801
+ * This interface was referenced by `OutputsStep31`'s JSON-Schema definition
3518
3802
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3519
3803
  */
3520
3804
  [k: string]: string;
@@ -3522,11 +3806,11 @@ export interface OutputsStep29 {
3522
3806
  /**
3523
3807
  * Environment variables to set from user-defined expressions.
3524
3808
  */
3525
- export interface VariablesStep29 {
3809
+ export interface VariablesStep31 {
3526
3810
  /**
3527
3811
  * Runtime expression for a user-defined output value.
3528
3812
  *
3529
- * This interface was referenced by `VariablesStep29`'s JSON-Schema definition
3813
+ * This interface was referenced by `VariablesStep31`'s JSON-Schema definition
3530
3814
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3531
3815
  */
3532
3816
  [k: string]: string;
@@ -3534,7 +3818,7 @@ export interface VariablesStep29 {
3534
3818
  /**
3535
3819
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3536
3820
  */
3537
- export interface SourceLocation29 {
3821
+ export interface SourceLocation31 {
3538
3822
  /**
3539
3823
  * 1-indexed line number in the source file where the step was detected.
3540
3824
  */
@@ -3570,7 +3854,7 @@ export interface DragAndDrop3 {
3570
3854
  duration?: number;
3571
3855
  [k: string]: unknown;
3572
3856
  }
3573
- export interface Common30 {
3857
+ export interface Common32 {
3574
3858
  /**
3575
3859
  * JSON Schema for this object.
3576
3860
  */
@@ -3587,13 +3871,13 @@ export interface Common30 {
3587
3871
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3588
3872
  */
3589
3873
  unsafe?: boolean;
3590
- outputs?: OutputsStep30;
3591
- variables?: VariablesStep30;
3874
+ outputs?: OutputsStep32;
3875
+ variables?: VariablesStep32;
3592
3876
  /**
3593
3877
  * 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.
3594
3878
  */
3595
3879
  breakpoint?: boolean;
3596
- location?: SourceLocation30;
3880
+ location?: SourceLocation32;
3597
3881
  /**
3598
3882
  * 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.
3599
3883
  */
@@ -3603,11 +3887,11 @@ export interface Common30 {
3603
3887
  /**
3604
3888
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3605
3889
  */
3606
- export interface OutputsStep30 {
3890
+ export interface OutputsStep32 {
3607
3891
  /**
3608
3892
  * Runtime expression for a user-defined output value.
3609
3893
  *
3610
- * This interface was referenced by `OutputsStep30`'s JSON-Schema definition
3894
+ * This interface was referenced by `OutputsStep32`'s JSON-Schema definition
3611
3895
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3612
3896
  */
3613
3897
  [k: string]: string;
@@ -3615,11 +3899,11 @@ export interface OutputsStep30 {
3615
3899
  /**
3616
3900
  * Environment variables to set from user-defined expressions.
3617
3901
  */
3618
- export interface VariablesStep30 {
3902
+ export interface VariablesStep32 {
3619
3903
  /**
3620
3904
  * Runtime expression for a user-defined output value.
3621
3905
  *
3622
- * This interface was referenced by `VariablesStep30`'s JSON-Schema definition
3906
+ * This interface was referenced by `VariablesStep32`'s JSON-Schema definition
3623
3907
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3624
3908
  */
3625
3909
  [k: string]: string;
@@ -3627,7 +3911,7 @@ export interface VariablesStep30 {
3627
3911
  /**
3628
3912
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3629
3913
  */
3630
- export interface SourceLocation30 {
3914
+ export interface SourceLocation32 {
3631
3915
  /**
3632
3916
  * 1-indexed line number in the source file where the step was detected.
3633
3917
  */
@@ -3645,7 +3929,7 @@ export interface LoadCookie2 {
3645
3929
  loadCookie: LoadCookie3;
3646
3930
  [k: string]: unknown;
3647
3931
  }
3648
- export interface Common31 {
3932
+ export interface Common33 {
3649
3933
  /**
3650
3934
  * JSON Schema for this object.
3651
3935
  */
@@ -3662,13 +3946,13 @@ export interface Common31 {
3662
3946
  * Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
3663
3947
  */
3664
3948
  unsafe?: boolean;
3665
- outputs?: OutputsStep31;
3666
- variables?: VariablesStep31;
3949
+ outputs?: OutputsStep33;
3950
+ variables?: VariablesStep33;
3667
3951
  /**
3668
3952
  * 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.
3669
3953
  */
3670
3954
  breakpoint?: boolean;
3671
- location?: SourceLocation31;
3955
+ location?: SourceLocation33;
3672
3956
  /**
3673
3957
  * 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.
3674
3958
  */
@@ -3678,11 +3962,11 @@ export interface Common31 {
3678
3962
  /**
3679
3963
  * Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
3680
3964
  */
3681
- export interface OutputsStep31 {
3965
+ export interface OutputsStep33 {
3682
3966
  /**
3683
3967
  * Runtime expression for a user-defined output value.
3684
3968
  *
3685
- * This interface was referenced by `OutputsStep31`'s JSON-Schema definition
3969
+ * This interface was referenced by `OutputsStep33`'s JSON-Schema definition
3686
3970
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3687
3971
  */
3688
3972
  [k: string]: string;
@@ -3690,11 +3974,11 @@ export interface OutputsStep31 {
3690
3974
  /**
3691
3975
  * Environment variables to set from user-defined expressions.
3692
3976
  */
3693
- export interface VariablesStep31 {
3977
+ export interface VariablesStep33 {
3694
3978
  /**
3695
3979
  * Runtime expression for a user-defined output value.
3696
3980
  *
3697
- * This interface was referenced by `VariablesStep31`'s JSON-Schema definition
3981
+ * This interface was referenced by `VariablesStep33`'s JSON-Schema definition
3698
3982
  * via the `patternProperty` "^[A-Za-z0-9_]+$".
3699
3983
  */
3700
3984
  [k: string]: string;
@@ -3702,7 +3986,7 @@ export interface VariablesStep31 {
3702
3986
  /**
3703
3987
  * Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
3704
3988
  */
3705
- export interface SourceLocation31 {
3989
+ export interface SourceLocation33 {
3706
3990
  /**
3707
3991
  * 1-indexed line number in the source file where the step was detected.
3708
3992
  */