automation_model 1.0.629-dev → 1.0.629-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 (48) hide show
  1. package/README.md +130 -0
  2. package/lib/api.js +35 -21
  3. package/lib/api.js.map +1 -1
  4. package/lib/auto_page.d.ts +1 -1
  5. package/lib/auto_page.js +99 -28
  6. package/lib/auto_page.js.map +1 -1
  7. package/lib/browser_manager.js +38 -9
  8. package/lib/browser_manager.js.map +1 -1
  9. package/lib/bruno.d.ts +2 -0
  10. package/lib/bruno.js +381 -0
  11. package/lib/bruno.js.map +1 -0
  12. package/lib/command_common.d.ts +4 -4
  13. package/lib/command_common.js +33 -16
  14. package/lib/command_common.js.map +1 -1
  15. package/lib/environment.d.ts +1 -0
  16. package/lib/environment.js +1 -0
  17. package/lib/environment.js.map +1 -1
  18. package/lib/file_checker.d.ts +1 -0
  19. package/lib/file_checker.js +61 -0
  20. package/lib/file_checker.js.map +1 -0
  21. package/lib/index.d.ts +2 -0
  22. package/lib/index.js +2 -0
  23. package/lib/index.js.map +1 -1
  24. package/lib/init_browser.d.ts +2 -2
  25. package/lib/init_browser.js +33 -27
  26. package/lib/init_browser.js.map +1 -1
  27. package/lib/locate_element.js +2 -2
  28. package/lib/locate_element.js.map +1 -1
  29. package/lib/locator_log.js.map +1 -1
  30. package/lib/network.d.ts +1 -1
  31. package/lib/network.js +5 -5
  32. package/lib/network.js.map +1 -1
  33. package/lib/snapshot_validation.d.ts +37 -0
  34. package/lib/snapshot_validation.js +280 -0
  35. package/lib/snapshot_validation.js.map +1 -0
  36. package/lib/stable_browser.d.ts +20 -3
  37. package/lib/stable_browser.js +562 -114
  38. package/lib/stable_browser.js.map +1 -1
  39. package/lib/table_helper.d.ts +19 -0
  40. package/lib/table_helper.js +116 -0
  41. package/lib/table_helper.js.map +1 -0
  42. package/lib/test_context.d.ts +2 -0
  43. package/lib/test_context.js +2 -0
  44. package/lib/test_context.js.map +1 -1
  45. package/lib/utils.d.ts +8 -4
  46. package/lib/utils.js +221 -20
  47. package/lib/utils.js.map +1 -1
  48. package/package.json +9 -8
