automation_model 1.0.418-dev → 1.0.418

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 (57) hide show
  1. package/README.md +130 -0
  2. package/lib/api.d.ts +43 -1
  3. package/lib/api.js +228 -41
  4. package/lib/api.js.map +1 -1
  5. package/lib/auto_page.d.ts +5 -2
  6. package/lib/auto_page.js +144 -44
  7. package/lib/auto_page.js.map +1 -1
  8. package/lib/browser_manager.d.ts +7 -3
  9. package/lib/browser_manager.js +153 -48
  10. package/lib/browser_manager.js.map +1 -1
  11. package/lib/command_common.d.ts +6 -0
  12. package/lib/command_common.js +182 -0
  13. package/lib/command_common.js.map +1 -0
  14. package/lib/environment.d.ts +3 -0
  15. package/lib/environment.js +5 -2
  16. package/lib/environment.js.map +1 -1
  17. package/lib/error-messages.d.ts +6 -0
  18. package/lib/error-messages.js +206 -0
  19. package/lib/error-messages.js.map +1 -0
  20. package/lib/generation_scripts.d.ts +4 -0
  21. package/lib/generation_scripts.js +2 -0
  22. package/lib/generation_scripts.js.map +1 -0
  23. package/lib/index.d.ts +1 -0
  24. package/lib/index.js +1 -0
  25. package/lib/index.js.map +1 -1
  26. package/lib/init_browser.d.ts +5 -2
  27. package/lib/init_browser.js +118 -7
  28. package/lib/init_browser.js.map +1 -1
  29. package/lib/locate_element.d.ts +7 -0
  30. package/lib/locate_element.js +215 -0
  31. package/lib/locate_element.js.map +1 -0
  32. package/lib/locator.d.ts +36 -0
  33. package/lib/locator.js +165 -0
  34. package/lib/locator.js.map +1 -1
  35. package/lib/locator_log.d.ts +26 -0
  36. package/lib/locator_log.js +69 -0
  37. package/lib/locator_log.js.map +1 -0
  38. package/lib/network.d.ts +3 -0
  39. package/lib/network.js +183 -0
  40. package/lib/network.js.map +1 -0
  41. package/lib/scripts/axe.mini.js +12 -0
  42. package/lib/stable_browser.d.ts +98 -36
  43. package/lib/stable_browser.js +1680 -1271
  44. package/lib/stable_browser.js.map +1 -1
  45. package/lib/table.d.ts +13 -0
  46. package/lib/table.js +187 -0
  47. package/lib/table.js.map +1 -0
  48. package/lib/table_helper.d.ts +19 -0
  49. package/lib/table_helper.js +101 -0
  50. package/lib/table_helper.js.map +1 -0
  51. package/lib/test_context.d.ts +6 -0
  52. package/lib/test_context.js +13 -9
  53. package/lib/test_context.js.map +1 -1
  54. package/lib/utils.d.ts +19 -1
  55. package/lib/utils.js +555 -5
  56. package/lib/utils.js.map +1 -1
  57. package/package.json +14 -9
@@ -1,44 +1,89 @@
1
1
  import type { Browser, Page } from "playwright";
