automation_model 1.0.407-dev → 1.0.407
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/lib/api.d.ts +43 -1
- package/lib/api.js +225 -41
- package/lib/api.js.map +1 -1
- package/lib/auto_page.d.ts +2 -1
- package/lib/auto_page.js +43 -17
- package/lib/auto_page.js.map +1 -1
- package/lib/browser_manager.d.ts +7 -3
- package/lib/browser_manager.js +120 -19
- package/lib/browser_manager.js.map +1 -1
- package/lib/command_common.d.ts +6 -0
- package/lib/command_common.js +160 -0
- package/lib/command_common.js.map +1 -0
- package/lib/environment.d.ts +3 -0
- package/lib/environment.js +5 -2
- package/lib/environment.js.map +1 -1
- package/lib/error-messages.d.ts +6 -0
- package/lib/error-messages.js +188 -0
- package/lib/error-messages.js.map +1 -0
- 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 +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/init_browser.d.ts +3 -1
- package/lib/init_browser.js +67 -4
- 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 +36 -0
- package/lib/locator.js +165 -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 +3 -0
- package/lib/network.js +157 -0
- package/lib/network.js.map +1 -0
- package/lib/scripts/axe.mini.js +12 -0
- package/lib/scripts/find_text.js +126 -0
- package/lib/stable_browser.d.ts +74 -31
- package/lib/stable_browser.js +1181 -1189
- package/lib/stable_browser.js.map +1 -1
- package/lib/table.d.ts +13 -0
- package/lib/table.js +187 -0
- package/lib/table.js.map +1 -0
- package/lib/test_context.d.ts +4 -0
- package/lib/test_context.js +12 -9
- package/lib/test_context.js.map +1 -1
- package/lib/utils.d.ts +14 -1
- package/lib/utils.js +304 -5
- package/lib/utils.js.map +1 -1
- package/package.json +13 -8
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Find elements by universal selector and check if they match the provided text pattern.
|
|
3
|
+
*/
|
|
4
|
+
function findMatchingElements(textToMatch, options = {}, root = document) {
|
|
5
|
+
function findLeafElements(elements) {
|
|
6
|
+
const nonLeaf = new Set();
|
|
7
|
+
elements.forEach((el) => {
|
|
8
|
+
elements.forEach((otherEl) => {
|
|
9
|
+
if (el !== otherEl && el.contains(otherEl)) {
|
|
10
|
+
nonLeaf.add(el);
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
return elements.filter((el) => !nonLeaf.has(el));
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function escapeRegex(s) {
|
|
18
|
+
return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
19
|
+
}
|
|
20
|
+
function collectAllShadowDomElements(element, result = []) {
|
|
21
|
+
// Check and add the element if it has a shadow root
|
|
22
|
+
if (element instanceof Element && element.shadowRoot) {
|
|
23
|
+
result.push(element);
|
|
24
|
+
// Also search within the shadow root
|
|
25
|
+
collectAllShadowDomElements(element.shadowRoot, result);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// Iterate over child nodes
|
|
29
|
+
element.childNodes.forEach((child) => {
|
|
30
|
+
// Recursively call the function for each child node
|
|
31
|
+
if (child instanceof Element) {
|
|
32
|
+
collectAllShadowDomElements(child, result);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
return result;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Convert a single snippet into an OR group for:
|
|
40
|
+
* 1) literal text
|
|
41
|
+
* 2) interpreted as a raw regex
|
|
42
|
+
*/
|
|
43
|
+
function snippetToAlternatives(snippet) {
|
|
44
|
+
if (snippet.startsWith("/") && snippet.endsWith("/")) {
|
|
45
|
+
return snippet.slice(1, -1);
|
|
46
|
+
}
|
|
47
|
+
const literalPattern = escapeRegex(snippet);
|
|
48
|
+
return literalPattern;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Build a single RegExp that:
|
|
53
|
+
* - splits the user's text by whitespace
|
|
54
|
+
* - for each token, matches either literal or regex
|
|
55
|
+
* - allows arbitrary whitespace between tokens
|
|
56
|
+
*/
|
|
57
|
+
function buildLooseRegexFromText(text, options) {
|
|
58
|
+
if (options.singleRegex === true) {
|
|
59
|
+
return new RegExp(text, options.ignoreCase === false ? "" : "i");
|
|
60
|
+
}
|
|
61
|
+
const tokens = text.split(/\s+/);
|
|
62
|
+
let pattern = tokens.map((token) => snippetToAlternatives(token)).join("\\s*");
|
|
63
|
+
if (options.exactMatch === true) {
|
|
64
|
+
pattern = `^${pattern}$`;
|
|
65
|
+
}
|
|
66
|
+
// check if one of the tokens end with /i
|
|
67
|
+
const endWithI = tokens.some((token) => token.endsWith("/i"));
|
|
68
|
+
return new RegExp(pattern, endWithI || options.ignoreCase === false ? "" : "i");
|
|
69
|
+
}
|
|
70
|
+
let climb = 0;
|
|
71
|
+
// check if the text to merge end with ^ follow by a number (climb), e.g. "some text^2" we should set the climb and remove the ^2 from the text
|
|
72
|
+
if (textToMatch.match(/\^(\d+)$/)) {
|
|
73
|
+
climb = parseInt(textToMatch.match(/\^(\d+)$/)[1]);
|
|
74
|
+
textToMatch = textToMatch.replace(/\^(\d+)$/, "");
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
let tag = options.tag || "*";
|
|
78
|
+
// Build the pattern
|
|
79
|
+
const regex = buildLooseRegexFromText(textToMatch, options);
|
|
80
|
+
// Query all elements
|
|
81
|
+
let elements = Array.from(root.querySelectorAll(tag));
|
|
82
|
+
|
|
83
|
+
let shadowHosts = [];
|
|
84
|
+
collectAllShadowDomElements(document, shadowHosts);
|
|
85
|
+
for (let i = 0; i < shadowHosts.length; i++) {
|
|
86
|
+
let shadowElement = shadowHosts[i].shadowRoot;
|
|
87
|
+
if (!shadowElement) {
|
|
88
|
+
continue;
|
|
89
|
+
}
|
|
90
|
+
let shadowElements = Array.from(shadowElement.querySelectorAll(tag));
|
|
91
|
+
elements = elements.concat(shadowElements);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// filter out elements that are style or script tags
|
|
95
|
+
elements = elements.filter((el) => !["STYLE", "SCRIPT", "HEAD"].includes(el.tagName));
|
|
96
|
+
elements = findLeafElements(
|
|
97
|
+
elements.filter((el) => {
|
|
98
|
+
// Normalize text content
|
|
99
|
+
let normalized = options.innerText === false || !el.innerText ? el.textContent : el.innerText;
|
|
100
|
+
if (!normalized) {
|
|
101
|
+
normalized = "";
|
|
102
|
+
}
|
|
103
|
+
let normalizedSpace = normalized.replace(/\s+/g, " ").trim();
|
|
104
|
+
let normalizedNoSpace = normalized.replace(/\s+/g, "").trim();
|
|
105
|
+
regex.lastIndex = 0; // reset if using 'g'
|
|
106
|
+
return regex.test(normalizedSpace) || regex.test(normalizedNoSpace);
|
|
107
|
+
})
|
|
108
|
+
);
|
|
109
|
+
// if climb is greater than 0, we should climb up the DOM tree for each element
|
|
110
|
+
if (climb > 0) {
|
|
111
|
+
let newElements = [];
|
|
112
|
+
for (let i = 0; i < elements.length; i++) {
|
|
113
|
+
let el = elements[i];
|
|
114
|
+
for (let j = 0; j < climb; j++) {
|
|
115
|
+
if (!el.parentElement) {
|
|
116
|
+
break;
|
|
117
|
+
}
|
|
118
|
+
el = el.parentElement;
|
|
119
|
+
}
|
|
120
|
+
newElements.push(el);
|
|
121
|
+
}
|
|
122
|
+
elements = newElements;
|
|
123
|
+
}
|
|
124
|
+
return elements;
|
|
125
|
+
}
|
|
126
|
+
window.findMatchingElements = findMatchingElements;
|
package/lib/stable_browser.d.ts
CHANGED
|
@@ -1,44 +1,81 @@
|
|
|
1
1
|
import type { Browser, Page } from "playwright";
|
|
2
|
-
|
|
2
|
+
import { Params } from "./utils.js";
|
|
3
|
+
export declare const Types: {
|
|
4
|
+
CLICK: string;
|
|
5
|
+
NAVIGATE: string;
|
|
6
|
+
FILL: string;
|
|
7
|
+
EXECUTE: string;
|
|
8
|
+
OPEN: string;
|
|
9
|
+
COMPLETE: string;
|
|
10
|
+
ASK: string;
|
|
11
|
+
GET_PAGE_STATUS: string;
|
|
12
|
+
CLICK_ROW_ACTION: string;
|
|
13
|
+
VERIFY_ELEMENT_CONTAINS_TEXT: string;
|
|
14
|
+
VERIFY_PAGE_CONTAINS_TEXT: string;
|
|
15
|
+
VERIFY_PAGE_CONTAINS_NO_TEXT: string;
|
|
16
|
+
ANALYZE_TABLE: string;
|
|
17
|
+
SELECT: string;
|
|
18
|
+
VERIFY_PAGE_PATH: string;
|
|
19
|
+
TYPE_PRESS: string;
|
|
20
|
+
PRESS: string;
|
|
21
|
+
HOVER: string;
|
|
22
|
+
CHECK: string;
|
|
23
|
+
UNCHECK: string;
|
|
24
|
+
EXTRACT: string;
|
|
25
|
+
CLOSE_PAGE: string;
|
|
26
|
+
SET_DATE_TIME: string;
|
|
27
|
+
SET_VIEWPORT: string;
|
|
28
|
+
VERIFY_VISUAL: string;
|
|
29
|
+
LOAD_DATA: string;
|
|
30
|
+
SET_INPUT: string;
|
|
31
|
+
WAIT_FOR_TEXT_TO_DISAPPEAR: string;
|
|
32
|
+
VERIFY_ATTRIBUTE: string;
|
|
33
|
+
VERIFY_TEXT_WITH_RELATION: string;
|
|
34
|
+
};
|
|
35
|
+
export declare const apps: {};
|
|
3
36
|
declare class StableBrowser {
|
|
4
37
|
browser: Browser;
|
|
5
38
|
page: Page;
|
|
6
39
|
logger: any;
|
|
7
40
|
context: any;
|
|
41
|
+
world?: any;
|
|
8
42
|
project_path: null;
|
|
9
43
|
webLogFile: null;
|
|
44
|
+
networkLogger: null;
|
|
10
45
|
configuration: null;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
scanAndManipulate(currentObj: any, _params: Params): void;
|
|
21
|
-
_getLocator(locator: any, scope: any, _params: Params): any;
|
|
46
|
+
appName: string;
|
|
47
|
+
tags: null;
|
|
48
|
+
constructor(browser: Browser, page: Page, logger?: any, context?: any, world?: any);
|
|
49
|
+
registerEventListeners(context: any): void;
|
|
50
|
+
switchApp(appName: any): Promise<void>;
|
|
51
|
+
registerConsoleLogListener(page: Page, context: any): void;
|
|
52
|
+
registerRequestListener(page: Page, context: any, logFile: string): void;
|
|
53
|
+
goto(url: string, world?: null): Promise<void>;
|
|
54
|
+
_getLocator(locator: any, scope: any, _params: any): any;
|
|
22
55
|
_locateElmentByTextClimbCss(scope: any, text: any, climb: any, css: any, _params: Params): Promise<string | undefined>;
|
|
23
56
|
_locateElementByText(scope: any, text1: any, tag1: any, regex1: boolean | undefined, partial1: any, _params: Params): Promise<any>;
|
|
24
57
|
_collectLocatorInformation(selectorHierarchy: any, index: number | undefined, scope: any, foundLocators: any, _params: Params, info: any, visibleOnly?: boolean): Promise<void>;
|
|
25
58
|
closeUnexpectedPopups(info: any, _params: any): Promise<{
|
|
26
59
|
rerun: boolean;
|
|
27
60
|
}>;
|
|
28
|
-
_locate(selectors: any, info: any, _params?: Params, timeout
|
|
61
|
+
_locate(selectors: any, info: any, _params?: Params, timeout: any): Promise<any>;
|
|
62
|
+
_findFrameScope(selectors: any, timeout: number | undefined, info: any): Promise<any>;
|
|
63
|
+
_getDocumentBody(selectors: any, timeout: number | undefined, info: any): Promise<any>;
|
|
29
64
|
_locate_internal(selectors: any, info: any, _params?: Params, timeout?: number): Promise<any>;
|
|
30
65
|
_scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any): Promise<{
|
|
31
66
|
foundElements: any[];
|
|
32
67
|
}>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
68
|
+
simpleClick(elementDescription: any, _params?: Params, options?: {}, world?: null): Promise<void>;
|
|
69
|
+
simpleClickType(elementDescription: any, value: any, _params?: Params, options?: {}, world?: null): Promise<void>;
|
|
70
|
+
click(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
|
|
71
|
+
setCheck(selectors: any, checked?: boolean, _params?: Params, options?: {}, world?: null): Promise<any>;
|
|
72
|
+
hover(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
|
|
73
|
+
selectOption(selectors: any, values: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
74
|
+
type(_value: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
38
75
|
setInputValue(selectors: any, value: any, _params?: null, options?: {}, world?: null): Promise<void>;
|
|
39
76
|
setDateTime(selectors: any, value: any, format?: null, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<void>;
|
|
40
|
-
clickType(selectors: any, _value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<
|
|
41
|
-
fill(selectors: any, value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<
|
|
77
|
+
clickType(selectors: any, _value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
78
|
+
fill(selectors: any, value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
42
79
|
getText(selectors: any, _params?: null, options?: {}, info?: {}, world?: null): Promise<{
|
|
43
80
|
text: any;
|
|
44
81
|
screenshotId: any;
|
|
@@ -65,9 +102,10 @@ declare class StableBrowser {
|
|
|
65
102
|
value: any;
|
|
66
103
|
element?: undefined;
|
|
67
104
|
}>;
|
|
68
|
-
containsPattern(selectors: any, pattern: any, text: any, _params?: null, options?: {}, world?: null): Promise<
|
|
69
|
-
containsText(selectors: any, text: any, climb: any, _params?: null, options?: {}, world?: null): Promise<
|
|
105
|
+
containsPattern(selectors: any, pattern: any, text: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
106
|
+
containsText(selectors: any, text: any, climb: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
70
107
|
_getDataFile(world?: null): string;
|
|
108
|
+
waitForUserInput(message: any, world?: null): Promise<void>;
|
|
71
109
|
setTestData(testData: any, world?: null): void;
|
|
72
110
|
_getDataFilePath(fileName: any): string;
|
|
73
111
|
_parseCSVSync(filePath: any): Promise<unknown>;
|
|
@@ -80,28 +118,33 @@ declare class StableBrowser {
|
|
|
80
118
|
getTestData(world?: null): {};
|
|
81
119
|
_screenShot(options?: {}, world?: null, info?: null): Promise<{}>;
|
|
82
120
|
takeScreenshot(screenshotPath: any): Promise<any>;
|
|
83
|
-
verifyElementExistInPage(selectors: any, _params?: null, options?: {}, world?: null): Promise<
|
|
84
|
-
extractAttribute(selectors: any, attribute: any, variable: any, _params?: null, options?: {}, world?: null): Promise<
|
|
121
|
+
verifyElementExistInPage(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
122
|
+
extractAttribute(selectors: any, attribute: any, variable: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
123
|
+
verifyAttribute(selectors: any, attribute: any, value: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
85
124
|
extractEmailData(emailAddress: any, options: any, world: any): Promise<{
|
|
86
125
|
emailUrl: any;
|
|
87
126
|
emailCode: any;
|
|
88
127
|
}>;
|
|
89
128
|
_highlightElements(scope: any, css: any): Promise<void>;
|
|
90
129
|
verifyPagePath(pathPart: any, options?: {}, world?: null): Promise<{} | undefined>;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
130
|
+
findTextInAllFrames(dateAlternatives: any, numberAlternatives: any, text: any, state: any): Promise<any[]>;
|
|
131
|
+
verifyTextExistInPage(text: any, options?: {}, world?: null): Promise<any>;
|
|
132
|
+
waitForTextToDisappear(text: any, options?: {}, world?: null): Promise<any>;
|
|
133
|
+
verifyTextRelatedToText(textAnchor: string, climb: number, textToVerify: string, options?: {}, world?: any): Promise<any>;
|
|
134
|
+
visualVerification(text: any, options?: {}, world?: null): Promise<{} | undefined>;
|
|
94
135
|
verifyTableData(selectors: any, data: any, _params?: null, options?: {}, world?: null): Promise<void>;
|
|
95
136
|
getTableData(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
|
96
|
-
analyzeTable(selectors: any, query: any, operator: any, value: any, _params?: null, options?: {}, world?: null): Promise<{}>;
|
|
97
|
-
_replaceWithLocalData(value: any, world: any, _decrypt?: boolean, totpWait?: boolean): Promise<
|
|
137
|
+
analyzeTable(selectors: any, query: any, operator: any, value: any, _params?: null, options?: {}, world?: null): Promise<{} | undefined>;
|
|
138
|
+
_replaceWithLocalData(value: any, world: any, _decrypt?: boolean, totpWait?: boolean): Promise<string>;
|
|
98
139
|
_getLoadTimeout(options: any): number;
|
|
99
140
|
waitForPageLoad(options?: {}, world?: null): Promise<void>;
|
|
100
141
|
closePage(options?: {}, world?: null): Promise<void>;
|
|
142
|
+
saveTestDataAsGlobal(options: any, world: any): void;
|
|
101
143
|
setViewportSize(width: number, hight: number, options?: {}, world?: null): Promise<void>;
|
|
102
144
|
reloadPage(options?: {}, world?: null): Promise<void>;
|
|
103
145
|
scrollIfNeeded(element: any, info: any): Promise<void>;
|
|
104
|
-
|
|
146
|
+
beforeStep(world: any, step: any): Promise<void>;
|
|
147
|
+
afterStep(world: any, step: any): Promise<void>;
|
|
105
148
|
}
|
|
106
149
|
type JsonTimestamp = number;
|
|
107
150
|
type JsonResultPassed = {
|
|
@@ -116,7 +159,7 @@ type JsonResultFailed = {
|
|
|
116
159
|
message?: string;
|
|
117
160
|
};
|
|
118
161
|
type JsonCommandResult = JsonResultPassed | JsonResultFailed;
|
|
119
|
-
type JsonCommandReport = {
|
|
162
|
+
export type JsonCommandReport = {
|
|
120
163
|
type: string;
|
|
121
164
|
value?: string;
|
|
122
165
|
text: string;
|