automation_model 1.0.460-dev → 1.0.460
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +133 -0
- package/lib/analyze_helper.js.map +1 -1
- package/lib/api.d.ts +43 -2
- package/lib/api.js +240 -49
- package/lib/api.js.map +1 -1
- package/lib/auto_page.d.ts +7 -2
- package/lib/auto_page.js +280 -23
- package/lib/auto_page.js.map +1 -1
- package/lib/browser_manager.d.ts +6 -3
- package/lib/browser_manager.js +163 -47
- package/lib/browser_manager.js.map +1 -1
- package/lib/bruno.d.ts +2 -0
- package/lib/bruno.js +381 -0
- package/lib/bruno.js.map +1 -0
- package/lib/command_common.d.ts +6 -0
- package/lib/command_common.js +215 -0
- package/lib/command_common.js.map +1 -0
- package/lib/date_time.js.map +1 -1
- package/lib/drawRect.js.map +1 -1
- package/lib/environment.d.ts +1 -0
- package/lib/environment.js +6 -3
- package/lib/environment.js.map +1 -1
- package/lib/error-messages.d.ts +6 -0
- package/lib/error-messages.js +206 -0
- package/lib/error-messages.js.map +1 -0
- package/lib/file_checker.d.ts +1 -0
- package/lib/file_checker.js +165 -0
- package/lib/file_checker.js.map +1 -0
- package/lib/find_function.js.map +1 -1
- package/lib/generation_scripts.d.ts +4 -0
- package/lib/generation_scripts.js +2 -0
- package/lib/generation_scripts.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/init_browser.d.ts +4 -2
- package/lib/init_browser.js +94 -25
- package/lib/init_browser.js.map +1 -1
- package/lib/locate_element.d.ts +7 -0
- package/lib/locate_element.js +215 -0
- package/lib/locate_element.js.map +1 -0
- package/lib/locator.d.ts +37 -0
- package/lib/locator.js +172 -0
- package/lib/locator.js.map +1 -1
- package/lib/locator_log.d.ts +26 -0
- package/lib/locator_log.js +69 -0
- package/lib/locator_log.js.map +1 -0
- package/lib/network.d.ts +5 -0
- package/lib/network.js +449 -0
- package/lib/network.js.map +1 -0
- package/lib/route.d.ts +21 -0
- package/lib/route.js +533 -0
- package/lib/route.js.map +1 -0
- package/lib/scripts/axe.mini.js +12 -0
- package/lib/snapshot_validation.d.ts +37 -0
- package/lib/snapshot_validation.js +357 -0
- package/lib/snapshot_validation.js.map +1 -0
- package/lib/stable_browser.d.ts +155 -55
- package/lib/stable_browser.js +2678 -1302
- package/lib/stable_browser.js.map +1 -1
- package/lib/table.d.ts +15 -0
- package/lib/table.js +257 -0
- package/lib/table.js.map +1 -0
- package/lib/table_analyze.js.map +1 -1
- package/lib/table_helper.d.ts +19 -0
- package/lib/table_helper.js +130 -0
- package/lib/table_helper.js.map +1 -0
- package/lib/test_context.d.ts +6 -0
- package/lib/test_context.js +16 -12
- package/lib/test_context.js.map +1 -1
- package/lib/utils.d.ts +36 -2
- package/lib/utils.js +706 -13
- package/lib/utils.js.map +1 -1
- package/package.json +22 -10
package/lib/environment.d.ts
CHANGED
package/lib/environment.js
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
class Environment {
|
|
2
|
+
baseUrl;
|
|
3
|
+
cookies = [];
|
|
4
|
+
origins = [];
|
|
5
|
+
extensionPath;
|
|
6
|
+
name;
|
|
2
7
|
constructor(baseUrl) {
|
|
3
8
|
this.baseUrl = baseUrl;
|
|
4
|
-
this.cookies = [];
|
|
5
|
-
this.origins = [];
|
|
6
|
-
this.apps = {};
|
|
7
9
|
}
|
|
8
10
|
setBaseUrl(url) {
|
|
9
11
|
this.baseUrl = url;
|
|
10
12
|
}
|
|
13
|
+
apps = {};
|
|
11
14
|
}
|
|
12
15
|
export { Environment };
|
|
13
16
|
//# sourceMappingURL=environment.js.map
|
package/lib/environment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../src/environment.ts"],"names":[],"mappings":"AAaA,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../src/environment.ts"],"names":[],"mappings":"AAaA,MAAM,WAAW;IAKI;IAJnB,OAAO,GAAa,EAAE,CAAC;IACvB,OAAO,GAAqD,EAAE,CAAC;IAC/D,aAAa,CAAU;IACvB,IAAI,CAAU;IACd,YAAmB,OAAgB;QAAhB,YAAO,GAAP,OAAO,CAAS;IAAG,CAAC;IACvC,UAAU,CAAC,GAAW;QACpB,IAAI,CAAC,OAAO,GAAG,GAAG,CAAC;IACrB,CAAC;IACD,IAAI,GAAmC,EAAE,CAAC;CAC3C;AACD,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
function classifyPlaywrightError(error) {
|
|
2
|
+
const errorMessage = error.message.toLowerCase();
|
|
3
|
+
// Timeout Errors
|
|
4
|
+
if (error.name === "TimeoutError" || errorMessage.includes("timeout")) {
|
|
5
|
+
return {
|
|
6
|
+
errorType: "TimeoutError",
|
|
7
|
+
errorMessage: error.message,
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
// Network Errors
|
|
11
|
+
if (errorMessage.includes("connect econnrefused") ||
|
|
12
|
+
errorMessage.includes("net::") ||
|
|
13
|
+
errorMessage.includes("network") ||
|
|
14
|
+
errorMessage.includes("connection refused") ||
|
|
15
|
+
errorMessage.includes("failed to fetch")) {
|
|
16
|
+
return {
|
|
17
|
+
errorType: "NetworkError",
|
|
18
|
+
errorMessage: error.message,
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
// Selector Errors
|
|
22
|
+
if (errorMessage.includes("no element matches selector") ||
|
|
23
|
+
errorMessage.includes("no node found for selector") ||
|
|
24
|
+
errorMessage.includes("resolved to") ||
|
|
25
|
+
errorMessage.includes("element not found")) {
|
|
26
|
+
return {
|
|
27
|
+
errorType: "SelectorError",
|
|
28
|
+
errorMessage: error.message,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
// Frame Errors
|
|
32
|
+
if (errorMessage.includes("frame was detached") ||
|
|
33
|
+
errorMessage.includes("frame not found") ||
|
|
34
|
+
errorMessage.includes("execution context was destroyed")) {
|
|
35
|
+
return {
|
|
36
|
+
errorType: "FrameError",
|
|
37
|
+
errorMessage: error.message,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
// Element State Errors
|
|
41
|
+
if (errorMessage.includes("element is not clickable") ||
|
|
42
|
+
errorMessage.includes("element is outside of viewport") ||
|
|
43
|
+
errorMessage.includes("element is not visible") ||
|
|
44
|
+
errorMessage.includes("element is disabled")) {
|
|
45
|
+
return {
|
|
46
|
+
errorType: "ElementStateError",
|
|
47
|
+
errorMessage: error.message,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
// Browser Context Errors
|
|
51
|
+
if (errorMessage.includes("target closed") ||
|
|
52
|
+
errorMessage.includes("browser has been closed") ||
|
|
53
|
+
errorMessage.includes("connection closed")) {
|
|
54
|
+
return {
|
|
55
|
+
errorType: "BrowserContextError",
|
|
56
|
+
errorMessage: error.message,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
// Screenshot Errors
|
|
60
|
+
if (errorMessage.includes("failed to save screenshot") ||
|
|
61
|
+
errorMessage.includes("screenshot") ||
|
|
62
|
+
(errorMessage.includes("enoent") && errorMessage.includes("screenshots"))) {
|
|
63
|
+
return {
|
|
64
|
+
errorType: "ScreenshotError",
|
|
65
|
+
errorMessage: error.message,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
// Type Errors
|
|
69
|
+
if (errorMessage.includes("cannot type") ||
|
|
70
|
+
errorMessage.includes("element is not an <input>") ||
|
|
71
|
+
errorMessage.includes("element is not focusable")) {
|
|
72
|
+
return {
|
|
73
|
+
errorType: "TypeError",
|
|
74
|
+
errorMessage: error.message,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
// Evaluation Errors
|
|
78
|
+
if (errorMessage.includes("evaluation failed") ||
|
|
79
|
+
errorMessage.includes("execution context was destroyed") ||
|
|
80
|
+
errorMessage.includes("cannot execute in detached frame")) {
|
|
81
|
+
return {
|
|
82
|
+
errorType: "EvaluationError",
|
|
83
|
+
errorMessage: error.message,
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
// Assertion Errors
|
|
87
|
+
if (error.name === "AssertionError" || errorMessage.includes("expect(") || errorMessage.includes("assertion")) {
|
|
88
|
+
return {
|
|
89
|
+
errorType: "AssertionError",
|
|
90
|
+
errorMessage: error.message,
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
// Default case for unrecognized errors
|
|
94
|
+
return {
|
|
95
|
+
errorType: "UnknownError",
|
|
96
|
+
errorMessage: error.message,
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
function classifyJSError(error) {
|
|
100
|
+
const errorMessage = error.message.toLowerCase();
|
|
101
|
+
// Syntax Errors
|
|
102
|
+
if (error.name === "SyntaxError" || errorMessage.includes("syntax error")) {
|
|
103
|
+
return {
|
|
104
|
+
errorType: "SyntaxError",
|
|
105
|
+
errorMessage: error.message,
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
// Reference Errors
|
|
109
|
+
if (error.name === "ReferenceError" || errorMessage.includes("reference error")) {
|
|
110
|
+
return {
|
|
111
|
+
errorType: "ReferenceError",
|
|
112
|
+
errorMessage: error.message,
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
// Type Errors
|
|
116
|
+
if (error.name === "TypeError" || errorMessage.includes("type error")) {
|
|
117
|
+
return {
|
|
118
|
+
errorType: "TypeError",
|
|
119
|
+
errorMessage: error.message,
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
// Range Errors
|
|
123
|
+
if (error.name === "RangeError" || errorMessage.includes("range error")) {
|
|
124
|
+
return {
|
|
125
|
+
errorType: "RangeError",
|
|
126
|
+
errorMessage: error.message,
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
// Default case for unrecognized errors
|
|
130
|
+
return {
|
|
131
|
+
errorType: "UnknownError",
|
|
132
|
+
errorMessage: error.message,
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
const classifyErrorFromInfo = (error, info) => {
|
|
136
|
+
const failCause = info?.failCause;
|
|
137
|
+
if (!failCause) {
|
|
138
|
+
return {
|
|
139
|
+
errorType: "UnknownError",
|
|
140
|
+
errorMessage: error.message,
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
if (failCause.enabled === false) {
|
|
144
|
+
return {
|
|
145
|
+
errorType: "ElementDisabled",
|
|
146
|
+
errorMessage: failCause.lastError,
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
if (failCause.visible === false) {
|
|
150
|
+
return {
|
|
151
|
+
errorType: "ElementNotVisible",
|
|
152
|
+
errorMessage: failCause.lastError,
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
if (failCause.textNotFound) {
|
|
156
|
+
return {
|
|
157
|
+
errorType: "TextNotFoundError",
|
|
158
|
+
errorMessage: failCause.lastError,
|
|
159
|
+
};
|
|
160
|
+
}
|
|
161
|
+
if (failCause.iframeNotFound) {
|
|
162
|
+
return {
|
|
163
|
+
errorType: "IframeNotFoundError",
|
|
164
|
+
errorMessage: failCause.lastError,
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
if (failCause.locatorNotFound) {
|
|
168
|
+
return {
|
|
169
|
+
errorType: "ElementNotFoundError",
|
|
170
|
+
errorMessage: failCause.lastError,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
if (failCause.foundMultiple) {
|
|
174
|
+
return {
|
|
175
|
+
errorType: "MultipleElementsFoundError",
|
|
176
|
+
errorMessage: failCause.lastError ?? `Found ${failCause.count} elements`,
|
|
177
|
+
};
|
|
178
|
+
}
|
|
179
|
+
if (failCause.assertionFailed) {
|
|
180
|
+
return {
|
|
181
|
+
errorType: "AssertionError",
|
|
182
|
+
errorMessage: failCause.lastError,
|
|
183
|
+
};
|
|
184
|
+
}
|
|
185
|
+
return {
|
|
186
|
+
errorType: "UnknownError",
|
|
187
|
+
errorMessage: error.message,
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
const getHumanReadableErrorMessage = (error, info) => {
|
|
191
|
+
// @ts-ignore
|
|
192
|
+
if (error.errors && error.errors.length > 0) {
|
|
193
|
+
// @ts-ignore
|
|
194
|
+
return getHumanReadableErrorMessage(error.errors[0], info);
|
|
195
|
+
}
|
|
196
|
+
let errorClassification = classifyErrorFromInfo(error, info);
|
|
197
|
+
if (errorClassification.errorType === "UnknownError") {
|
|
198
|
+
errorClassification = classifyPlaywrightError(error);
|
|
199
|
+
}
|
|
200
|
+
if (errorClassification.errorType === "UnknownError") {
|
|
201
|
+
errorClassification = classifyJSError(error);
|
|
202
|
+
}
|
|
203
|
+
return errorClassification;
|
|
204
|
+
};
|
|
205
|
+
export { getHumanReadableErrorMessage };
|
|
206
|
+
//# sourceMappingURL=error-messages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error-messages.js","sourceRoot":"","sources":["../../src/error-messages.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const verifyFileExists: (filePath: string, options: any, context: any, world: any) => Promise<void>;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import * as fs from "fs"; // sync fs
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import { promises as fsAsync } from "fs"; // async fs
|
|
4
|
+
import { _commandError, _commandFinally, _preCommand } from "./command_common.js";
|
|
5
|
+
import { Types } from "./stable_browser.js";
|
|
6
|
+
const checkFileAccess = (filePath, accessMode) => {
|
|
7
|
+
return new Promise((resolve) => {
|
|
8
|
+
fs.access(filePath, accessMode, (err) => {
|
|
9
|
+
resolve(!err);
|
|
10
|
+
});
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
const getFileName = (filePath) => {
|
|
14
|
+
const platform = process.platform;
|
|
15
|
+
return platform === "win32" ? filePath.split("\\").pop() || "" : filePath.split("/").pop() || "";
|
|
16
|
+
};
|
|
17
|
+
// Simplified regex check
|
|
18
|
+
function testForRegex(text) {
|
|
19
|
+
return text.startsWith("regex:");
|
|
20
|
+
}
|
|
21
|
+
export const verifyFileExists = async (filePath, options, context, world) => {
|
|
22
|
+
if (!options)
|
|
23
|
+
options = {};
|
|
24
|
+
const fileName = getFileName(filePath);
|
|
25
|
+
let isSoft = false;
|
|
26
|
+
const match = filePath.match(/(soft:)?(regex:|exact:|contains:)(.*)/);
|
|
27
|
+
if (match) {
|
|
28
|
+
isSoft = !!match[1]; // true if 'soft:' is present
|
|
29
|
+
}
|
|
30
|
+
const state = {
|
|
31
|
+
locate: false,
|
|
32
|
+
scroll: false,
|
|
33
|
+
screenshot: false,
|
|
34
|
+
highlight: false,
|
|
35
|
+
throwError: !isSoft, // don't throw error for soft assertions
|
|
36
|
+
operation: "verifyFileExists",
|
|
37
|
+
value: filePath,
|
|
38
|
+
text: `Verify file ${fileName} exists`,
|
|
39
|
+
options,
|
|
40
|
+
type: Types.VERIFY_FILE_EXISTS,
|
|
41
|
+
world,
|
|
42
|
+
};
|
|
43
|
+
await _preCommand(state, context.web);
|
|
44
|
+
try {
|
|
45
|
+
let pathToMatch = filePath;
|
|
46
|
+
if (isSoft) {
|
|
47
|
+
pathToMatch = filePath.replace(/^soft:/, ""); // remove soft: prefix for parsing
|
|
48
|
+
}
|
|
49
|
+
let dir;
|
|
50
|
+
let input;
|
|
51
|
+
console.log("pathSeparator", path.sep);
|
|
52
|
+
if (pathToMatch.includes("regex:")) {
|
|
53
|
+
const regexIndex = pathToMatch.indexOf("regex:");
|
|
54
|
+
// Handle both forward slashes and backslashes before regex:
|
|
55
|
+
let dirPart = pathToMatch.substring(0, regexIndex);
|
|
56
|
+
// Remove trailing slash/backslash
|
|
57
|
+
if (dirPart.endsWith("/") || dirPart.endsWith("\\")) {
|
|
58
|
+
dirPart = dirPart.slice(0, -1);
|
|
59
|
+
}
|
|
60
|
+
dir = dirPart;
|
|
61
|
+
input = pathToMatch.substring(regexIndex);
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
// Use path.sep to handle both forward and backward slashes
|
|
65
|
+
const pathSeparator = path.sep;
|
|
66
|
+
const lastSlashIndex = pathToMatch.lastIndexOf(pathSeparator);
|
|
67
|
+
// If no separator found, try the other separator (for mixed paths)
|
|
68
|
+
if (lastSlashIndex === -1) {
|
|
69
|
+
const alternativeSeparator = pathSeparator === "/" ? "\\" : "/";
|
|
70
|
+
const altLastSlashIndex = pathToMatch.lastIndexOf(alternativeSeparator);
|
|
71
|
+
if (altLastSlashIndex !== -1) {
|
|
72
|
+
dir = pathToMatch.substring(0, altLastSlashIndex);
|
|
73
|
+
input = pathToMatch.substring(altLastSlashIndex + 1);
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
// No separator found, assume current directory
|
|
77
|
+
dir = ".";
|
|
78
|
+
input = pathToMatch;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
else {
|
|
82
|
+
dir = pathToMatch.substring(0, lastSlashIndex);
|
|
83
|
+
input = pathToMatch.substring(lastSlashIndex + 1);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
if (isSoft) {
|
|
87
|
+
dir = dir.slice(0, -5);
|
|
88
|
+
}
|
|
89
|
+
console.log(`Directory to check: ${dir}`);
|
|
90
|
+
console.log(`Input pattern: ${input}`);
|
|
91
|
+
const files = await fsAsync.readdir(dir);
|
|
92
|
+
let found = false;
|
|
93
|
+
if (input.startsWith("exact:")) {
|
|
94
|
+
const target = input.replace("exact:", "");
|
|
95
|
+
found = files.includes(target);
|
|
96
|
+
}
|
|
97
|
+
else if (input.startsWith("contains:")) {
|
|
98
|
+
const target = input.replace("contains:", "");
|
|
99
|
+
found = files.some((f) => f.includes(target));
|
|
100
|
+
}
|
|
101
|
+
else if (input.startsWith("format:")) {
|
|
102
|
+
const extension = input.replace("format:", "");
|
|
103
|
+
found = files.some((f) => f.endsWith(`.${extension}`));
|
|
104
|
+
}
|
|
105
|
+
else if (testForRegex(input)) {
|
|
106
|
+
let raw = input.replace("regex:", "").trim(); // e.g. "/file/i" or "file.*::i"
|
|
107
|
+
let pattern = raw;
|
|
108
|
+
let flags = "";
|
|
109
|
+
// Normalize delimiters: convert backslash delimiters to forward slash delimiters
|
|
110
|
+
// This preserves the regex pattern while standardizing the delimiter format
|
|
111
|
+
if (raw.startsWith("\\") && raw.lastIndexOf("\\") > 0) {
|
|
112
|
+
// Convert \pattern\flags to /pattern/flags format
|
|
113
|
+
const lastBackslash = raw.lastIndexOf("\\");
|
|
114
|
+
const patternPart = raw.substring(1, lastBackslash);
|
|
115
|
+
const flagsPart = raw.substring(lastBackslash + 1);
|
|
116
|
+
raw = `/${patternPart}/${flagsPart}`;
|
|
117
|
+
}
|
|
118
|
+
// Now handle the standardized format
|
|
119
|
+
if (raw.startsWith("/") && raw.lastIndexOf("/") > 0) {
|
|
120
|
+
// Standard regex format: /pattern/flags
|
|
121
|
+
const lastSlash = raw.lastIndexOf("/");
|
|
122
|
+
flags = raw.substring(lastSlash + 1);
|
|
123
|
+
pattern = raw.substring(1, lastSlash);
|
|
124
|
+
}
|
|
125
|
+
else if (raw.includes("::")) {
|
|
126
|
+
// Alternative format: pattern::flags
|
|
127
|
+
[pattern, flags] = raw.split("::");
|
|
128
|
+
}
|
|
129
|
+
console.log(`Regex pattern: ${pattern}, flags: ${flags}`);
|
|
130
|
+
try {
|
|
131
|
+
const regex = new RegExp(pattern, flags);
|
|
132
|
+
found = files.some((f) => {
|
|
133
|
+
const matched = regex.test(f);
|
|
134
|
+
return matched;
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
catch (regexError) {
|
|
138
|
+
throw new Error(`Invalid regex pattern: ${pattern}`);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
// Fallback to exact path check
|
|
143
|
+
found = await checkFileAccess(pathToMatch, fs.constants.F_OK);
|
|
144
|
+
}
|
|
145
|
+
if (!found) {
|
|
146
|
+
console.log(`Available files in '${dir}':`, files);
|
|
147
|
+
if (!isSoft) {
|
|
148
|
+
throw new Error(`No file matched the pattern: ${filePath}`);
|
|
149
|
+
}
|
|
150
|
+
else {
|
|
151
|
+
console.warn(`Soft assertion failed for pattern: ${filePath}`);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
else {
|
|
155
|
+
console.log(`File verification successful for pattern: ${input}`);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
catch (err) {
|
|
159
|
+
await _commandError(state, err, context.web);
|
|
160
|
+
}
|
|
161
|
+
finally {
|
|
162
|
+
await _commandFinally(state, context.web);
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
//# sourceMappingURL=file_checker.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file_checker.js","sourceRoot":"","sources":["../../src/file_checker.ts"],"names":[],"mappings":"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"}
|
package/lib/find_function.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find_function.js","sourceRoot":"","sources":["../../src/find_function.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,KAAK,EAAE,KAAiB,EAAE,EAAE;IAChD,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE;
|
|
1
|
+
{"version":3,"file":"find_function.js","sourceRoot":"","sources":["../../src/find_function.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,KAAK,EAAE,KAAiB,EAAE,EAAE;IAChD,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACjC,OAAO,IAAI,CAAC;IACd,CAAC;IACD,IAAI,QAAQ,GAAG,IAAI,CAAC;IACpB,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;YAC9B,QAAQ,GAAG,IAAI,CAAC;YAChB,MAAM;QACR,CAAC;IACH,CAAC;IACD,IAAI,CAAC,QAAQ,EAAE,CAAC;QACd,QAAQ,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACtB,CAAC;IACD,MAAM,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC;IAC9C,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,OAAO,QAAQ,CAAC;IAClB,CAAC;IACD,MAAM,YAAY,GAAG,QAAQ,CAAC,IAAI,CAAC;IACnC,MAAM,QAAQ,GAAG,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7C,qCAAqC;IACrC,mBAAmB;IACnB,MAAM;IAEN,MAAM,WAAW,GAAG,cAAc,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAE9C,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC;IACf,IAAI,SAAS,GAAG,CAAC,CAAC;IAClB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACtC,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;QACtB,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC;QAC/B,IAAI,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC;YACtC,SAAS;QACX,CAAC;QACD,MAAM,mBAAmB,GAAG,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACnE,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;YACrC,IAAI,mBAAmB,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;gBAC7C,KAAK,EAAE,CAAC;YACV,CAAC;QACH,CAAC;QACD,IAAI,KAAK,GAAG,SAAS,EAAE,CAAC;YACtB,SAAS,GAAG,KAAK,CAAC;YAClB,KAAK,GAAG,CAAC,CAAC;QACZ,CAAC;IACH,CAAC;IACD,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,CAAC;QACjB,OAAO,QAAQ,CAAC;IAClB,CAAC;IACD,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC;AACtB,CAAC,CAAC;AAEF,OAAO,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generation_scripts.js","sourceRoot":"","sources":["../../src/generation_scripts.ts"],"names":[],"mappings":""}
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -7,4 +7,7 @@ export * from "./browser_manager.js";
|
|
|
7
7
|
export * from "./analyze_helper.js";
|
|
8
8
|
export * from "./find_function.js";
|
|
9
9
|
export * from "./utils.js";
|
|
10
|
+
export * from "./table.js";
|
|
11
|
+
export * from "./bruno.js";
|
|
12
|
+
export * from "./file_checker.js";
|
|
10
13
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC"}
|
package/lib/init_browser.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ import { TestContext } from "./test_context.js";
|
|
|
3
3
|
import { StableBrowser } from "./stable_browser.js";
|
|
4
4
|
import { Browser as PlaywrightBrowser } from "playwright";
|
|
5
5
|
import { Browser } from "./browser_manager.js";
|
|
6
|
-
|
|
6
|
+
import { InitScripts } from "./generation_scripts.js";
|
|
7
|
+
declare const getContext: (environment: Environment | null, headless: boolean | undefined, world: any, logger?: null, appName?: string | null, createStable?: boolean, web?: StableBrowser | null, moveToRight?: number, reportFolder?: string | null, initScripts?: InitScripts | null, storageState?: any | null) => Promise<TestContext>;
|
|
8
|
+
declare const refreshBrowser: (web: any, sessionPath: string, world: any) => Promise<void>;
|
|
7
9
|
declare const closeBrowser: (browser?: Browser | PlaywrightBrowser) => Promise<void>;
|
|
8
|
-
export { getContext, closeBrowser };
|
|
10
|
+
export { getContext, closeBrowser, refreshBrowser };
|