automation_model 1.0.691-dev → 1.0.691-stage

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 (56) hide show
  1. package/README.md +4 -1
  2. package/lib/analyze_helper.js.map +1 -1
  3. package/lib/api.d.ts +0 -1
  4. package/lib/api.js.map +1 -1
  5. package/lib/auto_page.d.ts +4 -2
  6. package/lib/auto_page.js +181 -87
  7. package/lib/auto_page.js.map +1 -1
  8. package/lib/browser_manager.js +36 -10
  9. package/lib/browser_manager.js.map +1 -1
  10. package/lib/bruno.d.ts +1 -0
  11. package/lib/bruno.js +84 -4
  12. package/lib/bruno.js.map +1 -1
  13. package/lib/command_common.d.ts +1 -1
  14. package/lib/command_common.js +18 -1
  15. package/lib/command_common.js.map +1 -1
  16. package/lib/date_time.js.map +1 -1
  17. package/lib/drawRect.js.map +1 -1
  18. package/lib/environment.d.ts +1 -0
  19. package/lib/environment.js +1 -0
  20. package/lib/environment.js.map +1 -1
  21. package/lib/error-messages.js.map +1 -1
  22. package/lib/file_checker.js +129 -25
  23. package/lib/file_checker.js.map +1 -1
  24. package/lib/find_function.js.map +1 -1
  25. package/lib/init_browser.js +4 -4
  26. package/lib/init_browser.js.map +1 -1
  27. package/lib/locate_element.js.map +1 -1
  28. package/lib/locator.d.ts +1 -0
  29. package/lib/locator.js +10 -3
  30. package/lib/locator.js.map +1 -1
  31. package/lib/locator_log.js.map +1 -1
  32. package/lib/network.d.ts +2 -0
  33. package/lib/network.js +232 -4
  34. package/lib/network.js.map +1 -1
  35. package/lib/route.d.ts +21 -0
  36. package/lib/route.js +392 -0
  37. package/lib/route.js.map +1 -0
  38. package/lib/scripts/axe.mini.js +3 -3
  39. package/lib/snapshot_validation.d.ts +5 -1
  40. package/lib/snapshot_validation.js +165 -39
  41. package/lib/snapshot_validation.js.map +1 -1
  42. package/lib/stable_browser.d.ts +60 -25
  43. package/lib/stable_browser.js +1025 -195
  44. package/lib/stable_browser.js.map +1 -1
  45. package/lib/table.d.ts +9 -7
  46. package/lib/table.js +82 -12
  47. package/lib/table.js.map +1 -1
  48. package/lib/table_analyze.js.map +1 -1
  49. package/lib/table_helper.js.map +1 -1
  50. package/lib/test_context.d.ts +1 -0
  51. package/lib/test_context.js +1 -0
  52. package/lib/test_context.js.map +1 -1
  53. package/lib/utils.d.ts +3 -2
  54. package/lib/utils.js +78 -59
  55. package/lib/utils.js.map +1 -1
  56. package/package.json +14 -8
@@ -10,7 +10,7 @@ import { getDateTimeValue } from "./date_time.js";
10
10
  import drawRectangle from "./drawRect.js";
11
11
  //import { closeUnexpectedPopups } from "./popups.js";
12
12
  import { getTableCells, getTableData } from "./table_analyze.js";
13
- import { _convertToRegexQuery, _copyContext, _fixLocatorUsingParams, _fixUsingParams, _getServerUrl, extractStepExampleParameters, KEYBOARD_EVENTS, maskValue, replaceWithLocalTestData, scrollPageToLoadLazyElements, unEscapeString, _getDataFile, testForRegex, performAction, } from "./utils.js";
13
+ import { _convertToRegexQuery, _copyContext, _fixLocatorUsingParams, _fixUsingParams, _getServerUrl, extractStepExampleParameters, KEYBOARD_EVENTS, maskValue, replaceWithLocalTestData, scrollPageToLoadLazyElements, unEscapeString, _getDataFile, testForRegex, performAction, _getTestData, } from "./utils.js";
14
14
  import csv from "csv-parser";
15
15
  import { Readable } from "node:stream";
16
16
  import readline from "readline";
@@ -19,27 +19,33 @@ import { getTestData } from "./auto_page.js";
19
19
  import { locate_element } from "./locate_element.js";
20
20
  import { randomUUID } from "crypto";
21
21
  import { _commandError, _commandFinally, _preCommand, _validateSelectors, _screenshot, _reportToWorld, } from "./command_common.js";
22
- import { registerDownloadEvent, registerNetworkEvents } from "./network.js";
22
+ import { networkAfterStep, networkBeforeStep, registerDownloadEvent, registerNetworkEvents } from "./network.js";
23
23
  import { LocatorLog } from "./locator_log.js";
24
24
  import axios from "axios";
25
25
  import { _findCellArea, findElementsInArea } from "./table_helper.js";