2
- type Params = Record<string, string>;
2
+ import { Params } from "./utils.js";
3
+ export declare const Types: {
4
+ CLICK: string;
5
+ WAIT_ELEMENT: string;
6
+ NAVIGATE: string;
7
+ FILL: string;
8
+ EXECUTE: string;
9
+ OPEN: string;
10
+ COMPLETE: string;
11
+ ASK: string;
12
+ GET_PAGE_STATUS: string;
13
+ CLICK_ROW_ACTION: string;
14
+ VERIFY_ELEMENT_CONTAINS_TEXT: string;
15
+ VERIFY_PAGE_CONTAINS_TEXT: string;
16
+ VERIFY_PAGE_CONTAINS_NO_TEXT: string;
17
+ ANALYZE_TABLE: string;
18
+ SELECT: string;
19
+ VERIFY_PAGE_PATH: string;
20
+ TYPE_PRESS: string;
21
+ PRESS: string;
22
+ HOVER: string;
23
+ CHECK: string;
24
+ UNCHECK: string;
25
+ EXTRACT: string;
26
+ CLOSE_PAGE: string;
27
+ TABLE_OPERATION: string;
28
+ SET_DATE_TIME: string;
29
+ SET_VIEWPORT: string;
30
+ VERIFY_VISUAL: string;
31
+ LOAD_DATA: string;
32
+ SET_INPUT: string;
33
+ WAIT_FOR_TEXT_TO_DISAPPEAR: string;
34
+ VERIFY_ATTRIBUTE: string;
35
+ VERIFY_TEXT_WITH_RELATION: string;
36
+ };
37
+ export declare const apps: {};
3
38
  declare class StableBrowser {
4
39
  browser: Browser;
5
40
  page: Page;
6
41
  logger: any;
7
42
  context: any;
43
+ world?: any;
8
44
  project_path: null;
9
45
  webLogFile: null;
46
+ networkLogger: null;
10
47
  configuration: null;
11
- constructor(browser: Browser, page: Page, logger?: any, context?: any);
12
- getWebLogFile(logFolder: string): string;
13
- registerConsoleLogListener(page: Page, context: any, logFile: string): void;
14
- registerRequestListener(): void;
15
- goto(url: string): Promise<void>;
16
- _validateSelectors(selectors: any): void;
17
- _fixUsingParams(text: any, _params: Params): any;
18
- _fixLocatorUsingParams(locator: any, _params: Params): any;
19
- _isObject(value: any): any;
20
- scanAndManipulate(currentObj: any, _params: Params): void;
21
- _getLocator(locator: any, scope: any, _params: any): any;
48
+ appName: string;
49
+ tags: null;
50
+ isRecording: boolean;
51
+ initSnapshotTaken: boolean;
52
+ constructor(browser: Browser, page: Page, logger?: any, context?: any, world?: any);
53
+ registerEventListeners(context: any): void;
54
+ switchApp(appName: any): Promise<void>;
55
+ registerConsoleLogListener(page: Page, context: any): void;
56
+ registerRequestListener(page: Page, context: any, logFile: string): void;
57
+ goto(url: string, world?: null): Promise<void>;
58
+ _getLocator(locator: any, scope: any, _params: any): Promise<any>;
22
59
  _locateElmentByTextClimbCss(scope: any, text: any, climb: any, css: any, _params: Params): Promise<string | undefined>;
23
- _locateElementByText(scope: any, text1: any, tag1: any, regex1: boolean | undefined, partial1: any, _params: Params): Promise<any>;
24
- _collectLocatorInformation(selectorHierarchy: any, index: number | undefined, scope: any, foundLocators: any, _params: Params, info: any, visibleOnly?: boolean): Promise<void>;
60
+ _locateElementByText(scope: any, text1: any, tag1: any, regex1: boolean | undefined, partial1: any, ignoreCase: boolean | undefined, _params: Params): Promise<{
61
+ elementCount: number;
62
+ randomToken: string;
63
+ }>;
64
+ _collectLocatorInformation(selectorHierarchy: any, index: number | undefined, scope: any, foundLocators: any, _params: Params, info: any, visibleOnly?: boolean, allowDisabled?: boolean | undefined, element_name?: null): Promise<void>;
25
65
  closeUnexpectedPopups(info: any, _params: any): Promise<{
26
66
  rerun: boolean;
27
67
  }>;
28
- _locate(selectors: any, info: any, _params?: Params, timeout?: number): Promise<any>;
29
- _locate_internal(selectors: any, info: any, _params?: Params, timeout?: number): Promise<any>;
30
- _scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any): Promise<{
68
+ _locate(selectors: any, info: any, _params?: Params, timeout: any, allowDisabled?: boolean | undefined): Promise<any>;
69
+ _findFrameScope(selectors: any, timeout: number | undefined, info: any): Promise<any>;
70
+ _getDocumentBody(selectors: any, timeout: number | undefined, info: any): Promise<any>;
71
+ _locate_internal(selectors: any, info: any, _params?: Params, timeout?: number, allowDisabled?: boolean | undefined): Promise<any>;
72
+ _scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any, allowDisabled?: boolean | undefined, element_name: any): Promise<{
31
73
  foundElements: any[];
32
74
  }>;