@@ -0,0 +1,280 @@
1
+ export async function highlightSnapshot(snapshot, scope) { }
2
+ /*
3
+ - banner:
4
+ - heading "Shop NOW" [level=6]
5
+ - text: Log In Username
6
+ - textbox "Username"
7
+ - text: Password
8
+ - textbox "Password"
9
+ - button "Login"
10
+ - paragraph: "Accepted usernames are:"
11
+ - list:
12
+ - listitem:
13
+ - paragraph: blinq_user
14
+ - listitem:
15
+ - paragraph: blinq_admin
16
+ - paragraph: "Password for all users:"
17
+ - paragraph: let_me_in
18
+ */
19
+ class SnapshotNode {
20
+ key;
21
+ value;
22
+ role;
23
+ name;
24
+ children = [];
25
+ parent = null;
26
+ constructor(key, value) {
27
+ this.key = key;
28
+ this.value = value;
29
+ if (!key) {
30
+ throw new Error("Key cannot be null or undefined");
31
+ }
32
+ this.role = key.split(" ")[0];
33
+ if (this.value) {
34
+ this.name = this.value;
35
+ }
36
+ else {
37
+ // the value will be from the first " to the last "
38
+ const start = key.indexOf('"') + 1;
39
+ const end = key.lastIndexOf('"');
40
+ if (start > -1 && end > -1 && start < end) {
41
+ this.name = key.substring(start, end);
42
+ }
43
+ else {
44
+ this.name = null;
45
+ }
46
+ }
47
+ }
48
+ generateNodeLocator() {
49
+ let locator = `internal:role=${this.role}`;
50
+ switch (this.role) {
51
+ case "paragraph":
52
+ // internal:role=paragraph >> internal:text='blinq_user'"
53
+ return `internal:role=${this.role} >> internal:text='${this.name}'`;
54
+ default:
55
+ // "internal:role=textbox[name=\"Password\"]"
56
+ if (this.name) {
57
+ locator += `[name="${this.name}"]`;
58
+ }
59
+ return locator;
60
+ }
61
+ }
62
+ getFullLocator() {
63
+ // create an array of all the parents and current node locators
64
+ const locators = [];
65
+ let currentNode = this;
66
+ while (currentNode) {
67
+ locators.unshift(currentNode.generateNodeLocator());
68
+ currentNode = currentNode.parent;
69
+ }
70
+ // join the locators with " >> "
71
+ return locators.join(" >> ");
72
+ }
73
+ }
74
+ export function fromLinesToSnapshotLines(lines) {
75
+ // the input is yaml text split into lines, 2 spaces is 1 level
76
+ const nodes = [];
77
+ // identify the space count for tabulation
78
+ let previouseLineSpaceCount = -1;
79
+ let foundTabulationCount = -1;
80
+ // look for 2 consecutive lines that have different space counts, the absolute difference is the space count for tabulation
81
+ for (let i = 0; i < lines.length; i++) {
82
+ const line = lines[i];
83
+ const trimmedLine = line.trim();
84
+ if (trimmedLine.length === 0) {
85
+ continue;
86
+ }
87
+ // count the number of leading spaces
88
+ const match = line.match(/^ */); // Matches spaces at the beginning
89
+ const count = match ? match[0].length : 0;
90
+ if (previouseLineSpaceCount !== -1 && previouseLineSpaceCount !== count) {
91
+ foundTabulationCount = Math.abs(previouseLineSpaceCount - count);
92
+ break;
93
+ }
94
+ previouseLineSpaceCount = count;
95
+ }
96
+ if (foundTabulationCount === -1) {
97
+ foundTabulationCount = 2;
98
+ }
99
+ for (let i = 0; i < lines.length; i++) {
100
+ const line = lines[i];
101
+ const trimmedLine = line.trim();
102
+ if (trimmedLine.length === 0) {
103
+ continue;
104
+ }
105
+ // count the number of leading spaces
106
+ let level = 0;
107
+ const match = line.match(/^ */); // Matches spaces at the beginning
108
+ const count = match ? match[0].length : 0;
109
+ level = count / foundTabulationCount; // 2 spaces is 1 level
110
+ // find the start of the line: - and space
111
+ const start = line.indexOf("- ") + 2;
112
+ if (start === -1) {
113
+ // no - found, set it to error
114
+ nodes.push({
115
+ line: i,
116
+ line_text: line,
117
+ key: line,
118
+ value: null,
119
+ level,
120
+ error: "No - found",
121
+ regex: false,
122
+ });
123
+ continue;
124
+ }
125
+ // first we need to extract the role, we should find the first space or : after the start
126
+ const end = line.indexOf(" ", start);
127
+ const end2 = line.indexOf(":", start);
128
+ if (end === -1 && end2 === -1) {
129
+ // no space or : found, set it to error
130
+ nodes.push({
131
+ line: i,
132
+ line_text: line,
133
+ key: line,
134
+ value: null,
135
+ level,
136
+ error: "No space or : found",
137
+ regex: false,
138
+ });
139
+ continue;
140
+ }
141
+ const endIndex = end === -1 ? end2 : end2 === -1 ? end : Math.min(end, end2);
142
+ const key = line.substring(start, endIndex).trim();
143
+ // define value is string or null
144
+ let value = line.substring(endIndex + 1).trim();
145
+ if (value.startsWith('"')) {
146
+ const lastQuote = value.lastIndexOf('"');
147
+ if (lastQuote !== -1) {
148
+ value = value.substring(0, lastQuote + 1);
149
+ }
150
+ }
151
+ // improved regex detection
152
+ const rawValue = value.endsWith(":") ? value.slice(0, -1) : value;
153
+ const regex = rawValue.startsWith("/") && /\/[a-z]*$/.test(rawValue);
154
+ nodes.push({
155
+ line: i,
156
+ line_text: line,
157
+ key,
158
+ value: value.length > 0 ? value : null,
159
+ level,
160
+ error: null,
161
+ regex,
162
+ });
163
+ }
164
+ return nodes;
165
+ }
166
+ /**
167
+ * Turn a “/pattern/flags” string into a real RegExp.
168
+ */
169
+ function toRegExp(raw) {
170
+ // Remove trailing colon from YAML-style key: /pattern/: → /pattern/
171
+ const sanitized = raw.endsWith(":") ? raw.slice(0, -1) : raw;
172
+ if (!sanitized.startsWith("/"))
173
+ return new RegExp(sanitized);
174
+ const lastSlash = sanitized.lastIndexOf("/");
175
+ const pattern = sanitized.slice(1, lastSlash);
176
+ const flags = sanitized.slice(lastSlash + 1); // i, g, etc.
177
+ return new RegExp(pattern, flags);
178
+ }
179
+ /**
180
+ * Single-line comparison with fixed regex handling.
181
+ */
182
+ function lineMatches(full, sub) {
183
+ let status = { status: false };
184
+ if (full.key !== sub.key)
185
+ return status;
186
+ // We handle level offset outside this function
187
+ if (sub.value === null) {
188
+ status.status = true;
189
+ return status;
190
+ }
191
+ if (sub.regex) {
192
+ status.status = toRegExp(sub.value).test(full.value ?? "");
193
+ }
194
+ else if (full.regex) {
195
+ status.status = toRegExp(full.value).test(sub.value ?? "");
196
+ }
197
+ else {
198
+ status.status = full.value === sub.value;
199
+ }
200
+ return status;
201
+ }
202
+ export function snapshotValidation(snapshot, referanceSnapshot, snapshotName) {
203
+ const lines = snapshot.split("\n");
204
+ const nodes = fromLinesToSnapshotLines(lines);
205
+ const subLines = referanceSnapshot.split("\n");
206
+ const subNodes = fromLinesToSnapshotLines(subLines);
207
+ return matchSnapshot(nodes, subNodes, snapshotName);
208
+ }
209
+ export function matchSnapshot(full, sub, snapshotName) {
210
+ const parentIdx = sub.map((_, i) => {
211
+ for (let j = i - 1; j >= 0; j--)
212
+ if (sub[j].level < sub[i].level)
213
+ return j;
214
+ return -1;
215
+ });
216
+ const fullIdx = new Array(sub.length);
217
+ const mapping = new Array(sub.length);
218
+ let failureAt = -1;
219
+ function dfs(s, fFrom, baseLevelOffset) {
220
+ if (s === sub.length)
221
+ return true;
222
+ for (let f = fFrom; f < full.length; f++) {
223
+ let levelMatch = true;
224
+ if (baseLevelOffset !== null) {
225
+ // Must match levels relative to initial offset
226
+ if (full[f].level !== sub[s].level + baseLevelOffset)
227
+ continue;
228
+ }
229
+ const status = lineMatches(full[f], sub[s]);
230
+ if (!status.status)
231
+ continue;
232
+ // For first match, set level offset
233
+ const nextBaseOffset = baseLevelOffset !== null ? baseLevelOffset : full[f].level - sub[s].level;
234
+ const pSub = parentIdx[s];
235
+ if (pSub !== -1) {
236
+ let pFull = f - 1;
237
+ while (pFull >= 0 && full[pFull].level >= full[f].level)
238
+ pFull--;
239
+ if (pFull < 0 || pFull !== fullIdx[pSub])
240
+ continue;
241
+ }
242
+ fullIdx[s] = f;
243
+ mapping[s] = full[f].line;
244
+ if (dfs(s + 1, f + 1, nextBaseOffset))
245
+ return true;
246
+ }
247
+ if (failureAt === -1)
248
+ failureAt = s;
249
+ return false;
250
+ }
251
+ const found = dfs(0, 0, null);
252
+ let error = null;
253
+ if (!found) {
254
+ error = `Snapshot file: ${snapshotName}\nLine no.: ${sub[failureAt].line}\nLine: ${sub[failureAt].line_text}`;
255
+ }
256
+ return {
257
+ matchingLines: found ? mapping : mapping.slice(0, failureAt),
258
+ errorLine: found ? -1 : failureAt,
259
+ errorLineText: error,
260
+ };
261
+ }
262
+ // let ttt = `- banner:
263
+ // - heading "Shop NOW" [level=6]
264
+ // - text: Log In Username
265
+ // - textbox "Username"
266
+ // - text: Password
267
+ // - textbox "Password"
268
+ // - button "Login"
269
+ // - paragraph: "Accepted usernames are:"
270
+ // - list:
271
+ // - listitem:
272
+ // - paragraph: blinq_user
273
+ // - listitem:
274
+ // - paragraph: blinq_admin
275
+ // - paragraph: "Password for all users:"
276
+ // - paragraph: let_me_in`;
277
+ // const lines = ttt.split("\n");
278
+ // const nodes = fromLinesToSnapshotLines(lines);
279
+ // console.log("nodes", nodes);
280
+ //# sourceMappingURL=snapshot_validation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"snapshot_validation.js","sourceRoot":"","sources":["../../src/snapshot_validation.ts"],"names":[],"mappings":"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"}
@@ -24,6 +24,7 @@ export declare const Types: {
24
24
  UNCHECK: string;
25
25
  EXTRACT: string;
26
26
  CLOSE_PAGE: string;
27
+ TABLE_OPERATION: string;
27
28
  SET_DATE_TIME: string;
28
29
  SET_VIEWPORT: string;
29
30
  VERIFY_VISUAL: string;
@@ -32,6 +33,10 @@ export declare const Types: {
32
33
  WAIT_FOR_TEXT_TO_DISAPPEAR: string;
33
34
  VERIFY_ATTRIBUTE: string;
34
35
  VERIFY_TEXT_WITH_RELATION: string;
36
+ BRUNO: string;
37
+ VERIFY_FILE_EXISTS: string;
38
+ SET_INPUT_FILES: string;
39
+ SNAPSHOT_VALIDATION: string;
35
40
  };
36
41
  export declare const apps: {};
37
42
  declare class StableBrowser {
@@ -51,6 +56,7 @@ declare class StableBrowser {
51
56
  constructor(browser: Browser, page: Page, logger?: any, context?: any, world?: any);
52
57
  registerEventListeners(context: any): void;
53
58
  switchApp(appName: any): Promise<void>;
59
+ switchTab(tabTitleOrIndex: number | string): Promise<void>;
54
60
  registerConsoleLogListener(page: Page, context: any): void;
55
61
  registerRequestListener(page: Page, context: any, logFile: string): void;
56
62
  goto(url: string, world?: null): Promise<void>;
@@ -60,7 +66,7 @@ declare class StableBrowser {
60
66
  elementCount: number;
61
67
  randomToken: string;
62
68
  }>;
63
- _collectLocatorInformation(selectorHierarchy: any, index: number | undefined, scope: any, foundLocators: any, _params: Params, info: any, visibleOnly?: boolean, allowDisabled?: boolean | undefined, element_name?: null): Promise<void>;
69
+ _collectLocatorInformation(selectorHierarchy: any, index: number | undefined, scope: any, foundLocators: any, _params: Params, info: any, visibleOnly?: boolean, allowDisabled?: boolean | undefined, element_name?: null, logErrors?: boolean | undefined): Promise<void>;
64
70
  closeUnexpectedPopups(info: any, _params: any): Promise<{
65
71
  rerun: boolean;
66
72
  }>;
@@ -68,7 +74,7 @@ declare class StableBrowser {
68
74
  _findFrameScope(selectors: any, timeout: number | undefined, info: any): Promise<any>;
69
75
  _getDocumentBody(selectors: any, timeout: number | undefined, info: any): Promise<any>;
70
76
  _locate_internal(selectors: any, info: any, _params?: Params, timeout?: number, allowDisabled?: boolean | undefined): Promise<any>;
71
- _scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any, allowDisabled?: boolean | undefined, element_name: any): Promise<{
77
+ _scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any, allowDisabled?: boolean | undefined, element_name: any, logErrors?: boolean | undefined): Promise<{
72
78
  foundElements: any[];
73
79
  }>;
74
80
  simpleClick(elementDescription: any, _params?: Params, options?: {}, world?: null): Promise<void>;
@@ -83,6 +89,7 @@ declare class StableBrowser {
83
89
  setDateTime(selectors: any, value: any, format?: null, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<void>;
84
90
  clickType(selectors: any, _value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
85
91
  fill(selectors: any, value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
92
+ setInputFiles(selectors: any, files: any, _params?: null, options?: {}, world?: null): Promise<any>;
86
93
  getText(selectors: any, _params?: null, options?: {}, info?: {}, world?: null): Promise<{
87
94
  text: any;
88
95
  screenshotId: any;
@@ -111,8 +118,10 @@ declare class StableBrowser {
111
118
  }>;
112
119
  containsPattern(selectors: any, pattern: any, text: any, _params?: null, options?: {}, world?: null): Promise<any>;
113
120
  containsText(selectors: any, text: any, climb: any, _params?: null, options?: {}, world?: null): Promise<any>;
121
+ snapshotValidation(frameSelectors: any, referanceSnapshot: any, _params?: null, options?: {}, world?: null): Promise<any>;
114
122
  waitForUserInput(message: any, world?: null): Promise<void>;
115
123
  setTestData(testData: any, world?: null): void;
124
+ overwriteTestData(testData: any, world?: null): void;
116
125
  _getDataFilePath(fileName: any): string;
117
126
  _parseCSVSync(filePath: any): Promise<unknown>;
118
127
  loadTestData(type: string, dataSelector: string, world?: null): {
@@ -133,13 +142,18 @@ declare class StableBrowser {
133
142
  }>;
134
143
  _highlightElements(scope: any, css: any): Promise<void>;
135
144
  verifyPagePath(pathPart: any, options?: {}, world?: null): Promise<{} | undefined>;
136
- findTextInAllFrames(dateAlternatives: any, numberAlternatives: any, text: any, state: any): Promise<{
145
+ verifyPageTitle(title: any, options?: {}, world?: null): Promise<{} | undefined>;
146
+ findTextInAllFrames(dateAlternatives: any, numberAlternatives: any, text: any, state: any, partial?: boolean, ignoreCase?: boolean): Promise<{
137
147
  elementCount: number;
138
148
  randomToken: string;
139
149
  }[]>;
140
150
  verifyTextExistInPage(text: any, options?: {}, world?: null): Promise<any>;
141
151
  waitForTextToDisappear(text: any, options?: {}, world?: null): Promise<any>;
142
152
  verifyTextRelatedToText(textAnchor: string, climb: number, textToVerify: string, options?: {}, world?: any): Promise<any>;
153
+ findRelatedTextInAllFrames(textAnchor: string, climb: number, textToVerify: string, params?: Params, options?: {}, world?: any): Promise<{
154
+ elementCount: number;
155
+ randomToken: string;
156
+ }[]>;
143
157
  visualVerification(text: any, options?: {}, world?: null): Promise<{} | undefined>;
144
158
  verifyTableData(selectors: any, data: any, _params?: null, options?: {}, world?: null): Promise<void>;
145
159
  getTableData(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
@@ -151,10 +165,13 @@ declare class StableBrowser {
151
165
  restoreSaveState(path?: string | null, world?: any): Promise<void>;
152
166
  waitForPageLoad(options?: {}, world?: null): Promise<void>;
153
167
  closePage(options?: {}, world?: null): Promise<void>;
168
+ tableCellOperation(headerText: string, rowText: string, options: any, _params: Params, world?: null): Promise<void>;
154
169
  saveTestDataAsGlobal(options: any, world: any): void;
155
170
  setViewportSize(width: number, hight: number, options?: {}, world?: null): Promise<void>;
156
171
  reloadPage(options?: {}, world?: null): Promise<void>;
157
172
  scrollIfNeeded(element: any, info: any): Promise<void>;
173
+ beforeScenario(world: any, scenario: any): Promise<void>;
174
+ afterScenario(world: any, scenario: any): Promise<void>;
158
175
  beforeStep(world: any, step: any): Promise<void>;
159
176
  getAriaSnapshot(): Promise<string | null>;
160
177
  afterStep(world: any, step: any): Promise<void>;