26
+ import { highlightSnapshot, snapshotValidation } from "./snapshot_validation.js";
27
+ import { loadBrunoParams } from "./bruno.js";
28
+ import { registerAfterStepRoutes, registerBeforeStepRoutes } from "./route.js";
26
29
  export const Types = {
27
30
  CLICK: "click_element",
28
31
  WAIT_ELEMENT: "wait_element",
29
32
  NAVIGATE: "navigate",
33
+ GO_BACK: "go_back",
34
+ GO_FORWARD: "go_forward",
30
35
  FILL: "fill_element",
31
- EXECUTE: "execute_page_method",
32
- OPEN: "open_environment",
36
+ EXECUTE: "execute_page_method", //
37
+ OPEN: "open_environment", //
33
38
  COMPLETE: "step_complete",
34
39
  ASK: "information_needed",
35
- GET_PAGE_STATUS: "get_page_status",
36
- CLICK_ROW_ACTION: "click_row_action",
40
+ GET_PAGE_STATUS: "get_page_status", ///
41
+ CLICK_ROW_ACTION: "click_row_action", //
37
42
  VERIFY_ELEMENT_CONTAINS_TEXT: "verify_element_contains_text",
38
43
  VERIFY_PAGE_CONTAINS_TEXT: "verify_page_contains_text",
39
44
  VERIFY_PAGE_CONTAINS_NO_TEXT: "verify_page_contains_no_text",
40
45
  ANALYZE_TABLE: "analyze_table",
41
- SELECT: "select_combobox",
46
+ SELECT: "select_combobox", //
42
47
  VERIFY_PAGE_PATH: "verify_page_path",
48
+ VERIFY_PAGE_TITLE: "verify_page_title",
43
49
  TYPE_PRESS: "type_press",
44
50
  PRESS: "press_key",
45
51
  HOVER: "hover_element",
@@ -58,6 +64,12 @@ export const Types = {
58
64
  VERIFY_TEXT_WITH_RELATION: "verify_text_with_relation",
59
65
  BRUNO: "bruno",
60
66
  VERIFY_FILE_EXISTS: "verify_file_exists",
67
+ SET_INPUT_FILES: "set_input_files",
68
+ SNAPSHOT_VALIDATION: "snapshot_validation",
69
+ REPORT_COMMAND: "report_command",
70
+ STEP_COMPLETE: "step_complete",
71
+ SLEEP: "sleep",
72
+ CONDITIONAL_WAIT: "conditional_wait",
61
73
  };
62
74
  export const apps = {};
63
75
  const formatElementName = (elementName) => {
@@ -69,6 +81,7 @@ class StableBrowser {
69
81
  logger;
70
82
  context;
71
83
  world;
84
+ fastMode;
72
85
  project_path = null;
73
86
  webLogFile = null;
74
87
  networkLogger = null;
@@ -77,12 +90,14 @@ class StableBrowser {
77
90
  tags = null;
78
91
  isRecording = false;
79
92
  initSnapshotTaken = false;
80
- constructor(browser, page, logger = null, context = null, world = null) {
93
+ abortedExecution = false;
94
+ constructor(browser, page, logger = null, context = null, world = null, fastMode = false) {
81
95
  this.browser = browser;
82
96
  this.page = page;
83
97
  this.logger = logger;
84
98
  this.context = context;
85
99
  this.world = world;
100
+ this.fastMode = fastMode;
86
101
  if (!this.logger) {
87
102
  this.logger = console;
88
103
  }
@@ -111,6 +126,19 @@ class StableBrowser {
111
126
  context.pages = [this.page];
112
127
  const logFolder = path.join(this.project_path, "logs", "web");
113
128
  this.world = world;
129
+ if (this.configuration && this.configuration.fastMode === true) {
130
+ this.fastMode = true;
131
+ }
132
+ if (process.env.FAST_MODE === "true") {
133
+ // console.log("Fast mode enabled from environment variable");
134
+ this.fastMode = true;
135
+ }
136
+ if (process.env.FAST_MODE === "false") {
137
+ this.fastMode = false;
138
+ }
139
+ if (this.context) {
140
+ this.context.fastMode = this.fastMode;
141
+ }
114
142
  this.registerEventListeners(this.context);
115
143
  registerNetworkEvents(this.world, this, this.context, this.page);
116
144
  registerDownloadEvent(this.page, this.world, this.context);
@@ -121,6 +149,9 @@ class StableBrowser {
121
149
  if (!context.pageLoading) {
122
150
  context.pageLoading = { status: false };
123
151
  }
152
+ if (this.configuration && this.configuration.acceptDialog && this.page) {
153
+ this.page.on("dialog", (dialog) => dialog.accept());
154
+ }
124
155
  context.playContext.on("page", async function (page) {
125
156
  if (this.configuration && this.configuration.closePopups === true) {
126
157
  console.log("close unexpected popups");
@@ -129,6 +160,14 @@ class StableBrowser {
129
160
  }
130
161
  context.pageLoading.status = true;
131
162
  this.page = page;
163
+ try {
164
+ if (this.configuration && this.configuration.acceptDialog) {
165
+ await page.on("dialog", (dialog) => dialog.accept());
166
+ }
167
+ }
168
+ catch (error) {
169
+ console.error("Error on dialog accept registration", error);
170
+ }
132
171
  context.page = page;
133
172
  context.pages.push(page);
134
173
  registerNetworkEvents(this.world, this, context, this.page);
@@ -180,7 +219,9 @@ class StableBrowser {
180
219
  if (newContextCreated) {
181
220
  this.registerEventListeners(this.context);
182
221
  await this.goto(this.context.environment.baseUrl);
183
- await this.waitForPageLoad();
222
+ if (!this.fastMode) {
223
+ await this.waitForPageLoad();
224
+ }
184
225
  }
185
226
  }
186
227
  async switchTab(tabTitleOrIndex) {
@@ -274,6 +315,7 @@ class StableBrowser {
274
315
  if (!url) {
275
316
  throw new Error("url is null, verify that the environment file is correct");
276
317
  }
318
+ url = await this._replaceWithLocalData(url, this.world);
277
319
  if (!url.startsWith("http")) {
278
320
  url = "https://" + url;
279
321
  }
@@ -305,6 +347,64 @@ class StableBrowser {
305
347
  await _commandFinally(state, this);
306
348
  }
307
349
  }
350
+ async goBack(options, world = null) {
351
+ const state = {
352
+ value: "",
353
+ world: world,
354
+ type: Types.GO_BACK,
355
+ text: `Browser navigate back`,
356
+ operation: "goBack",
357
+ log: "***** navigate back *****\n",
358
+ info: {},
359
+ locate: false,
360
+ scroll: false,
361
+ screenshot: false,
362
+ highlight: false,
363
+ };
364
+ try {
365
+ await _preCommand(state, this);
366
+ await this.page.goBack({
367
+ waitUntil: "load",
368
+ });
369
+ await _screenshot(state, this);
370
+ }
371
+ catch (error) {
372
+ console.error("Error on goBack", error);
373
+ _commandError(state, error, this);
374
+ }
375
+ finally {
376
+ await _commandFinally(state, this);
377
+ }
378
+ }
379
+ async goForward(options, world = null) {
380
+ const state = {
381
+ value: "",
382
+ world: world,
383
+ type: Types.GO_FORWARD,
384
+ text: `Browser navigate forward`,
385
+ operation: "goForward",
386
+ log: "***** navigate forward *****\n",
387
+ info: {},
388
+ locate: false,
389
+ scroll: false,
390
+ screenshot: false,
391
+ highlight: false,
392
+ };
393
+ try {
394
+ await _preCommand(state, this);
395
+ await this.page.goForward({
396
+ waitUntil: "load",
397
+ });
398
+ await _screenshot(state, this);
399
+ }
400
+ catch (error) {
401
+ console.error("Error on goForward", error);
402
+ _commandError(state, error, this);
403
+ }
404
+ finally {
405
+ await _commandFinally(state, this);
406
+ }
407
+ }
308
408
  async _getLocator(locator, scope, _params) {
309
409
  locator = _fixLocatorUsingParams(locator, _params);
310
410
  // locator = await this._replaceWithLocalData(locator);
@@ -418,7 +518,7 @@ class StableBrowser {
418
518
  }
419
519
  return { elementCount: tagCount, randomToken };
420
520
  }
421
- async _collectLocatorInformation(selectorHierarchy, index = 0, scope, foundLocators, _params, info, visibleOnly = true, allowDisabled = false, element_name = null) {
521
+ async _collectLocatorInformation(selectorHierarchy, index = 0, scope, foundLocators, _params, info, visibleOnly = true, allowDisabled = false, element_name = null, logErrors = false) {
422
522
  if (!info) {
423
523
  info = {};
424
524
  }
@@ -430,14 +530,13 @@ class StableBrowser {
430
530
  info.locatorLog = new LocatorLog(selectorHierarchy);
431
531
  }
432
532
  let locatorSearch = selectorHierarchy[index];
433
- let originalLocatorSearch = "";
434
533
  try {
435
- originalLocatorSearch = _fixUsingParams(JSON.stringify(locatorSearch), _params);
436
- locatorSearch = JSON.parse(originalLocatorSearch);
534
+ locatorSearch = _fixLocatorUsingParams(locatorSearch, _params);
437
535
  }
438
536
  catch (e) {
439
537
  console.error(e);
440
538
  }
539
+ let originalLocatorSearch = JSON.stringify(locatorSearch);
441
540
  //info.log += "searching for locator " + JSON.stringify(locatorSearch) + "\n";
442
541
  let locator = null;
443
542
  if (locatorSearch.climb && locatorSearch.climb >= 0) {
@@ -485,7 +584,7 @@ class StableBrowser {
485
584
  }
486
585
  return;
487
586
  }
488
- if (info.locatorLog && count === 0) {
587
+ if (info.locatorLog && count === 0 && logErrors) {
489
588
  info.locatorLog.setLocatorSearchStatus(originalLocatorSearch, "NOT_FOUND");
490
589
  }
491
590
  for (let j = 0; j < count; j++) {
@@ -500,7 +599,7 @@ class StableBrowser {
500
599
  info.locatorLog.setLocatorSearchStatus(originalLocatorSearch, "FOUND");
501
600
  }
502
601
  }
503
- else {
602
+ else if (logErrors) {
504
603
  info.failCause.visible = visible;
505
604
  info.failCause.enabled = enabled;
506
605
  if (!info.printMessages) {
@@ -592,7 +691,7 @@ class StableBrowser {
592
691
  let element = await this._locate_internal(selectors, info, _params, timeout, allowDisabled);
593
692
  if (!element.rerun) {
594
693
  const randomToken = Math.random().toString(36).substring(7);
595
- element.evaluate((el, randomToken) => {
694
+ await element.evaluate((el, randomToken) => {
596
695
  el.setAttribute("data-blinq-id-" + randomToken, "");
597
696
  }, randomToken);
598
697
  // if (element._frame) {
@@ -645,7 +744,7 @@ class StableBrowser {
645
744
  break;
646
745
  }
647
746
  catch (error) {
648
- console.error("frame not found " + frameLocator.css);
747
+ // console.error("frame not found " + frameLocator.css);
649
748
  }
650
749
  }
651
750
  }
@@ -841,7 +940,7 @@ class StableBrowser {
841
940
  }
842
941
  throw new Error("failed to locate first element no elements found, " + info.log);
843
942
  }
844
- async _scanLocatorsGroup(locatorsGroup, scope, _params, info, visibleOnly, allowDisabled = false, element_name) {
943
+ async _scanLocatorsGroup(locatorsGroup, scope, _params, info, visibleOnly, allowDisabled = false, element_name, logErrors = false) {
845
944
  let foundElements = [];
846
945
  const result = {
847
946
  foundElements: foundElements,
@@ -860,7 +959,9 @@ class StableBrowser {
860
959
  await this._collectLocatorInformation(locatorsGroup, i, this.page, foundLocators, _params, info, visibleOnly, allowDisabled, element_name);
861
960
  }
862
961
  catch (e) {
863
- this.logger.info("unable to use locator (second try) " + JSON.stringify(locatorsGroup[i]));
962
+ if (logErrors) {
963
+ this.logger.info("unable to use locator (second try) " + JSON.stringify(locatorsGroup[i]));
964
+ }
864
965
  }
865
966
  }
866
967
  if (foundLocators.length === 1) {
@@ -901,7 +1002,7 @@ class StableBrowser {
901
1002
  });
902
1003
  result.locatorIndex = i;
903
1004
  }
904
- else {
1005
+ else if (logErrors) {
905
1006
  info.failCause.foundMultiple = true;
906
1007
  if (info.locatorLog) {
907
1008
  info.locatorLog.setLocatorSearchStatus(JSON.stringify(locatorsGroup[i]), "FOUND_NOT_UNIQUE");
@@ -1024,7 +1125,9 @@ class StableBrowser {
1024
1125
  try {
1025
1126
  await _preCommand(state, this);
1026
1127
  await performAction("click", state.element, options, this, state, _params);
1027
- await this.waitForPageLoad();
1128
+ if (!this.fastMode) {
1129
+ await this.waitForPageLoad();
1130
+ }
1028
1131
  return state.info;
1029
1132
  }
1030
1133
  catch (e) {
@@ -1087,7 +1190,7 @@ class StableBrowser {
1087
1190
  // if (world && world.screenshot && !world.screenshotPath) {
1088
1191
  // console.log(`Highlighting while running from recorder`);
1089
1192
  await this._highlightElements(state.element);
1090
- await state.element.setChecked(checked);
1193
+ await state.element.setChecked(checked, { timeout: 2000 });
1091
1194
  await new Promise((resolve) => setTimeout(resolve, 1000));
1092
1195
  // await this._unHighlightElements(element);
1093
1196
  // }
@@ -1099,11 +1202,28 @@ class StableBrowser {
1099
1202
  this.logger.info("element did not change its state, ignoring...");
1100
1203
  }
1101
1204
  else {
1205
+ await new Promise((resolve) => setTimeout(resolve, 1000));
1102
1206
  //await this.closeUnexpectedPopups();
1103
1207
  state.info.log += "setCheck failed, will try again" + "\n";
1104
- state.element = await this._locate(selectors, state.info, _params);
1105
- await state.element.setChecked(checked, { timeout: 5000, force: true });
1106
- await new Promise((resolve) => setTimeout(resolve, 1000));
1208
+ state.element_found = false;
1209
+ try {
1210
+ state.element = await this._locate(selectors, state.info, _params, 100);
1211
+ state.element_found = true;
1212
+ // check the check state
1213
+ }
1214
+ catch (error) {
1215
+ // element dismissed
1216
+ }
1217
+ if (state.element_found) {
1218
+ const isChecked = await state.element.isChecked();
1219
+ if (isChecked !== checked) {
1220
+ // perform click
1221
+ await state.element.click({ timeout: 2000, force: true });
1222
+ }
1223
+ else {
1224
+ this.logger.info(`Element ${selectors.element_name} is already in the desired state (${checked})`);
1225
+ }
1226
+ }
1107
1227
  }
1108
1228
  }
1109
1229
  await this.waitForPageLoad();
@@ -1399,7 +1519,9 @@ class StableBrowser {
1399
1519
  await new Promise((resolve) => setTimeout(resolve, 500));
1400
1520
  }
1401
1521
  }
1522
+ //if (!this.fastMode) {
1402
1523
  await _screenshot(state, this);
1524
+ //}
1403
1525
  if (enter === true) {
1404
1526
  await new Promise((resolve) => setTimeout(resolve, 2000));
1405
1527
  await this.page.keyboard.press("Enter");
@@ -1459,6 +1581,41 @@ class StableBrowser {
1459
1581
  await _commandFinally(state, this);
1460
1582
  }
1461
1583
  }
1584
+ async setInputFiles(selectors, files, _params = null, options = {}, world = null) {
1585
+ const state = {
1586
+ selectors,
1587
+ _params,
1588
+ files,
1589
+ value: '"' + files.join('", "') + '"',
1590
+ options,
1591
+ world,
1592
+ type: Types.SET_INPUT_FILES,
1593
+ text: `Set input files`,
1594
+ _text: `Set input files on ${selectors.element_name}`,
1595
+ operation: "setInputFiles",
1596
+ log: "***** set input files " + selectors.element_name + " *****\n",
1597
+ };
1598
+ const uploadsFolder = this.configuration.uploadsFolder ?? "data/uploads";
1599
+ try {
1600
+ await _preCommand(state, this);
1601
+ for (let i = 0; i < files.length; i++) {
1602
+ const file = files[i];
1603
+ const filePath = path.join(uploadsFolder, file);
1604
+ if (!fs.existsSync(filePath)) {
1605
+ throw new Error(`File not found: ${filePath}`);
1606
+ }
1607
+ state.files[i] = filePath;
1608
+ }
1609
+ await state.element.setInputFiles(files);
1610
+ return state.info;
1611
+ }
1612
+ catch (e) {
1613
+ await _commandError(state, e, this);
1614
+ }
1615
+ finally {
1616
+ await _commandFinally(state, this);
1617
+ }
1618
+ }
1462
1619
  async getText(selectors, _params = null, options = {}, info = {}, world = null) {
1463
1620
  return await this._getText(selectors, 0, _params, options, info, world);
1464
1621
  }
@@ -1652,6 +1809,83 @@ class StableBrowser {
1652
1809
  await _commandFinally(state, this);
1653
1810
  }
1654
1811
  }
1812
+ async snapshotValidation(frameSelectors, referanceSnapshot, _params = null, options = {}, world = null) {
1813
+ const timeout = this._getFindElementTimeout(options);
1814
+ const startTime = Date.now();
1815
+ const state = {
1816
+ _params,
1817
+ value: referanceSnapshot,
1818
+ options,
1819
+ world,
1820
+ locate: false,
1821
+ scroll: false,
1822
+ screenshot: true,
1823
+ highlight: false,
1824
+ type: Types.SNAPSHOT_VALIDATION,
1825
+ text: `verify snapshot: ${referanceSnapshot}`,
1826
+ operation: "snapshotValidation",
1827
+ log: "***** verify snapshot *****\n",
1828
+ };
1829
+ if (!referanceSnapshot) {
1830
+ throw new Error("referanceSnapshot is null");
1831
+ }
1832
+ let text = null;
1833
+ if (fs.existsSync(path.join(this.project_path, "data", "snapshots", this.context.environment.name, referanceSnapshot + ".yml"))) {
1834
+ text = fs.readFileSync(path.join(this.project_path, "data", "snapshots", this.context.environment.name, referanceSnapshot + ".yml"), "utf8");
1835
+ }
1836
+ else if (fs.existsSync(path.join(this.project_path, "data", "snapshots", this.context.environment.name, referanceSnapshot + ".yaml"))) {
1837
+ text = fs.readFileSync(path.join(this.project_path, "data", "snapshots", this.context.environment.name, referanceSnapshot + ".yaml"), "utf8");
1838
+ }
1839
+ else if (referanceSnapshot.startsWith("yaml:")) {
1840
+ text = referanceSnapshot.substring(5);
1841
+ }
1842
+ else {
1843
+ throw new Error("referenceSnapshot file not found: " + referanceSnapshot);
1844
+ }
1845
+ state.text = text;
1846
+ const newValue = await this._replaceWithLocalData(text, world);
1847
+ await _preCommand(state, this);
1848
+ let foundObj = null;
1849
+ try {
1850
+ let matchResult = null;
1851
+ while (Date.now() - startTime < timeout) {
1852
+ try {
1853
+ let scope = null;
1854
+ if (!frameSelectors) {
1855
+ scope = this.page;
1856
+ }
1857
+ else {
1858
+ scope = await this._findFrameScope(frameSelectors, timeout, state.info);
1859
+ }
1860
+ const snapshot = await scope.locator("body").ariaSnapshot({ timeout });
1861
+ matchResult = snapshotValidation(snapshot, newValue, referanceSnapshot);
1862
+ if (matchResult.errorLine !== -1) {
1863
+ throw new Error("Snapshot validation failed at line " + matchResult.errorLineText);
1864
+ }
1865
+ // highlight and screenshot
1866
+ try {
1867
+ await await highlightSnapshot(newValue, scope);
1868
+ await _screenshot(state, this);
1869
+ }
1870
+ catch (e) { }
1871
+ return state.info;
1872
+ }
1873
+ catch (e) {
1874
+ // Log error but continue retrying until timeout is reached
1875
+ //this.logger.warn("Retrying snapshot validation due to: " + e.message);
1876
+ }
1877
+ await new Promise((resolve) => setTimeout(resolve, 2000)); // Wait 1 second before retrying
1878
+ }
1879
+ throw new Error("No snapshot match " + matchResult?.errorLineText);
1880
+ }
1881
+ catch (e) {
1882
+ await _commandError(state, e, this);
1883
+ throw e;
1884
+ }
1885
+ finally {
1886
+ await _commandFinally(state, this);
1887
+ }
1888
+ }
1655
1889
  async waitForUserInput(message, world = null) {
1656
1890
  if (!message) {
1657
1891
  message = "# Wait for user input. Press any key to continue";
@@ -1792,12 +2026,7 @@ class StableBrowser {
1792
2026
  }
1793
2027
  }
1794
2028
  getTestData(world = null) {
1795
- const dataFile = _getDataFile(world, this.context, this);
1796
- let data = {};
1797
- if (fs.existsSync(dataFile)) {
1798
- data = JSON.parse(fs.readFileSync(dataFile, "utf8"));
1799
- }
1800
- return data;
2029
+ return _getTestData(world, this.context, this);
1801
2030
  }
1802
2031
  async _screenShot(options = {}, world = null, info = null) {
1803
2032
  // collect url/path/title
@@ -1986,6 +2215,95 @@ class StableBrowser {
1986
2215
  state.value = await state.element.getAttribute(attribute);
1987
2216
  break;
1988
2217
  }
2218
+ if (options !== null) {
2219
+ if (options.regex && options.regex !== "") {
2220
+ // Construct a regex pattern from the provided string
2221
+ const regex = options.regex.slice(1, -1);
2222
+ const regexPattern = new RegExp(regex, "g");
2223
+ const matches = state.value.match(regexPattern);
2224
+ if (matches) {
2225
+ let newValue = "";
2226
+ for (const match of matches) {
2227
+ newValue += match;
2228
+ }
2229
+ state.value = newValue;
2230
+ }
2231
+ }
2232
+ if (options.trimSpaces && options.trimSpaces === true) {
2233
+ state.value = state.value.trim();
2234
+ }
2235
+ }
2236
+ state.info.value = state.value;
2237
+ this.setTestData({ [variable]: state.value }, world);
2238
+ this.logger.info("set test data: " + variable + "=" + state.value);
2239
+ // await new Promise((resolve) => setTimeout(resolve, 500));
2240
+ return state.info;
2241
+ }
2242
+ catch (e) {
2243
+ await _commandError(state, e, this);
2244
+ }
2245
+ finally {
2246
+ await _commandFinally(state, this);
2247
+ }
2248
+ }
2249
+ async extractProperty(selectors, property, variable, _params = null, options = {}, world = null) {
2250
+ const state = {
2251
+ selectors,
2252
+ _params,
2253
+ property,
2254
+ variable,
2255
+ options,
2256
+ world,
2257
+ type: Types.EXTRACT_PROPERTY,
2258
+ text: `Extract property from element`,
2259
+ _text: `Extract property ${property} from ${selectors.element_name}`,
2260
+ operation: "extractProperty",
2261
+ log: "***** extract property " + property + " from " + selectors.element_name + " *****\n",
2262
+ allowDisabled: true,
2263
+ };
2264
+ await new Promise((resolve) => setTimeout(resolve, 2000));
2265
+ try {
2266
+ await _preCommand(state, this);
2267
+ switch (property) {
2268
+ case "inner_text":
2269
+ state.value = await state.element.innerText();
2270
+ break;
2271
+ case "href":
2272
+ state.value = await state.element.getAttribute("href");
2273
+ break;
2274
+ case "value":
2275
+ state.value = await state.element.inputValue();
2276
+ break;
2277
+ case "text":
2278
+ state.value = await state.element.textContent();
2279
+ break;
2280
+ default:
2281
+ if (property.startsWith("dataset.")) {
2282
+ const dataAttribute = property.substring(8);
2283
+ state.value = String(await state.element.getAttribute(`data-${dataAttribute}`)) || "";
2284
+ }
2285
+ else {
2286
+ state.value = String(await state.element.evaluate((element, prop) => element[prop], property));
2287
+ }
2288
+ }
2289
+ if (options !== null) {
2290
+ if (options.regex && options.regex !== "") {
2291
+ // Construct a regex pattern from the provided string
2292
+ const regex = options.regex.slice(1, -1);
2293
+ const regexPattern = new RegExp(regex, "g");
2294
+ const matches = state.value.match(regexPattern);
2295
+ if (matches) {
2296
+ let newValue = "";
2297
+ for (const match of matches) {
2298
+ newValue += match;
2299
+ }
2300
+ state.value = newValue;
2301
+ }
2302
+ }
2303
+ if (options.trimSpaces && options.trimSpaces === true) {
2304
+ state.value = state.value.trim();
2305
+ }
2306
+ }
1989
2307
  state.info.value = state.value;
1990
2308
  this.setTestData({ [variable]: state.value }, world);
1991
2309
  this.logger.info("set test data: " + variable + "=" + state.value);
@@ -2051,14 +2369,167 @@ class StableBrowser {
2051
2369
  let regex;
2052
2370
  if (expectedValue.startsWith("/") && expectedValue.endsWith("/")) {
2053
2371
  const patternBody = expectedValue.slice(1, -1);
2054
- regex = new RegExp(patternBody, "g");
2372
+ const processedPattern = patternBody.replace(/\n/g, ".*");
2373
+ regex = new RegExp(processedPattern, "gs");
2374
+ state.info.regex = true;
2055
2375
  }
2056
2376
  else {
2057
2377
  const escapedPattern = expectedValue.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2058
2378
  regex = new RegExp(escapedPattern, "g");
2059
2379
  }
2060
- if (!val.match(regex)) {
2061
- let errorMessage = `The ${attribute} attribute has a value of "${val}", but the expected value is "${expectedValue}"`;
2380
+ if (attribute === "innerText") {
2381
+ if (state.info.regex) {
2382
+ if (!regex.test(val)) {
2383
+ let errorMessage = `The ${attribute} attribute has a value of "${val}", but the expected value is "${expectedValue}"`;
2384
+ state.info.failCause.assertionFailed = true;
2385
+ state.info.failCause.lastError = errorMessage;
2386
+ throw new Error(errorMessage);
2387
+ }
2388
+ }
2389
+ else {
2390
+ const valLines = val.split("\n");
2391
+ const expectedLines = expectedValue.split("\n");
2392
+ const isPart = expectedLines.every((expectedLine) => valLines.some((valLine) => valLine === expectedLine));
2393
+ if (!isPart) {
2394
+ let errorMessage = `The ${attribute} attribute has a value of "${val}", but the expected value is "${expectedValue}"`;
2395
+ state.info.failCause.assertionFailed = true;
2396
+ state.info.failCause.lastError = errorMessage;
2397
+ throw new Error(errorMessage);
2398
+ }
2399
+ }
2400
+ }
2401
+ else {
2402
+ if (!val.match(regex)) {
2403
+ let errorMessage = `The ${attribute} attribute has a value of "${val}", but the expected value is "${expectedValue}"`;
2404
+ state.info.failCause.assertionFailed = true;
2405
+ state.info.failCause.lastError = errorMessage;
2406
+ throw new Error(errorMessage);
2407
+ }
2408
+ }
2409
+ return state.info;
2410
+ }
2411
+ catch (e) {
2412
+ await _commandError(state, e, this);
2413
+ }
2414
+ finally {
2415
+ await _commandFinally(state, this);
2416
+ }
2417
+ }
2418
+ async verifyProperty(selectors, property, value, _params = null, options = {}, world = null) {
2419
+ const state = {
2420
+ selectors,
2421
+ _params,
2422
+ property,
2423
+ value,
2424
+ options,
2425
+ world,
2426
+ type: Types.VERIFY_PROPERTY,
2427
+ highlight: true,
2428
+ screenshot: true,
2429
+ text: `Verify element property`,
2430
+ _text: `Verify property ${property} from ${selectors.element_name} is ${value}`,
2431
+ operation: "verifyProperty",
2432
+ log: "***** verify property " + property + " from " + selectors.element_name + " *****\n",
2433
+ allowDisabled: true,
2434
+ };
2435
+ await new Promise((resolve) => setTimeout(resolve, 2000));
2436
+ let val;
2437
+ let expectedValue;
2438
+ try {
2439
+ await _preCommand(state, this);
2440
+ expectedValue = await replaceWithLocalTestData(state.value, world);
2441
+ state.info.expectedValue = expectedValue;
2442
+ switch (property) {
2443
+ case "innerText":
2444
+ val = String(await state.element.innerText());
2445
+ break;
2446
+ case "text":
2447
+ val = String(await state.element.textContent());
2448
+ break;
2449
+ case "value":
2450
+ val = String(await state.element.inputValue());
2451
+ break;
2452
+ case "checked":
2453
+ val = String(await state.element.isChecked());
2454
+ break;
2455
+ case "disabled":
2456
+ val = String(await state.element.isDisabled());
2457
+ break;
2458
+ case "readOnly":
2459
+ const isEditable = await state.element.isEditable();
2460
+ val = String(!isEditable);
2461
+ break;
2462
+ case "innerHTML":
2463
+ val = String(await state.element.innerHTML());
2464
+ break;
2465
+ case "outerHTML":
2466
+ val = String(await state.element.evaluate((element) => element.outerHTML));
2467
+ break;
2468
+ default:
2469
+ if (property.startsWith("dataset.")) {
2470
+ const dataAttribute = property.substring(8);
2471
+ val = String(await state.element.getAttribute(`data-${dataAttribute}`)) || "";
2472
+ }
2473
+ else {
2474
+ val = String(await state.element.evaluate((element, prop) => element[prop], property));
2475
+ }
2476
+ }
2477
+ // Helper function to remove all style="" attributes
2478
+ const removeStyleAttributes = (htmlString) => {
2479
+ return htmlString.replace(/\s*style\s*=\s*"[^"]*"/gi, "");
2480
+ };
2481
+ // Remove style attributes for innerHTML and outerHTML properties
2482
+ if (property === "innerHTML" || property === "outerHTML") {
2483
+ val = removeStyleAttributes(val);
2484
+ expectedValue = removeStyleAttributes(expectedValue);
2485
+ }
2486
+ state.info.value = val;
2487
+ let regex;
2488
+ state.info.value = val;
2489
+ const isRegex = expectedValue.startsWith("regex:");
2490
+ const isContains = expectedValue.startsWith("contains:");
2491
+ const isExact = expectedValue.startsWith("exact:");
2492
+ let matchPassed = false;
2493
+ if (isRegex) {
2494
+ const rawPattern = expectedValue.slice(6); // remove "regex:"
2495
+ const lastSlashIndex = rawPattern.lastIndexOf("/");
2496
+ if (rawPattern.startsWith("/") && lastSlashIndex > 0) {
2497
+ const patternBody = rawPattern.slice(1, lastSlashIndex).replace(/\n/g, ".*");
2498
+ const flags = rawPattern.slice(lastSlashIndex + 1) || "gs";
2499
+ const regex = new RegExp(patternBody, flags);
2500
+ state.info.regex = true;
2501
+ matchPassed = regex.test(val);
2502
+ }
2503
+ else {
2504
+ // Fallback: treat as literal
2505
+ const escapedPattern = rawPattern.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2506
+ const regex = new RegExp(escapedPattern, "g");
2507
+ matchPassed = regex.test(val);
2508
+ }
2509
+ }
2510
+ else if (isContains) {
2511
+ const containsValue = expectedValue.slice(9); // remove "contains:"
2512
+ matchPassed = val.includes(containsValue);
2513
+ }
2514
+ else if (isExact) {
2515
+ const exactValue = expectedValue.slice(6); // remove "exact:"
2516
+ matchPassed = val === exactValue;
2517
+ }
2518
+ else if (property === "innerText") {
2519
+ // Default innerText logic
2520
+ const normalizedExpectedValue = expectedValue.replace(/\\n/g, "\n");
2521
+ const valLines = val.split("\n");
2522
+ const expectedLines = normalizedExpectedValue.split("\n");
2523
+ matchPassed = expectedLines.every((expectedLine) => valLines.some((valLine) => valLine.trim() === expectedLine.trim()));
2524
+ }
2525
+ else {
2526
+ // Fallback exact or loose match
2527
+ const escapedPattern = expectedValue.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
2528
+ const regex = new RegExp(escapedPattern, "g");
2529
+ matchPassed = regex.test(val);
2530
+ }
2531
+ if (!matchPassed) {
2532
+ let errorMessage = `The ${property} property has a value of "${val}", but the expected value is "${expectedValue}"`;
2062
2533
  state.info.failCause.assertionFailed = true;
2063
2534
  state.info.failCause.lastError = errorMessage;
2064
2535
  throw new Error(errorMessage);
@@ -2072,6 +2543,132 @@ class StableBrowser {
2072
2543
  await _commandFinally(state, this);
2073
2544
  }
2074
2545
  }
2546
+ async conditionalWait(selectors, condition, timeout = 1000, _params = null, options = {}, world = null) {
2547
+ // Convert timeout from seconds to milliseconds
2548
+ const timeoutMs = timeout * 1000;
2549
+ const state = {
2550
+ selectors,
2551
+ _params,
2552
+ condition,
2553
+ timeout: timeoutMs, // Store as milliseconds for internal use
2554
+ options,
2555
+ world,
2556
+ type: Types.CONDITIONAL_WAIT,
2557
+ highlight: true,
2558
+ screenshot: true,
2559
+ text: `Conditional wait for element`,
2560
+ _text: `Wait for ${selectors.element_name} to be ${condition} (timeout: ${timeout}s)`, // Display original seconds
2561
+ operation: "conditionalWait",
2562
+ log: `***** conditional wait for ${condition} on ${selectors.element_name} *****\n`,
2563
+ allowDisabled: true,
2564
+ info: {},
2565
+ };
2566
+ // Initialize startTime outside try block to ensure it's always accessible
2567
+ const startTime = Date.now();
2568
+ let conditionMet = false;
2569
+ let currentValue = null;
2570
+ let lastError = null;
2571
+ // Main retry loop - continues until timeout or condition is met
2572
+ while (Date.now() - startTime < timeoutMs) {
2573
+ const elapsedTime = Date.now() - startTime;
2574
+ const remainingTime = timeoutMs - elapsedTime;
2575
+ try {
2576
+ // Try to execute _preCommand (element location)
2577
+ await _preCommand(state, this);
2578
+ // If _preCommand succeeds, start condition checking
2579
+ const checkCondition = async () => {
2580
+ try {
2581
+ switch (condition.toLowerCase()) {
2582
+ case "checked":
2583
+ currentValue = await state.element.isChecked();
2584
+ return currentValue === true;
2585
+ case "unchecked":
2586
+ currentValue = await state.element.isChecked();
2587
+ return currentValue === false;
2588
+ case "visible":
2589
+ currentValue = await state.element.isVisible();
2590
+ return currentValue === true;
2591
+ case "hidden":
2592
+ currentValue = await state.element.isVisible();
2593
+ return currentValue === false;
2594
+ case "enabled":
2595
+ currentValue = await state.element.isDisabled();
2596
+ return currentValue === false;
2597
+ case "disabled":
2598
+ currentValue = await state.element.isDisabled();
2599
+ return currentValue === true;
2600
+ case "editable":
2601
+ // currentValue = await String(await state.element.evaluate((element, prop) => element[prop], "isContentEditable"));
2602
+ currentValue = await state.element.isContentEditable();
2603
+ return currentValue === true;
2604
+ default:
2605
+ state.info.message = `Unsupported condition: '${condition}'. Supported conditions are: checked, unchecked, visible, hidden, enabled, disabled, editable.`;
2606
+ state.info.success = false;
2607
+ return false;
2608
+ }
2609
+ }
2610
+ catch (error) {
2611
+ // Don't throw here, just return false to continue retrying
2612
+ return false;
2613
+ }
2614
+ };
2615
+ // Inner loop for condition checking (once element is located)
2616
+ while (Date.now() - startTime < timeoutMs) {
2617
+ const currentElapsedTime = Date.now() - startTime;
2618
+ conditionMet = await checkCondition();
2619
+ if (conditionMet) {
2620
+ break;
2621
+ }
2622
+ // Check if we still have time for another attempt
2623
+ if (Date.now() - startTime + 50 < timeoutMs) {
2624
+ await new Promise((res) => setTimeout(res, 50));
2625
+ }
2626
+ else {
2627
+ break;
2628
+ }
2629
+ }
2630
+ // If we got here and condition is met, break out of main loop
2631
+ if (conditionMet) {
2632
+ break;
2633
+ }
2634
+ // If condition not met but no exception, we've timed out
2635
+ break;
2636
+ }
2637
+ catch (e) {
2638
+ lastError = e;
2639
+ const currentElapsedTime = Date.now() - startTime;
2640
+ const timeLeft = timeoutMs - currentElapsedTime;
2641
+ // Check if we have enough time left to retry
2642
+ if (timeLeft > 100) {
2643
+ await new Promise((resolve) => setTimeout(resolve, 50));
2644
+ }
2645
+ else {
2646
+ break;
2647
+ }
2648
+ }
2649
+ }
2650
+ const actualWaitTime = Date.now() - startTime;
2651
+ state.info = {
2652
+ success: conditionMet,
2653
+ conditionMet,
2654
+ actualWaitTime,
2655
+ currentValue,
2656
+ lastError: lastError?.message || null,
2657
+ message: conditionMet
2658
+ ? `Condition '${condition}' met after ${(actualWaitTime / 1000).toFixed(2)}s`
2659
+ : `Condition '${condition}' not met within ${timeout}s timeout`,
2660
+ };
2661
+ if (lastError) {
2662
+ state.log += `Last error: ${lastError.message}\n`;
2663
+ }
2664
+ try {
2665
+ await _commandFinally(state, this);
2666
+ }
2667
+ catch (finallyError) {
2668
+ state.log += `Error in _commandFinally: ${finallyError.message}\n`;
2669
+ }
2670
+ return state.info;
2671
+ }
2075
2672
  async extractEmailData(emailAddress, options, world) {
2076
2673
  if (!emailAddress) {
2077
2674
  throw new Error("email address is null");
@@ -2229,56 +2826,49 @@ class StableBrowser {
2229
2826
  console.debug(error);
2230
2827
  }
2231
2828
  }
2232
- // async _unhighlightElements(scope, css) {
2233
- // try {
2234
- // if (!scope) {
2235
- // return;
2236
- // }
2237
- // if (!css) {
2238
- // scope
2239
- // .evaluate((node) => {
2240
- // if (node && node.style) {
2241
- // if (!node.__previousOutline) {
2242
- // node.style.outline = "";
2243
- // } else {
2244
- // node.style.outline = node.__previousOutline;
2245
- // }
2246
- // }
2247
- // })
2248
- // .then(() => {})
2249
- // .catch((e) => {
2250
- // // console.log(`Error while unhighlighting node ${JSON.stringify(scope)}: ${e}`);
2251
- // });
2252
- // } else {
2253
- // scope
2254
- // .evaluate(([css]) => {
2255
- // if (!css) {
2256
- // return;
2257
- // }
2258
- // let elements = Array.from(document.querySelectorAll(css));
2259
- // for (i = 0; i < elements.length; i++) {
2260
- // let element = elements[i];
2261
- // if (!element.style) {
2262
- // return;
2263
- // }
2264
- // if (!element.__previousOutline) {
2265
- // element.style.outline = "";
2266
- // } else {
2267
- // element.style.outline = element.__previousOutline;
2268
- // }
2269
- // }
2270
- // })
2271
- // .then(() => {})
2272
- // .catch((e) => {
2273
- // // console.error(`Error while unhighlighting element in css: ${e}`);
2274
- // });
2275
- // }
2276
- // } catch (error) {
2277
- // // console.debug(error);
2278
- // }
2279
- // }
2829
+ _matcher(text) {
2830
+ if (!text) {
2831
+ return { matcher: "contains", queryText: "" };
2832
+ }
2833
+ if (text.length < 2) {
2834
+ return { matcher: "contains", queryText: text };
2835
+ }
2836
+ const split = text.split(":");
2837
+ const matcher = split[0].toLowerCase();
2838
+ const queryText = split.slice(1).join(":").trim();
2839
+ return { matcher, queryText };
2840
+ }
2841
+ _getDomain(url) {
2842
+ if (url.length === 0 || (!url.startsWith("http://") && !url.startsWith("https://"))) {
2843
+ return "";
2844
+ }
2845
+ let hostnameFragments = url.split("/")[2].split(".");
2846
+ if (hostnameFragments.some((fragment) => fragment.includes(":"))) {
2847
+ return hostnameFragments.join("-").split(":").join("-");
2848
+ }
2849
+ let n = hostnameFragments.length;
2850
+ let fragments = [...hostnameFragments];
2851
+ while (n > 0 && hostnameFragments[n - 1].length <= 3) {
2852
+ hostnameFragments.pop();
2853
+ n = hostnameFragments.length;
2854
+ }
2855
+ if (n == 0) {
2856
+ if (fragments[0] === "www")
2857
+ fragments = fragments.slice(1);
2858
+ return fragments.length > 1 ? fragments.slice(0, fragments.length - 1).join("-") : fragments.join("-");
2859
+ }
2860
+ if (hostnameFragments[0] === "www")
2861
+ hostnameFragments = hostnameFragments.slice(1);
2862
+ return hostnameFragments.join(".");
2863
+ }
2864
+ /**
2865
+ * Verify the page path matches the given path.
2866
+ * @param {string} pathPart - The path to verify.
2867
+ * @param {object} options - Options for verification.
2868
+ * @param {object} world - The world context.
2869
+ * @returns {Promise<object>} - The state info after verification.
2870
+ */
2280
2871
  async verifyPagePath(pathPart, options = {}, world = null) {
2281
- const startTime = Date.now();
2282
2872
  let error = null;
2283
2873
  let screenshotId = null;
2284
2874
  let screenshotPath = null;
@@ -2292,113 +2882,212 @@ class StableBrowser {
2292
2882
  pathPart = newValue;
2293
2883
  }
2294
2884
  info.pathPart = pathPart;
2885
+ const { matcher, queryText } = this._matcher(pathPart);
2886
+ const state = {
2887
+ text_search: queryText,
2888
+ options,
2889
+ world,
2890
+ locate: false,
2891
+ scroll: false,
2892
+ highlight: false,
2893
+ type: Types.VERIFY_PAGE_PATH,
2894
+ text: `Verify the page url is ${queryText}`,
2895
+ _text: `Verify the page url is ${queryText}`,
2896
+ operation: "verifyPagePath",
2897
+ log: "***** verify page url is " + queryText + " *****\n",
2898
+ };
2295
2899
  try {
2900
+ await _preCommand(state, this);
2901
+ state.info.text = queryText;
2296
2902
  for (let i = 0; i < 30; i++) {
2297
2903
  const url = await this.page.url();
2298
- if (!url.includes(pathPart)) {
2299
- if (i === 29) {
2300
- throw new Error(`url ${url} doesn't contain ${pathPart}`);
2301
- }
2302
- await new Promise((resolve) => setTimeout(resolve, 1000));
2303
- continue;
2904
+ switch (matcher) {
2905
+ case "exact":
2906
+ if (url !== queryText) {
2907
+ if (i === 29) {
2908
+ throw new Error(`Page URL ${url} is not equal to ${queryText}`);
2909
+ }
2910
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2911
+ continue;
2912
+ }
2913
+ break;
2914
+ case "contains":
2915
+ if (!url.includes(queryText)) {
2916
+ if (i === 29) {
2917
+ throw new Error(`Page URL ${url} doesn't contain ${queryText}`);
2918
+ }
2919
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2920
+ continue;
2921
+ }
2922
+ break;
2923
+ case "starts-with":
2924
+ {
2925
+ const domain = this._getDomain(url);
2926
+ if (domain.length > 0 && domain !== queryText) {
2927
+ if (i === 29) {
2928
+ throw new Error(`Page URL ${url} doesn't start with ${queryText}`);
2929
+ }
2930
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2931
+ continue;
2932
+ }
2933
+ }
2934
+ break;
2935
+ case "ends-with":
2936
+ {
2937
+ const urlObj = new URL(url);
2938
+ let route = "/";
2939
+ if (urlObj.pathname !== "/") {
2940
+ route = urlObj.pathname.split("/").slice(-1)[0].trim();
2941
+ }
2942
+ else {
2943
+ route = "/";
2944
+ }
2945
+ if (route !== queryText) {
2946
+ if (i === 29) {
2947
+ throw new Error(`Page URL ${url} doesn't end with ${queryText}`);
2948
+ }
2949
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2950
+ continue;
2951
+ }
2952
+ }
2953
+ break;
2954
+ case "regex":
2955
+ const regex = new RegExp(queryText.slice(1, -1), "g");
2956
+ if (!regex.test(url)) {
2957
+ if (i === 29) {
2958
+ throw new Error(`Page URL ${url} doesn't match regex ${queryText}`);
2959
+ }
2960
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2961
+ continue;
2962
+ }
2963
+ break;
2964
+ default:
2965
+ console.log("Unknown matching type, defaulting to contains matching");
2966
+ if (!url.includes(pathPart)) {
2967
+ if (i === 29) {
2968
+ throw new Error(`Page URL ${url} does not contain ${pathPart}`);
2969
+ }
2970
+ await new Promise((resolve) => setTimeout(resolve, 1000));
2971
+ continue;
2972
+ }
2304
2973
  }
2305
- ({ screenshotId, screenshotPath } = await this._screenShot(options, world, info));
2306
- return info;
2974
+ await _screenshot(state, this);
2975
+ return state.info;
2307
2976
  }
2308
2977
  }
2309
2978
  catch (e) {
2310
- //await this.closeUnexpectedPopups();
2311
- this.logger.error("verify page path failed " + info.log);
2312
- ({ screenshotId, screenshotPath } = await this._screenShot(options, world, info));
2313
- info.screenshotPath = screenshotPath;
2314
- Object.assign(e, { info: info });
2315
- error = e;
2316
- // throw e;
2317
- await _commandError({ text: "verifyPagePath", operation: "verifyPagePath", pathPart, info }, e, this);
2979
+ state.info.failCause.lastError = e.message;
2980
+ state.info.failCause.assertionFailed = true;
2981
+ await _commandError(state, e, this);
2318
2982
  }
2319
2983
  finally {
2320
- const endTime = Date.now();
2321
- _reportToWorld(world, {
2322
- type: Types.VERIFY_PAGE_PATH,
2323
- text: "Verify page path",
2324
- _text: "Verify the page path contains " + pathPart,
2325
- screenshotId,
2326
- result: error
2327
- ? {
2328
- status: "FAILED",
2329
- startTime,
2330
- endTime,
2331
- message: error?.message,
2332
- }
2333
- : {
2334
- status: "PASSED",
2335
- startTime,
2336
- endTime,
2337
- },
2338
- info: info,
2339
- });
2984
+ await _commandFinally(state, this);
2340
2985
  }
2341
2986
  }
2987
+ /**
2988
+ * Verify the page title matches the given title.
2989
+ * @param {string} title - The title to verify.
2990
+ * @param {object} options - Options for verification.
2991
+ * @param {object} world - The world context.
2992
+ * @returns {Promise<object>} - The state info after verification.
2993
+ */
2342
2994
  async verifyPageTitle(title, options = {}, world = null) {
2343
- const startTime = Date.now();
2344
2995
  let error = null;
2345
2996
  let screenshotId = null;
2346
2997
  let screenshotPath = null;
2347
2998
  await new Promise((resolve) => setTimeout(resolve, 2000));
2348
- const info = {};
2349
- info.log = "***** verify page title " + title + " *****\n";
2350
- info.operation = "verifyPageTitle";
2351
2999
  const newValue = await this._replaceWithLocalData(title, world);
2352
3000
  if (newValue !== title) {
2353
3001
  this.logger.info(title + "=" + newValue);
2354
3002
  title = newValue;
2355
3003
  }
2356
- info.title = title;
3004
+ const { matcher, queryText } = this._matcher(title);
3005
+ const state = {
3006
+ text_search: queryText,
3007
+ options,
3008
+ world,
3009
+ locate: false,
3010
+ scroll: false,
3011
+ highlight: false,
3012
+ type: Types.VERIFY_PAGE_TITLE,
3013
+ text: `Verify the page title is ${queryText}`,
3014
+ _text: `Verify the page title is ${queryText}`,
3015
+ operation: "verifyPageTitle",
3016
+ log: "***** verify page title is " + queryText + " *****\n",
3017
+ };
2357
3018
  try {
3019
+ await _preCommand(state, this);
3020
+ state.info.text = queryText;
2358
3021
  for (let i = 0; i < 30; i++) {
2359
3022
  const foundTitle = await this.page.title();
2360
- if (!foundTitle.includes(title)) {
2361
- if (i === 29) {
2362
- throw new Error(`url ${foundTitle} doesn't contain ${title}`);
2363
- }
2364
- await new Promise((resolve) => setTimeout(resolve, 1000));
2365
- continue;
3023
+ switch (matcher) {
3024
+ case "exact":
3025
+ if (foundTitle !== queryText) {
3026
+ if (i === 29) {
3027
+ throw new Error(`Page Title ${foundTitle} is not equal to ${queryText}`);
3028
+ }
3029
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3030
+ continue;
3031
+ }
3032
+ break;
3033
+ case "contains":
3034
+ if (!foundTitle.includes(queryText)) {
3035
+ if (i === 29) {
3036
+ throw new Error(`Page Title ${foundTitle} doesn't contain ${queryText}`);
3037
+ }
3038
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3039
+ continue;
3040
+ }
3041
+ break;
3042
+ case "starts-with":
3043
+ if (!foundTitle.startsWith(queryText)) {
3044
+ if (i === 29) {
3045
+ throw new Error(`Page title ${foundTitle} doesn't start with ${queryText}`);
3046
+ }
3047
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3048
+ continue;
3049
+ }
3050
+ break;
3051
+ case "ends-with":
3052
+ if (!foundTitle.endsWith(queryText)) {
3053
+ if (i === 29) {
3054
+ throw new Error(`Page Title ${foundTitle} doesn't end with ${queryText}`);
3055
+ }
3056
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3057
+ continue;
3058
+ }
3059
+ break;
3060
+ case "regex":
3061
+ const regex = new RegExp(queryText.slice(1, -1), "g");
3062
+ if (!regex.test(foundTitle)) {
3063
+ if (i === 29) {
3064
+ throw new Error(`Page Title ${foundTitle} doesn't match regex ${queryText}`);
3065
+ }
3066
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3067
+ continue;
3068
+ }
3069
+ break;
3070
+ default:
3071
+ console.log("Unknown matching type, defaulting to contains matching");
3072
+ if (!foundTitle.includes(title)) {
3073
+ if (i === 29) {
3074
+ throw new Error(`Page Title ${foundTitle} does not contain ${title}`);
3075
+ }
3076
+ await new Promise((resolve) => setTimeout(resolve, 1000));
3077
+ continue;
3078
+ }
2366
3079
  }
2367
- ({ screenshotId, screenshotPath } = await this._screenShot(options, world, info));
2368
- return info;
3080
+ await _screenshot(state, this);
3081
+ return state.info;
2369
3082
  }
2370
3083
  }
2371
3084
  catch (e) {
2372
- //await this.closeUnexpectedPopups();
2373
- this.logger.error("verify page title failed " + info.log);
2374
- ({ screenshotId, screenshotPath } = await this._screenShot(options, world, info));
2375
- info.screenshotPath = screenshotPath;
2376
- Object.assign(e, { info: info });
2377
- error = e;
2378
- // throw e;
2379
- await _commandError({ text: "verifyPageTitle", operation: "verifyPageTitle", title, info, throwError: true }, e, this);
3085
+ state.info.failCause.lastError = e.message;
3086
+ state.info.failCause.assertionFailed = true;
3087
+ await _commandError(state, e, this);
2380
3088
  }
2381
3089
  finally {
2382
- const endTime = Date.now();
2383
- _reportToWorld(world, {
2384
- type: Types.VERIFY_PAGE_PATH,
2385
- text: "Verify page title",
2386
- _text: "Verify the page title contains " + title,
2387
- screenshotId,
2388
- result: error
2389
- ? {
2390
- status: "FAILED",
2391
- startTime,
2392
- endTime,
2393
- message: error?.message,
2394
- }
2395
- : {
2396
- status: "PASSED",
2397
- startTime,
2398
- endTime,
2399
- },
2400
- info: info,
2401
- });
3090
+ await _commandFinally(state, this);
2402
3091
  }
2403
3092
  }
2404
3093
  async findTextInAllFrames(dateAlternatives, numberAlternatives, text, state, partial = true, ignoreCase = false) {
@@ -2440,7 +3129,7 @@ class StableBrowser {
2440
3129
  scroll: false,
2441
3130
  highlight: false,
2442
3131
  type: Types.VERIFY_PAGE_CONTAINS_TEXT,
2443
- text: `Verify the text '${text}' exists in page`,
3132
+ text: `Verify the text '${maskValue(text)}' exists in page`,
2444
3133
  _text: `Verify the text '${text}' exists in page`,
2445
3134
  operation: "verifyTextExistInPage",
2446
3135
  log: "***** verify text " + text + " exists in page *****\n",
@@ -2482,27 +3171,10 @@ class StableBrowser {
2482
3171
  const frame = resultWithElementsFound[0].frame;
2483
3172
  const dataAttribute = `[data-blinq-id-${resultWithElementsFound[0].randomToken}]`;
2484
3173
  await this._highlightElements(frame, dataAttribute);
2485
- // if (world && world.screenshot && !world.screenshotPath) {
2486
- // console.log(`Highlighting for verify text is found while running from recorder`);
2487
- // this._highlightElements(frame, dataAttribute).then(async () => {
2488
- // await new Promise((resolve) => setTimeout(resolve, 1000));
2489
- // this._unhighlightElements(frame, dataAttribute)
2490
- // .then(async () => {
2491
- // console.log(`Unhighlighted frame dataAttribute successfully`);
2492
- // })
2493
- // .catch(
2494
- // (e) => {}
2495
- // console.error(e)
2496
- // );
2497
- // });
2498
- // }
2499
3174
  const element = await frame.locator(dataAttribute).first();
2500
- // await new Promise((resolve) => setTimeout(resolve, 100));
2501
- // await this._unhighlightElements(frame, dataAttribute);
2502
3175
  if (element) {
2503
3176
  await this.scrollIfNeeded(element, state.info);
2504
3177
  await element.dispatchEvent("bvt_verify_page_contains_text");
2505
- // await _screenshot(state, this, element);
2506
3178
  }
2507
3179
  }
2508
3180
  await _screenshot(state, this);
@@ -2512,7 +3184,6 @@ class StableBrowser {
2512
3184
  console.error(error);
2513
3185
  }
2514
3186
  }
2515
- // await expect(element).toHaveCount(1, { timeout: 10000 });
2516
3187
  }
2517
3188
  catch (e) {
2518
3189
  await _commandError(state, e, this);
@@ -2531,7 +3202,7 @@ class StableBrowser {
2531
3202
  scroll: false,
2532
3203
  highlight: false,
2533
3204
  type: Types.WAIT_FOR_TEXT_TO_DISAPPEAR,
2534
- text: `Verify the text '${text}' does not exist in page`,
3205
+ text: `Verify the text '${maskValue(text)}' does not exist in page`,
2535
3206
  _text: `Verify the text '${text}' does not exist in page`,
2536
3207
  operation: "verifyTextNotExistInPage",
2537
3208
  log: "***** verify text " + text + " does not exist in page *****\n",
@@ -2594,6 +3265,8 @@ class StableBrowser {
2594
3265
  operation: "verify_text_with_relation",
2595
3266
  log: "***** search for " + textAnchor + " climb " + climb + " and verify " + textToVerify + " found *****\n",
2596
3267
  };
3268
+ const cmdStartTime = Date.now();
3269
+ let cmdEndTime = null;
2597
3270
  const timeout = this._getFindElementTimeout(options);
2598
3271
  await new Promise((resolve) => setTimeout(resolve, 2000));
2599
3272
  let newValue = await this._replaceWithLocalData(textAnchor, world);
@@ -2629,6 +3302,17 @@ class StableBrowser {
2629
3302
  await new Promise((resolve) => setTimeout(resolve, 1000));
2630
3303
  continue;
2631
3304
  }
3305
+ else {
3306
+ cmdEndTime = Date.now();
3307
+ if (cmdEndTime - cmdStartTime > 55000) {
3308
+ if (foundAncore) {
3309
+ throw new Error(`Text ${textToVerify} not found in page`);
3310
+ }
3311
+ else {
3312
+ throw new Error(`Text ${textAnchor} not found in page`);
3313
+ }
3314
+ }
3315
+ }
2632
3316
  try {
2633
3317
  for (let i = 0; i < resultWithElementsFound.length; i++) {
2634
3318
  foundAncore = true;
@@ -3028,8 +3712,51 @@ class StableBrowser {
3028
3712
  });
3029
3713
  }
3030
3714
  }
3715
+ /**
3716
+ * Explicit wait/sleep function that pauses execution for a specified duration
3717
+ * @param duration - Duration to sleep in milliseconds (default: 1000ms)
3718
+ * @param options - Optional configuration object
3719
+ * @param world - Optional world context
3720
+ * @returns Promise that resolves after the specified duration
3721
+ */
3722
+ async sleep(duration = 1000, options = {}, world = null) {
3723
+ const state = {
3724
+ duration,
3725
+ options,
3726
+ world,
3727
+ locate: false,
3728
+ scroll: false,
3729
+ screenshot: false,
3730
+ highlight: false,
3731
+ type: Types.SLEEP,
3732
+ text: `Sleep for ${duration} ms`,
3733
+ _text: `Sleep for ${duration} ms`,
3734
+ operation: "sleep",
3735
+ log: `***** Sleep for ${duration} ms *****\n`,
3736
+ };
3737
+ try {
3738
+ await _preCommand(state, this);
3739
+ if (duration < 0) {
3740
+ throw new Error("Sleep duration cannot be negative");
3741
+ }
3742
+ await new Promise((resolve) => setTimeout(resolve, duration));
3743
+ return state.info;
3744
+ }
3745
+ catch (e) {
3746
+ await _commandError(state, e, this);
3747
+ }
3748
+ finally {
3749
+ await _commandFinally(state, this);
3750
+ }
3751
+ }
3031
3752
  async _replaceWithLocalData(value, world, _decrypt = true, totpWait = true) {
3032
- return await replaceWithLocalTestData(value, world, _decrypt, totpWait, this.context, this);
3753
+ try {
3754
+ return await replaceWithLocalTestData(value, world, _decrypt, totpWait, this.context, this);
3755
+ }
3756
+ catch (error) {
3757
+ this.logger.debug(error);
3758
+ throw error;
3759
+ }
3033
3760
  }
3034
3761
  _getLoadTimeout(options) {
3035
3762
  let timeout = 15000;
@@ -3052,6 +3779,7 @@ class StableBrowser {
3052
3779
  }
3053
3780
  async saveStoreState(path = null, world = null) {
3054
3781
  const storageState = await this.page.context().storageState();
3782
+ path = await this._replaceWithLocalData(path, this.world);
3055
3783
  //const testDataFile = _getDataFile(world, this.context, this);
3056
3784
  if (path) {
3057
3785
  // save { storageState: storageState } into the path
@@ -3062,10 +3790,14 @@ class StableBrowser {
3062
3790
  }
3063
3791
  }
3064
3792
  async restoreSaveState(path = null, world = null) {
3793
+ path = await this._replaceWithLocalData(path, this.world);
3065
3794
  await refreshBrowser(this, path, world);
3066
3795
  this.registerEventListeners(this.context);
3067
3796
  registerNetworkEvents(this.world, this, this.context, this.page);
3068
3797
  registerDownloadEvent(this.page, this.world, this.context);
3798
+ if (this.onRestoreSaveState) {
3799
+ this.onRestoreSaveState(path);
3800
+ }
3069
3801
  }
3070
3802
  async waitForPageLoad(options = {}, world = null) {
3071
3803
  let timeout = this._getLoadTimeout(options);
@@ -3100,7 +3832,6 @@ class StableBrowser {
3100
3832
  else if (e.label === "domcontentloaded") {
3101
3833
  console.log("waited for the domcontent loaded timeout");
3102
3834
  }
3103
- console.log(".");
3104
3835
  }
3105
3836
  finally {
3106
3837
  await new Promise((resolve) => setTimeout(resolve, 2000));
@@ -3144,7 +3875,6 @@ class StableBrowser {
3144
3875
  await this.page.close();
3145
3876
  }
3146
3877
  catch (e) {
3147
- console.log(".");
3148
3878
  await _commandError(state, e, this);
3149
3879
  }
3150
3880
  finally {
@@ -3259,7 +3989,6 @@ class StableBrowser {
3259
3989
  await this.page.setViewportSize({ width: width, height: hight });
3260
3990
  }
3261
3991
  catch (e) {
3262
- console.log(".");
3263
3992
  await _commandError({ text: "setViewportSize", operation: "setViewportSize", width, hight, info }, e, this);
3264
3993
  }
3265
3994
  finally {
@@ -3297,7 +4026,6 @@ class StableBrowser {
3297
4026
  await this.page.reload();
3298
4027
  }
3299
4028
  catch (e) {
3300
- console.log(".");
3301
4029
  await _commandError({ text: "reloadPage", operation: "reloadPage", info }, e, this);
3302
4030
  }
3303
4031
  finally {
@@ -3341,6 +4069,10 @@ class StableBrowser {
3341
4069
  }
3342
4070
  }
3343
4071
  async beforeScenario(world, scenario) {
4072
+ if (world && world.attach) {
4073
+ world.attach(this.context.reportFolder, { mediaType: "text/plain" });
4074
+ }
4075
+ this.context.loadedRoutes = null;
3344
4076
  this.beforeScenarioCalled = true;
3345
4077
  if (scenario && scenario.pickle && scenario.pickle.name) {
3346
4078
  this.scenarioName = scenario.pickle.name;
@@ -3363,12 +4095,19 @@ class StableBrowser {
3363
4095
  if (this.context && this.context.environment) {
3364
4096
  envName = this.context.environment.name;
3365
4097
  }
3366
- await await getTestData(envName, world, undefined, this.featureName, this.scenarioName);
4098
+ if (!process.env.TEMP_RUN) {
4099
+ await getTestData(envName, world, undefined, this.featureName, this.scenarioName, this.context);
4100
+ }
4101
+ await loadBrunoParams(this.context, this.context.environment.name);
3367
4102
  }
3368
4103
  async afterScenario(world, scenario) { }
3369
4104
  async beforeStep(world, step) {
4105
+ if (this.abortedExecution) {
4106
+ throw new Error("Aborted");
4107
+ }
3370
4108
  if (!this.beforeScenarioCalled) {
3371
4109
  this.beforeScenario(world, step);
4110
+ this.context.loadedRoutes = null;
3372
4111
  }
3373
4112
  if (this.stepIndex === undefined) {
3374
4113
  this.stepIndex = 0;
@@ -3393,13 +4132,16 @@ class StableBrowser {
3393
4132
  }
3394
4133
  if (this.initSnapshotTaken === false) {
3395
4134
  this.initSnapshotTaken = true;
3396
- if (world && world.attach && !process.env.DISABLE_SNAPSHOT) {
4135
+ if (world && world.attach && !process.env.DISABLE_SNAPSHOT && !this.fastMode) {
3397
4136
  const snapshot = await this.getAriaSnapshot();
3398
4137
  if (snapshot) {
3399
4138
  await world.attach(JSON.stringify(snapshot), "application/json+snapshot-before");
3400
4139
  }
3401
4140
  }
3402
4141
  }
4142
+ this.context.routeResults = null;
4143
+ await registerBeforeStepRoutes(this.context, this.stepName);
4144
+ networkBeforeStep(this.stepName);
3403
4145
  }
3404
4146
  async getAriaSnapshot() {
3405
4147
  try {
@@ -3415,18 +4157,74 @@ class StableBrowser {
3415
4157
  const content = [`- path: ${path}`, `- title: ${title}`];
3416
4158
  const timeout = this.configuration.ariaSnapshotTimeout ? this.configuration.ariaSnapshotTimeout : 3000;
3417
4159
  for (let i = 0; i < frames.length; i++) {
3418
- content.push(`- frame: ${i}`);
3419
4160
  const frame = frames[i];
3420
- const snapshot = await frame.locator("body").ariaSnapshot({ timeout });
3421
- content.push(snapshot);
4161
+ try {
4162
+ // Ensure frame is attached and has body
4163
+ const body = frame.locator("body");
4164
+ //await body.waitFor({ timeout: 2000 }); // wait explicitly
4165
+ const snapshot = await body.ariaSnapshot({ timeout });
4166
+ if (!snapshot) {
4167
+ continue;
4168
+ }
4169
+ content.push(`- frame: ${i}`);
4170
+ content.push(snapshot);
4171
+ }
4172
+ catch (innerErr) {
4173
+ console.warn(`Frame ${i} snapshot failed:`, innerErr);
4174
+ content.push(`- frame: ${i} - error: ${innerErr.message}`);
4175
+ }
3422
4176
  }
3423
4177
  return content.join("\n");
3424
4178
  }
3425
4179
  catch (e) {
3426
- console.error(e);
4180
+ console.log("Error in getAriaSnapshot");
4181
+ //console.debug(e);
3427
4182
  }
3428
4183
  return null;
3429
4184
  }
4185
+ /**
4186
+ * Sends command with custom payload to report.
4187
+ * @param commandText - Title of the command to be shown in the report.
4188
+ * @param commandStatus - Status of the command (e.g. "PASSED", "FAILED").
4189
+ * @param content - Content of the command to be shown in the report.
4190
+ * @param options - Options for the command. Example: { type: "json", screenshot: true }
4191
+ * @param world - Optional world context.
4192
+ * @public
4193
+ */
4194
+ async addCommandToReport(commandText, commandStatus, content, options = {}, world = null) {
4195
+ const state = {
4196
+ options,
4197
+ world,
4198
+ locate: false,
4199
+ scroll: false,
4200
+ screenshot: options.screenshot ?? false,
4201
+ highlight: options.highlight ?? false,
4202
+ type: Types.REPORT_COMMAND,
4203
+ text: commandText,
4204
+ _text: commandText,
4205
+ operation: "report_command",
4206
+ log: "***** " + commandText + " *****\n",
4207
+ };
4208
+ try {
4209
+ await _preCommand(state, this);
4210
+ const payload = {
4211
+ type: options.type ?? "text",
4212
+ content: content,
4213
+ screenshotId: null,
4214
+ };
4215
+ state.payload = payload;
4216
+ if (commandStatus === "FAILED") {
4217
+ state.throwError = true;
4218
+ throw new Error("Command failed");
4219
+ }
4220
+ }
4221
+ catch (e) {
4222
+ await _commandError(state, e, this);
4223
+ }
4224
+ finally {
4225
+ await _commandFinally(state, this);
4226
+ }
4227
+ }
3430
4228
  async afterStep(world, step) {
3431
4229
  this.stepName = null;
3432
4230
  if (this.context && this.context.browserObject && this.context.browserObject.trace === true) {
@@ -3434,10 +4232,12 @@ class StableBrowser {
3434
4232
  await this.context.browserObject.context.tracing.stopChunk({
3435
4233
  path: path.join(this.context.browserObject.traceFolder, `trace-${this.stepIndex}.zip`),
3436
4234
  });
3437
- await world.attach(JSON.stringify({
3438
- type: "trace",
3439
- traceFilePath: `trace-${this.stepIndex}.zip`,
3440
- }), "application/json+trace");
4235
+ if (world && world.attach) {
4236
+ await world.attach(JSON.stringify({
4237
+ type: "trace",
4238
+ traceFilePath: `trace-${this.stepIndex}.zip`,
4239
+ }), "application/json+trace");
4240
+ }
3441
4241
  // console.log("trace file created", `trace-${this.stepIndex}.zip`);
3442
4242
  }
3443
4243
  }
@@ -3451,6 +4251,36 @@ class StableBrowser {
3451
4251
  await world.attach(JSON.stringify(snapshot), "application/json+snapshot-after");
3452
4252
  }
3453
4253
  }
4254
+ this.context.routeResults = await registerAfterStepRoutes(this.context, world);
4255
+ if (this.context.routeResults) {
4256
+ if (world && world.attach) {
4257
+ await world.attach(JSON.stringify(this.context.routeResults), "application/json+intercept-results");
4258
+ }
4259
+ }
4260
+ if (!process.env.TEMP_RUN) {
4261
+ const state = {
4262
+ world,
4263
+ locate: false,
4264
+ scroll: false,
4265
+ screenshot: true,
4266
+ highlight: true,
4267
+ type: Types.STEP_COMPLETE,
4268
+ text: "end of scenario",
4269
+ _text: "end of scenario",
4270
+ operation: "step_complete",
4271
+ log: "***** " + "end of scenario" + " *****\n",
4272
+ };
4273
+ try {
4274
+ await _preCommand(state, this);
4275
+ }
4276
+ catch (e) {
4277
+ await _commandError(state, e, this);
4278
+ }
4279
+ finally {
4280
+ await _commandFinally(state, this);
4281
+ }
4282
+ }
4283
+ networkAfterStep(this.stepName);
3454
4284
  }
3455
4285
  }
3456
4286
  function createTimedPromise(promise, label) {