automation_model 1.0.427-dev → 1.0.427

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 +242 -41
  4. package/lib/api.js.map +1 -1
  5. package/lib/auto_page.d.ts +5 -2
  6. package/lib/auto_page.js +145 -46
  7. package/lib/auto_page.js.map +1 -1
  8. package/lib/browser_manager.d.ts +7 -3
  9. package/lib/browser_manager.js +154 -49
  10. package/lib/browser_manager.js.map +1 -1
  11. package/lib/command_common.d.ts +6 -0
  12. package/lib/command_common.js +183 -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 +124 -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 +101 -36
  43. package/lib/stable_browser.js +1785 -1244
  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 +116 -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 +14 -10
  53. package/lib/test_context.js.map +1 -1
  54. package/lib/utils.d.ts +22 -2
  55. package/lib/utils.js +652 -11
  56. package/lib/utils.js.map +1 -1
  57. package/package.json +15 -10
@@ -1,44 +1,90 @@
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
+ switchTab(tabTitleOrIndex: number | string): Promise<void>;
56
+ registerConsoleLogListener(page: Page, context: any): void;
57
+ registerRequestListener(page: Page, context: any, logFile: string): void;
58
+ goto(url: string, world?: null): Promise<void>;
59
+ _getLocator(locator: any, scope: any, _params: any): Promise<any>;
22
60
  _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>;