33
- click(selectors: any, _params?: Params, options?: {}, world?: null): Promise<{}>;
34
- setCheck(selectors: any, checked?: boolean, _params?: Params, options?: {}, world?: null): Promise<{}>;
35
- hover(selectors: any, _params?: Params, options?: {}, world?: null): Promise<{}>;
36
- selectOption(selectors: any, values: any, _params?: null, options?: {}, world?: null): Promise<{}>;
37
- type(_value: any, _params?: null, options?: {}, world?: null): Promise<{}>;
75
+ simpleClick(elementDescription: any, _params?: Params, options?: {}, world?: null): Promise<void>;
76
+ simpleClickType(elementDescription: any, value: any, _params?: Params, options?: {}, world?: null): Promise<void>;
77
+ click(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
78
+ waitForElement(selectors: any, _params?: Params, options?: {}, world?: null): Promise<boolean>;
79
+ setCheck(selectors: any, checked?: boolean, _params?: Params, options?: {}, world?: null): Promise<any>;
80
+ hover(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
81
+ selectOption(selectors: any, values: any, _params?: null, options?: {}, world?: null): Promise<any>;
82
+ type(_value: any, _params?: null, options?: {}, world?: null): Promise<any>;
38
83
  setInputValue(selectors: any, value: any, _params?: null, options?: {}, world?: null): Promise<void>;
39
84
  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<{}>;
85
+ clickType(selectors: any, _value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
86
+ fill(selectors: any, value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
42
87
  getText(selectors: any, _params?: null, options?: {}, info?: {}, world?: null): Promise<{
43
88
  text: any;
44
89
  screenshotId: any;
@@ -65,9 +110,9 @@ declare class StableBrowser {
65
110
  value: any;
66
111
  element?: undefined;
67
112
  }>;
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<{}>;
70
- _getDataFile(world?: null): string;
113
+ containsPattern(selectors: any, pattern: any, text: any, _params?: null, options?: {}, world?: null): Promise<any>;
114
+ containsText(selectors: any, text: any, climb: any, _params?: null, options?: {}, world?: null): Promise<any>;
115
+ waitForUserInput(message: any, world?: null): Promise<void>;
71
116
  setTestData(testData: any, world?: null): void;
72
117
  _getDataFilePath(fileName: any): string;
73
118
  _parseCSVSync(filePath: any): Promise<unknown>;
@@ -80,28 +125,45 @@ declare class StableBrowser {
80
125
  getTestData(world?: null): {};
81
126
  _screenShot(options?: {}, world?: null, info?: null): Promise<{}>;
82
127
  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<{}>;
128
+ verifyElementExistInPage(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
129
+ extractAttribute(selectors: any, attribute: any, variable: any, _params?: null, options?: {}, world?: null): Promise<any>;
130
+ verifyAttribute(selectors: any, attribute: any, value: any, _params?: null, options?: {}, world?: null): Promise<any>;
85
131
  extractEmailData(emailAddress: any, options: any, world: any): Promise<{
86
132
  emailUrl: any;
87
133
  emailCode: any;
88
134
  }>;
89
135
  _highlightElements(scope: any, css: any): Promise<void>;
90
136
  verifyPagePath(pathPart: any, options?: {}, world?: null): Promise<{} | undefined>;
91
- verifyTextExistInPage(text: any, options?: {}, world?: null): Promise<{}>;
92
- _getServerUrl(): string;
93
- visualVerification(text: any, options?: {}, world?: null): Promise<{}>;
137
+ findTextInAllFrames(dateAlternatives: any, numberAlternatives: any, text: any, state: any, partial?: boolean, ignoreCase?: boolean): Promise<{
138
+ elementCount: number;
139
+ randomToken: string;
140
+ }[]>;
141
+ verifyTextExistInPage(text: any, options?: {}, world?: null): Promise<any>;
142
+ waitForTextToDisappear(text: any, options?: {}, world?: null): Promise<any>;
143
+ verifyTextRelatedToText(textAnchor: string, climb: number, textToVerify: string, options?: {}, world?: any): Promise<any>;
144
+ findRelatedTextInAllFrames(textAnchor: string, climb: number, textToVerify: string, params?: Params, options?: {}, world?: any): Promise<{
145
+ elementCount: number;
146
+ randomToken: string;
147
+ }[]>;
148
+ visualVerification(text: any, options?: {}, world?: null): Promise<{} | undefined>;
94
149
  verifyTableData(selectors: any, data: any, _params?: null, options?: {}, world?: null): Promise<void>;
95
150
  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<any>;
151
+ analyzeTable(selectors: any, query: any, operator: any, value: any, _params?: null, options?: {}, world?: null): Promise<{} | undefined>;
152
+ _replaceWithLocalData(value: any, world: any, _decrypt?: boolean, totpWait?: boolean): Promise<string>;
98
153
  _getLoadTimeout(options: any): number;
154
+ _getFindElementTimeout(options: any): any;
155
+ saveStoreState(path?: string | null, world?: any): Promise<void>;
156
+ restoreSaveState(path?: string | null, world?: any): Promise<void>;
99
157
  waitForPageLoad(options?: {}, world?: null): Promise<void>;
100
158
  closePage(options?: {}, world?: null): Promise<void>;
159
+ tableCellOperation(headerText: string, rowText: string, options: any, _params: Params, world?: null): Promise<void>;
160
+ saveTestDataAsGlobal(options: any, world: any): void;
101
161
  setViewportSize(width: number, hight: number, options?: {}, world?: null): Promise<void>;
102
162
  reloadPage(options?: {}, world?: null): Promise<void>;
103
163
  scrollIfNeeded(element: any, info: any): Promise<void>;
104
- _reportToWorld(world: any, properties: JsonCommandReport): void;
164
+ beforeStep(world: any, step: any): Promise<void>;
165
+ getAriaSnapshot(): Promise<string | null>;
166
+ afterStep(world: any, step: any): Promise<void>;
105
167
  }
106
168
  type JsonTimestamp = number;
107
169
  type JsonResultPassed = {
@@ -116,7 +178,7 @@ type JsonResultFailed = {
116
178
  message?: string;
117
179
  };
118
180
  type JsonCommandResult = JsonResultPassed | JsonResultFailed;
119
- type JsonCommandReport = {
181
+ export type JsonCommandReport = {
120
182
  type: string;
121
183
  value?: string;
122
184
  text: string;