61
+ _locateElementByText(scope: any, text1: any, tag1: any, regex1: boolean | undefined, partial1: any, ignoreCase: boolean | undefined, _params: Params): Promise<{
62
+ elementCount: number;
63
+ randomToken: string;
64
+ }>;
65
+ _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
66
  closeUnexpectedPopups(info: any, _params: any): Promise<{
26
67
  rerun: boolean;
27
68
  }>;
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<{
69
+ _locate(selectors: any, info: any, _params?: Params, timeout: any, allowDisabled?: boolean | undefined): Promise<any>;
70
+ _findFrameScope(selectors: any, timeout: number | undefined, info: any): Promise<any>;
71
+ _getDocumentBody(selectors: any, timeout: number | undefined, info: any): Promise<any>;
72
+ _locate_internal(selectors: any, info: any, _params?: Params, timeout?: number, allowDisabled?: boolean | undefined): Promise<any>;
73
+ _scanLocatorsGroup(locatorsGroup: any, scope: any, _params: any, info: any, visibleOnly: any, allowDisabled?: boolean | undefined, element_name: any): Promise<{
31
74
  foundElements: any[];
32
75
  }>;
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<{}>;
76
+ simpleClick(elementDescription: any, _params?: Params, options?: {}, world?: null): Promise<void>;
77
+ simpleClickType(elementDescription: any, value: any, _params?: Params, options?: {}, world?: null): Promise<void>;
78
+ click(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
79
+ waitForElement(selectors: any, _params?: Params, options?: {}, world?: null): Promise<boolean>;
80
+ setCheck(selectors: any, checked?: boolean, _params?: Params, options?: {}, world?: null): Promise<any>;
81
+ hover(selectors: any, _params?: Params, options?: {}, world?: null): Promise<any>;
82
+ selectOption(selectors: any, values: any, _params?: null, options?: {}, world?: null): Promise<any>;
83
+ type(_value: any, _params?: null, options?: {}, world?: null): Promise<any>;
38
84
  setInputValue(selectors: any, value: any, _params?: null, options?: {}, world?: null): Promise<void>;
39
85
  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<{}>;
86
+ clickType(selectors: any, _value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
87
+ fill(selectors: any, value: any, enter?: boolean, _params?: null, options?: {}, world?: null): Promise<any>;
42
88
  getText(selectors: any, _params?: null, options?: {}, info?: {}, world?: null): Promise<{
43
89
  text: any;
44
90
  screenshotId: any;
@@ -65,10 +111,11 @@ declare class StableBrowser {
65
111
  value: any;
66
112
  element?: undefined;
67
113
  }>;
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;
114
+ containsPattern(selectors: any, pattern: any, text: any, _params?: null, options?: {}, world?: null): Promise<any>;
115
+ containsText(selectors: any, text: any, climb: any, _params?: null, options?: {}, world?: null): Promise<any>;
116
+ waitForUserInput(message: any, world?: null): Promise<void>;
71
117
  setTestData(testData: any, world?: null): void;
118
+ overwriteTestData(testData: any, world?: null): void;
72
119
  _getDataFilePath(fileName: any): string;
73
120
  _parseCSVSync(filePath: any): Promise<unknown>;
74
121
  loadTestData(type: string, dataSelector: string, world?: null): {
@@ -80,28 +127,46 @@ declare class StableBrowser {
80
127
  getTestData(world?: null): {};
81
128
  _screenShot(options?: {}, world?: null, info?: null): Promise<{}>;
82
129
  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<{}>;
130
+ verifyElementExistInPage(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
131
+ extractAttribute(selectors: any, attribute: any, variable: any, _params?: null, options?: {}, world?: null): Promise<any>;
132
+ verifyAttribute(selectors: any, attribute: any, value: any, _params?: null, options?: {}, world?: null): Promise<any>;
85
133
  extractEmailData(emailAddress: any, options: any, world: any): Promise<{
86
134
  emailUrl: any;
87
135
  emailCode: any;
88
136
  }>;
89
137
  _highlightElements(scope: any, css: any): Promise<void>;
90
138
  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<{}>;
139
+ verifyPageTitle(title: any, options?: {}, world?: null): Promise<{} | undefined>;
140
+ findTextInAllFrames(dateAlternatives: any, numberAlternatives: any, text: any, state: any, partial?: boolean, ignoreCase?: boolean): Promise<{
141
+ elementCount: number;
142
+ randomToken: string;
143
+ }[]>;
144
+ verifyTextExistInPage(text: any, options?: {}, world?: null): Promise<any>;
145
+ waitForTextToDisappear(text: any, options?: {}, world?: null): Promise<any>;
146
+ verifyTextRelatedToText(textAnchor: string, climb: number, textToVerify: string, options?: {}, world?: any): Promise<any>;
147
+ findRelatedTextInAllFrames(textAnchor: string, climb: number, textToVerify: string, params?: Params, options?: {}, world?: any): Promise<{
148
+ elementCount: number;
149
+ randomToken: string;
150
+ }[]>;
151
+ visualVerification(text: any, options?: {}, world?: null): Promise<{} | undefined>;
94
152
  verifyTableData(selectors: any, data: any, _params?: null, options?: {}, world?: null): Promise<void>;
95
153
  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>;
154
+ analyzeTable(selectors: any, query: any, operator: any, value: any, _params?: null, options?: {}, world?: null): Promise<{} | undefined>;
155
+ _replaceWithLocalData(value: any, world: any, _decrypt?: boolean, totpWait?: boolean): Promise<string>;
98
156
  _getLoadTimeout(options: any): number;
157
+ _getFindElementTimeout(options: any): any;
158
+ saveStoreState(path?: string | null, world?: any): Promise<void>;
159
+ restoreSaveState(path?: string | null, world?: any): Promise<void>;
99
160
  waitForPageLoad(options?: {}, world?: null): Promise<void>;
100
161
  closePage(options?: {}, world?: null): Promise<void>;
162
+ tableCellOperation(headerText: string, rowText: string, options: any, _params: Params, world?: null): Promise<void>;
163
+ saveTestDataAsGlobal(options: any, world: any): void;
101
164
  setViewportSize(width: number, hight: number, options?: {}, world?: null): Promise<void>;
102
165
  reloadPage(options?: {}, world?: null): Promise<void>;
103
166
  scrollIfNeeded(element: any, info: any): Promise<void>;
104
- _reportToWorld(world: any, properties: JsonCommandReport): void;
167
+ beforeStep(world: any, step: any): Promise<void>;
168
+ getAriaSnapshot(): Promise<string | null>;
169
+ afterStep(world: any, step: any): Promise<void>;
105
170
  }
106
171
  type JsonTimestamp = number;
107
172
  type JsonResultPassed = {
@@ -116,7 +181,7 @@ type JsonResultFailed = {
116
181
  message?: string;
117
182
  };
118
183
  type JsonCommandResult = JsonResultPassed | JsonResultFailed;
119
- type JsonCommandReport = {
184
+ export type JsonCommandReport = {
120
185
  type: string;
121
186
  value?: string;
122
187
  text: string;