lexxit-automation-framework 2.0.20 → 3.0.1
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 +246 -57
- package/dist-obf/actions/baseHandler.js +1 -0
- package/dist-obf/actions/browserManager.js +1 -0
- package/dist-obf/actions/checkboxHandler.js +1 -0
- package/dist-obf/actions/clickHandler.js +1 -0
- package/dist-obf/actions/customcodehandler.js +1 -0
- package/dist-obf/actions/dropdownHandler.js +1 -0
- package/dist-obf/actions/radiobuttonHandler.js +1 -0
- package/dist-obf/actions/textHandler.js +1 -0
- package/dist-obf/api/server.js +1 -0
- package/dist-obf/config.js +1 -0
- package/dist-obf/executor/functionMap.js +1 -0
- package/dist-obf/executor/mapping.js +1 -0
- package/dist-obf/executor/scriptExecutor.js +1 -0
- package/dist-obf/executor/stepExecutor.js +1 -0
- package/dist-obf/runner/testRunner.js +1 -0
- package/dist-obf/sse/sseManager.js +1 -0
- package/dist-obf/store/executionStore.js +1 -0
- package/dist-obf/store/testDataStore.js +1 -0
- package/dist-obf/types/types.js +1 -1
- package/dist-obf/utils/healingService.js +1 -0
- package/dist-obf/utils/locatorService.js +1 -0
- package/dist-obf/utils/logger.js +1 -1
- package/dist-obf/utils/metadataService.js +1 -0
- package/dist-obf/utils/waitConditions.js +1 -0
- package/dist-obf/validator/validator.js +1 -0
- package/npmignore +8 -0
- package/package.json +32 -1
- package/public/dashboard.html +591 -0
- package/src/actions/baseHandler.ts +351 -0
- package/src/actions/browserManager.ts +432 -0
- package/src/actions/checkboxHandler.ts +276 -0
- package/src/actions/clickHandler.ts +513 -0
- package/src/actions/customcodehandler.ts +251 -0
- package/src/actions/dropdownHandler.ts +501 -0
- package/src/actions/radiobuttonHandler.ts +286 -0
- package/src/actions/textHandler.ts +498 -0
- package/src/api/server.ts +210 -0
- package/src/config.ts +7 -0
- package/src/executor/functionMap.ts +153 -0
- package/src/executor/mapping.ts +70 -0
- package/src/executor/scriptExecutor.ts +162 -0
- package/src/executor/stepExecutor.ts +289 -0
- package/src/runner/testRunner.ts +78 -0
- package/src/sse/sseManager.ts +130 -0
- package/src/store/executionStore.ts +152 -0
- package/src/store/testDataStore.ts +46 -0
- package/src/types/types.ts +159 -0
- package/src/utils/healingService.ts +210 -0
- package/src/utils/locatorService.ts +73 -0
- package/src/utils/logger.ts +27 -0
- package/src/utils/metadataService.ts +137 -0
- package/src/utils/waitConditions.ts +141 -0
- package/src/validator/validator.ts +140 -0
- package/tsconfig.json +16 -0
- package/bin/lexxit-automation-framework.js +0 -224
- package/dist-obf/app.js +0 -1
- package/dist-obf/controllers/controller.js +0 -1
- package/dist-obf/core/BrowserManager.js +0 -1
- package/dist-obf/core/PlaywrightEngine.js +0 -1
- package/dist-obf/core/ScreenshotManager.js +0 -1
- package/dist-obf/core/TestData.js +0 -1
- package/dist-obf/core/TestExecutor.js +0 -1
- package/dist-obf/core/handlers/AllHandlers.js +0 -1
- package/dist-obf/core/handlers/BaseHandler.js +0 -1
- package/dist-obf/core/handlers/ClickHandler.js +0 -1
- package/dist-obf/core/handlers/CustomCodeHandler.js +0 -1
- package/dist-obf/core/handlers/DropdownHandler.js +0 -1
- package/dist-obf/core/handlers/InputHandler.js +0 -1
- package/dist-obf/core/registry/ActionRegistry.js +0 -1
- package/dist-obf/installer/frameworkLauncher.js +0 -1
- package/dist-obf/public/dashboard.html +0 -591
- package/dist-obf/public/execution.html +0 -510
- package/dist-obf/public/queue-monitor.html +0 -408
- package/dist-obf/queue/ExecutionQueue.js +0 -1
- package/dist-obf/routes/api.routes.js +0 -1
- package/dist-obf/server.js +0 -1
- package/dist-obf/utils/chromefinder.js +0 -1
- package/dist-obf/utils/elementHighlight.js +0 -1
- package/dist-obf/utils/locatorHelper.js +0 -1
- package/dist-obf/utils/response.js +0 -1
- package/dist-obf/utils/responseFormatter.js +0 -1
- package/dist-obf/utils/sseManager.js +0 -1
- package/scripts/postinstall.js +0 -52
package/README.md
CHANGED
|
@@ -1,93 +1,282 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Playwright Test Execution Framework
|
|
2
2
|
|
|
3
|
+
A Node.js + TypeScript framework that executes Playwright-based test sets defined entirely in JSON, exposed through a REST API, with a live polling dashboard to monitor execution in real time.
|
|
3
4
|
|
|
5
|
+
## Tech Stack
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
- Node.js 22, TypeScript
|
|
8
|
+
- Express.js (REST API)
|
|
9
|
+
- Playwright (Chromium, Firefox, Edge)
|
|
10
|
+
- In-memory execution store (no database)
|
|
6
11
|
|
|
7
|
-
|
|
12
|
+
## Setup
|
|
8
13
|
|
|
9
|
-
|
|
14
|
+
```bash
|
|
15
|
+
npm install
|
|
16
|
+
npx playwright install
|
|
17
|
+
npm run dev
|
|
18
|
+
```
|
|
10
19
|
|
|
11
|
-
|
|
20
|
+
The server starts on port `5501`. On startup, the console prints the API URL and a list of available endpoints.
|
|
12
21
|
|
|
13
|
-
|
|
14
|
-
* [Add files using the command line](https://docs.gitlab.com/topics/git/add_files/#add-files-to-a-git-repository) or push an existing Git repository with the following command:
|
|
22
|
+
## Project Structure
|
|
15
23
|
|
|
16
24
|
```
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
25
|
+
new_Framework/
|
|
26
|
+
├── src/
|
|
27
|
+
│ ├── api/
|
|
28
|
+
│ │ └── server.ts # Express server, all routes
|
|
29
|
+
│ ├── runner/
|
|
30
|
+
│ │ └── testRunner.ts # Orchestrates a full test set (sequential/parallel)
|
|
31
|
+
│ ├── executor/
|
|
32
|
+
│ │ ├── scriptExecutor.ts # Runs one test script (all its steps)
|
|
33
|
+
│ │ ├── stepExecutor.ts # Runs one step, routes to the correct handler
|
|
34
|
+
│ │ ├── mapping.ts # Parses step_script strings into function + args
|
|
35
|
+
│ │ └── functionMap.ts # Maps step_script function names to handler methods
|
|
36
|
+
│ ├── actions/
|
|
37
|
+
│ │ ├── browserManager.ts # openBrowser, closeBrowser, navigation, video
|
|
38
|
+
│ │ ├── textHandler.ts # enterText, getText, verifyText, etc.
|
|
39
|
+
│ │ ├── clickHandler.ts # click, doubleClick, rightClick, hover, etc.
|
|
40
|
+
│ │ ├── checkboxHandler.ts # check, uncheck, toggle, verifyChecked, etc.
|
|
41
|
+
│ │ ├── radiobuttonHandler.ts# select, selectByValue, selectByLabel, etc.
|
|
42
|
+
│ │ └── dropdownHandler.ts # native/combobox/multiselect dropdown actions
|
|
43
|
+
│ ├── utils/
|
|
44
|
+
│ │ ├── locatorService.ts # Resolves an element from a list of xpath locators
|
|
45
|
+
│ │ └── waitConditions.ts # waitForVisible, waitForTextChange, etc.
|
|
46
|
+
│ ├── validator/
|
|
47
|
+
│ │ └── validator.ts # Validates testset/testscript/step payload shapes
|
|
48
|
+
│ ├── store/
|
|
49
|
+
│ │ └── executionStore.ts # In-memory live execution state, keyed by execution_id
|
|
50
|
+
│ └── types/
|
|
51
|
+
│ └── types.ts # All shared TypeScript interfaces
|
|
52
|
+
├── public/
|
|
53
|
+
│ └── dashboard.html # Live polling dashboard UI
|
|
54
|
+
├── videos/ # Saved test recordings (when video_enabled)
|
|
55
|
+
├── tsconfig.json
|
|
56
|
+
└── package.json
|
|
21
57
|
```
|
|
22
58
|
|
|
23
|
-
##
|
|
59
|
+
## How a Request Flows
|
|
60
|
+
|
|
61
|
+
1. `POST /execute` receives the full test set JSON.
|
|
62
|
+
2. The payload is validated in three layers: testset, testscript, and step.
|
|
63
|
+
3. If valid, an `execution_id` (UUID) is generated and the response is returned **immediately** — the test set runs in the background.
|
|
64
|
+
4. If `open_dashboard: true`, the dashboard auto-opens in your default browser (only once per server session).
|
|
65
|
+
5. The dashboard polls the server and shows live step-by-step progress.
|
|
66
|
+
6. Once finished, the full result (same shape as a traditional synchronous response) becomes available under `final_result`.
|
|
67
|
+
|
|
68
|
+
## API Endpoints
|
|
69
|
+
|
|
70
|
+
| Method | Path | Description |
|
|
71
|
+
|--------|------|-------------|
|
|
72
|
+
| GET | `/` | Lists all available endpoints |
|
|
73
|
+
| POST | `/execute` | Submit a test set for execution |
|
|
74
|
+
| GET | `/status/:execution_id` | Live status + final result of one execution |
|
|
75
|
+
| GET | `/executions` | List all executions, latest first |
|
|
76
|
+
| GET | `/dashboard` | Live dashboard UI |
|
|
77
|
+
|
|
78
|
+
### POST /execute
|
|
24
79
|
|
|
25
|
-
|
|
80
|
+
Request body is the full test set JSON (see Request Format below).
|
|
26
81
|
|
|
27
|
-
|
|
82
|
+
Response (returned immediately, before execution finishes):
|
|
28
83
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"status": "started",
|
|
87
|
+
"execution_id": "a1b2c3d4-...",
|
|
88
|
+
"dashboard_url": "http://localhost:5501/dashboard?execution_id=a1b2c3d4-...",
|
|
89
|
+
"result_url": "http://localhost:5501/status/a1b2c3d4-..."
|
|
90
|
+
}
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
If validation fails, responds with `400` and an `errors` array describing every problem found, tagged by level (`testset`, `testscript`, or `step`).
|
|
94
|
+
|
|
95
|
+
### GET /status/:execution_id
|
|
96
|
+
|
|
97
|
+
Returns the live execution state. While running, `scripts[].steps[]` update in real time (`pending` → `running` → `pass`/`fail`/`skip`). Once finished, `final_result` is populated with the complete original-style response (status, full step results, summary).
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"execution_id": "a1b2c3d4-...",
|
|
102
|
+
"test_set_name": "E2E Smoke Suite",
|
|
103
|
+
"status": "pass",
|
|
104
|
+
"start_time": "2026-06-17 10:00:00",
|
|
105
|
+
"end_time": "2026-06-17 10:00:42",
|
|
106
|
+
"scripts": [
|
|
107
|
+
{
|
|
108
|
+
"test_script_uid": "d42bbbd5-...",
|
|
109
|
+
"test_case_name": "asdfasdf444",
|
|
110
|
+
"status": "pass",
|
|
111
|
+
"steps": [
|
|
112
|
+
{
|
|
113
|
+
"step_name": "Enter 'sdf' into 'First name'",
|
|
114
|
+
"status": "pass",
|
|
115
|
+
"expected_result": "'sdf' entered into 'First name' successfully",
|
|
116
|
+
"comments": "'sdf' entered into 'First name' successfully",
|
|
117
|
+
"duration": "0 seconds"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"final_result": {
|
|
123
|
+
"status": "pass",
|
|
124
|
+
"results": [ /* ... full TestScriptResult objects ... */ ],
|
|
125
|
+
"summary": {
|
|
126
|
+
"test_set_name": "E2E Smoke Suite",
|
|
127
|
+
"total_scripts": 1,
|
|
128
|
+
"passed": 1,
|
|
129
|
+
"failed": 0,
|
|
130
|
+
"duration": "12 seconds",
|
|
131
|
+
"start_time": "2026-06-17 10:00:00",
|
|
132
|
+
"end_time": "2026-06-17 10:00:12"
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
## Request Format
|
|
139
|
+
|
|
140
|
+
A test set request has three nested levels: testset, testscript, and step.
|
|
141
|
+
|
|
142
|
+
```json
|
|
143
|
+
{
|
|
144
|
+
"test_set_name": "E2E Smoke Suite",
|
|
145
|
+
"open_dashboard": true,
|
|
146
|
+
"parallel": false,
|
|
147
|
+
"stop_on_failure": true,
|
|
148
|
+
"video_enabled": true,
|
|
149
|
+
"exec_mode": { "mode": "medium", "delay_ms": 1000 },
|
|
150
|
+
"scripts": [
|
|
151
|
+
{
|
|
152
|
+
"test_script_uid": "d42bbbd5-f50f-4b71-a119-ef7294eab861",
|
|
153
|
+
"test_case_name": "asdfasdf444",
|
|
154
|
+
"voice_enabled": false,
|
|
155
|
+
"app_id": "1b040097-495d-4428-84d1-bd31ecc97e93",
|
|
156
|
+
"browser": "edge",
|
|
157
|
+
"headless": false,
|
|
158
|
+
"screenshot_mode": "on_failure",
|
|
159
|
+
"stop_on_failure": true,
|
|
160
|
+
"steps": [
|
|
161
|
+
{
|
|
162
|
+
"step_name": "Open edge",
|
|
163
|
+
"step_script": "tSetup.openBrowser('edge')",
|
|
164
|
+
"label": ""
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"step_name": "Navigate to URL",
|
|
168
|
+
"step_script": "tSetup.navigateToURL('https://example.com')",
|
|
169
|
+
"label": ""
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"label": "First name",
|
|
173
|
+
"locators": [
|
|
174
|
+
"//input[@id='fname']",
|
|
175
|
+
"//input[@id='fname' and @name='fname']"
|
|
176
|
+
],
|
|
177
|
+
"obj_uid": "066d39cd-b378-40c0-aa7f-e80e6c55a530",
|
|
178
|
+
"page_uid": null,
|
|
179
|
+
"step_name": "Enter 'sdf' into 'First name'",
|
|
180
|
+
"step_script": "tSetup.enterText('xpath', '//input[@id=\"fname\"]', 'sdf')",
|
|
181
|
+
"value": "sdf"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"step_name": "Close Browser",
|
|
185
|
+
"step_script": "tSetup.closeBrowser()",
|
|
186
|
+
"label": ""
|
|
187
|
+
}
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
```
|
|
34
193
|
|
|
35
|
-
|
|
194
|
+
### Testset-level fields
|
|
36
195
|
|
|
37
|
-
|
|
196
|
+
| Field | Type | Description |
|
|
197
|
+
|-------|------|--------------|
|
|
198
|
+
| `test_set_name` | string | Display name for the test set |
|
|
199
|
+
| `open_dashboard` | boolean | Auto-opens the dashboard in your browser when execution starts |
|
|
200
|
+
| `parallel` | boolean | Run scripts in parallel (max 10 concurrent) instead of sequentially |
|
|
201
|
+
| `stop_on_failure` | boolean | Reserved for testset-level stop behavior |
|
|
202
|
+
| `video_enabled` | boolean | Records a `.webm` video per script (forced `false` in `fast` exec mode) |
|
|
203
|
+
| `exec_mode` | object, optional | `{ mode: 'fast' \| 'medium' \| 'slow', delay_ms?: number }`. Defaults to `fast` if omitted |
|
|
204
|
+
| `scripts` | array | One or more test scripts |
|
|
38
205
|
|
|
39
|
-
|
|
40
|
-
* [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/user/application_security/sast/)
|
|
41
|
-
* [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/topics/autodevops/requirements/)
|
|
42
|
-
* [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/user/clusters/agent/)
|
|
43
|
-
* [Set up protected environments](https://docs.gitlab.com/ci/environments/protected_environments/)
|
|
206
|
+
### Testscript-level fields
|
|
44
207
|
|
|
45
|
-
|
|
208
|
+
| Field | Type | Description |
|
|
209
|
+
|-------|------|--------------|
|
|
210
|
+
| `test_script_uid` | string | Unique ID for this script |
|
|
211
|
+
| `test_case_name` | string | Display name |
|
|
212
|
+
| `app_id` | string | Application identifier |
|
|
213
|
+
| `browser` | `chromium` \| `firefox` \| `edge` | Browser to launch |
|
|
214
|
+
| `headless` | boolean | Run headless or headed |
|
|
215
|
+
| `screenshot_mode` | `on_failure` \| `always` \| `never` | Reserved for screenshot behavior |
|
|
216
|
+
| `stop_on_failure` | boolean | Skip remaining steps in this script once one fails |
|
|
217
|
+
| `steps` | array | Ordered list of steps to execute |
|
|
46
218
|
|
|
47
|
-
|
|
219
|
+
### Step-level fields
|
|
48
220
|
|
|
49
|
-
|
|
221
|
+
| Field | Type | Description |
|
|
222
|
+
|-------|------|--------------|
|
|
223
|
+
| `step_name` | string | Display name for the step |
|
|
224
|
+
| `step_script` | string | The action to run, e.g. `tSetup.enterText('id','fname','mahesh')` |
|
|
225
|
+
| `label` | string | Human-readable name of the target element, used in result messages |
|
|
226
|
+
| `locators` | string[] | List of xpath locators tried together (first visible match wins) |
|
|
227
|
+
| `obj_uid`, `page_uid` | string \| null | Optional metadata passed through to results |
|
|
50
228
|
|
|
51
|
-
##
|
|
229
|
+
## Execution Modes
|
|
52
230
|
|
|
53
|
-
|
|
231
|
+
| Mode | Behavior |
|
|
232
|
+
|------|----------|
|
|
233
|
+
| `fast` (default) | No delay between steps. `video_enabled` is forced to `false` regardless of the request value |
|
|
234
|
+
| `medium` | Waits `delay_ms` (default 1000ms if not provided) between steps. Respects `video_enabled` |
|
|
235
|
+
| `slow` | Waits `delay_ms` (default 3000ms if not provided) between steps. Respects `video_enabled` |
|
|
54
236
|
|
|
55
|
-
|
|
56
|
-
Choose a self-explaining name for your project.
|
|
237
|
+
`delay_ms` can be passed explicitly inside `exec_mode` to override the defaults for `medium`/`slow`.
|
|
57
238
|
|
|
58
|
-
##
|
|
59
|
-
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
|
|
239
|
+
## Step Script Reference
|
|
60
240
|
|
|
61
|
-
|
|
62
|
-
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
|
|
241
|
+
Steps are written as `tSetup.<functionName>(args...)`. The framework parses this string and routes it to the matching handler. Currently mapped functions:
|
|
63
242
|
|
|
64
|
-
|
|
65
|
-
|
|
243
|
+
| Function | Handler |
|
|
244
|
+
|----------|---------|
|
|
245
|
+
| `openBrowser`, `closeBrowser`, `navigateToURL`, `navigateBack`, `navigateForward`, `refreshPage`, `getTitle`, `getCurrentURL` | Browser Manager |
|
|
246
|
+
| `enterText`, `typeText`, `clearText`, `getInputValue`, `appendText`, `setInputValue`, `verifyText`, `verifyValue`, `getText` | Text Handler |
|
|
247
|
+
| `clickElement`, `doubleClick`, `rightClick`, `hover` | Click Handler |
|
|
248
|
+
| `check_checkbox`, `uncheck_checkbox`, `verifyChecked`, `verifyUnchecked`, `verifyEnabled`, `verifyDisabled`, `verifyVisible`, `verifyHidden` | Checkbox Handler |
|
|
249
|
+
| `selectRadioButton` | Radiobutton Handler |
|
|
250
|
+
| `selectDropdown` | Dropdown Handler |
|
|
66
251
|
|
|
67
|
-
|
|
68
|
-
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
|
|
252
|
+
Functions not yet mapped (e.g. `dragAndDrop`, `file_upload`, `enterTextInFrame`, `verifyElementCount`, `verifyAttribute`, `acceptAlert`, `dismissAlert`, `getAlertText`, `verifyTitle`, `verifyURL`, `clickByJS`) are documented as comments in `functionMap.ts` for future implementation.
|
|
69
253
|
|
|
70
|
-
##
|
|
71
|
-
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
|
|
254
|
+
## Locator Resolution
|
|
72
255
|
|
|
73
|
-
|
|
74
|
-
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
|
|
256
|
+
Each step can provide multiple xpath locators as fallbacks. They're combined into a single OR-expression and the first visible, attached match is used. If the first locator in the list wasn't the one that matched, the step's `comments` field notes which position and xpath actually resolved — useful for cleaning up brittle locators over time.
|
|
75
257
|
|
|
76
|
-
##
|
|
77
|
-
If you have ideas for releases in the future, it is a good idea to list them in the README.
|
|
258
|
+
## Live Dashboard
|
|
78
259
|
|
|
79
|
-
|
|
80
|
-
State if you are open to contributions and what your requirements are for accepting them.
|
|
260
|
+
Visit `http://localhost:5501/dashboard` (or let it auto-open via `open_dashboard: true`).
|
|
81
261
|
|
|
82
|
-
|
|
262
|
+
- Left navigation lists all executions, most recent at the top.
|
|
263
|
+
- Selecting an execution shows each script and its steps.
|
|
264
|
+
- Steps show a spinner while running, then a pass/fail/skip badge.
|
|
265
|
+
- Click any step row to expand and see its expected result and comments.
|
|
266
|
+
- The dashboard polls `/executions` every 3 seconds and `/status/:execution_id` every 2 seconds — no manual refresh needed.
|
|
83
267
|
|
|
84
|
-
|
|
268
|
+
## Step Statuses
|
|
85
269
|
|
|
86
|
-
|
|
87
|
-
|
|
270
|
+
| Status | Meaning |
|
|
271
|
+
|--------|---------|
|
|
272
|
+
| `pending` | Not yet started (dashboard-only state) |
|
|
273
|
+
| `running` | Currently executing (dashboard-only state) |
|
|
274
|
+
| `pass` | Completed successfully |
|
|
275
|
+
| `fail` | Failed |
|
|
276
|
+
| `skip` | Skipped because an earlier step in the same script failed (when `stop_on_failure: true`) |
|
|
88
277
|
|
|
89
|
-
##
|
|
90
|
-
For open source projects, say how it is licensed.
|
|
278
|
+
## Notes
|
|
91
279
|
|
|
92
|
-
|
|
93
|
-
|
|
280
|
+
- Videos are saved to the `videos/` folder, named `<test_script_uid>_<timestamp>.webm`.
|
|
281
|
+
- Parallel execution runs scripts in batches of up to 10 concurrently; batches are processed one after another.
|
|
282
|
+
- The execution store is in-memory only — restarting the server clears all execution history.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const a0_0x5b1dea=a0_0x4701;(function(_0x123b82,_0x17bcdf){const _0x16b648=a0_0x4701,_0x4a7563=_0x123b82();while(!![]){try{const _0x282604=parseInt(_0x16b648(0x1cc))/0x1*(parseInt(_0x16b648(0x1fc))/0x2)+parseInt(_0x16b648(0x1f1))/0x3+parseInt(_0x16b648(0x1f8))/0x4+parseInt(_0x16b648(0x1ec))/0x5*(-parseInt(_0x16b648(0x1c5))/0x6)+parseInt(_0x16b648(0x1f9))/0x7+-parseInt(_0x16b648(0x20f))/0x8*(-parseInt(_0x16b648(0x20c))/0x9)+-parseInt(_0x16b648(0x210))/0xa*(parseInt(_0x16b648(0x1d3))/0xb);if(_0x282604===_0x17bcdf)break;else _0x4a7563['push'](_0x4a7563['shift']());}catch(_0x3c16ce){_0x4a7563['push'](_0x4a7563['shift']());}}}(a0_0x116b,0xc1073));function a0_0x4701(_0x1b7384,_0x1ee886){_0x1b7384=_0x1b7384-0x1be;const _0x116bfd=a0_0x116b();let _0x470100=_0x116bfd[_0x1b7384];if(a0_0x4701['iOOhmr']===undefined){var _0x4a43f4=function(_0xef3612){const _0x425d19='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x478730='',_0x221bb5='';for(let _0x242cd0=0x0,_0xc63472,_0x30f047,_0x1b7e60=0x0;_0x30f047=_0xef3612['charAt'](_0x1b7e60++);~_0x30f047&&(_0xc63472=_0x242cd0%0x4?_0xc63472*0x40+_0x30f047:_0x30f047,_0x242cd0++%0x4)?_0x478730+=String['fromCharCode'](0xff&_0xc63472>>(-0x2*_0x242cd0&0x6)):0x0){_0x30f047=_0x425d19['indexOf'](_0x30f047);}for(let _0x19ae55=0x0,_0x4c5594=_0x478730['length'];_0x19ae55<_0x4c5594;_0x19ae55++){_0x221bb5+='%'+('00'+_0x478730['charCodeAt'](_0x19ae55)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x221bb5);};a0_0x4701['RBJfhr']=_0x4a43f4,a0_0x4701['UiXJKn']={},a0_0x4701['iOOhmr']=!![];}const _0x3d8315=_0x116bfd[0x0],_0x1c4de9=_0x1b7384+_0x3d8315,_0x3c55c7=a0_0x4701['UiXJKn'][_0x1c4de9];return!_0x3c55c7?(_0x470100=a0_0x4701['RBJfhr'](_0x470100),a0_0x4701['UiXJKn'][_0x1c4de9]=_0x470100):_0x470100=_0x3c55c7,_0x470100;}function a0_0x116b(){const _0x4ff798=['y2fWDhvYzvnJCMvLBNnOB3q','icHnyxrJAgvKigXVy2f0B3iGyxqGCg9ZAxrPB24G','C2v0Dxbozxr3B3jRq2fWDhvYzq','s2zMtfi','ExDIuKK','BM93','vxHNtvi','z2v0u3rHCNruAw1L','mJDZDhHYDKy','uNL5teO','B25FzMfPBhvYzq','mtC3mdq4ogzSq2P4qq','mJi2mtmWwfPvuNf1','EKnLy0u','wuT1ANm','tMf2AwDHDgLVBIbHzNrLCIbJBgLJAYb0Aw1LzcbVDxq6ia','BM90ihzPC2LIBgu','Aw5JBhvKzxm','BMv2zxi','DgLTzw91Da','rNjsq1e','Cg5N','mtqWmda0CvnAru5q','y29UDgvUDc10ExbL','vgLTzw91DcbLCNjVCIaTigvSzw1LBNqGDg9VAYb0B28GBg9UzYb0BYbYzxnWB25KoIa','BM90igvKAxrHyMXL','zxjUrvu','D3z2A0O','zgv0ywnOzwq','ngXTzxzkEq','CgfNzq','vKTeufi','y2XHC3nPzNLfCNjVCG','BgfZDefWAvjLC3bVBNnL','rwXLBwvUDcbPCYbUB3qGzwrPDgfIBguGB3iGzgLZywjSzwq6ia','tfz1BM8','odKXAfzJvu5h','C3bSAxq','Aw50zxjJzxb0CYbWB2LUDgvYigv2zw50CW','CNvpre4','BM90igvUywjSzwq','su1StgK','vhvYBKS','C2nYzwvUC2HVDe1Vzgu','rwXLBwvUDcbUB3qGzM91BMq','C2nYzwvUC2HVDa','ze9SDgO','AuP0Bee','lI4Vy29UzMLN','vgfYz2v0ignSB3nLza','uhbiyLq','uNbJy0y','v2LTshC','yNvPBgrszxn1Bhq','Ew9xB28','yxbWBgLJyxrPB24VDgv4Da','rwXLBwvUDcbNB3qGzgv0ywnOzwqGzNjVBsbet006ia','yMfZzty0','DxjS','z2v0rhvYyxrPB24','z2v0tgfZDefWAvjLC3bVBNnL','mZiWtvzksvft','AgvHzgvYCW','rwXLBwvUDcbUB3qGzM91BMqGB3iGBM90ihzPC2LIBgu6ia','ufPWtNa','C3rHDhvZ','ndqZntG2ouDuBM14sW','qMfZzuHHBMrSzxi','Dg9tDhjPBMC','uvfVDwm','revgqvvmvf9tq1jfru5tse9ux01preu','A0LIsgO','AxndBg9Zzwq','mJKWody5mLDIvvLfyq','nZCXnJe0ouP5EgjHtG','Dgv4Da','yKrJA20','nZe4mtHRywrMwNK','tMf2AwDHDgLVBG','CMvWBgfJzq','CMvZCg9UC2u','y2rZDwy','vgLTzw91Da','yxbWBgLJyxrPB24VANnVBG','zgvMAw5LuhjVCgvYDhK'];a0_0x116b=function(){return _0x4ff798;};return a0_0x116b();}Object[a0_0x5b1dea(0x203)](exports,'__esModule',{'value':!![]}),exports[a0_0x5b1dea(0x1f2)]=void 0x0;const a0_0x56ce04=require(a0_0x5b1dea(0x1df));class a0_0x55c75e{['page'];[a0_0x5b1dea(0x1da)]=a0_0x56ce04[a0_0x5b1dea(0x1f5)];[a0_0x5b1dea(0x1d0)]=null;[a0_0x5b1dea(0x206)](_0x425dbc){const _0x25698e=a0_0x5b1dea,_0x449efc={'LFrDk':function(_0x1000ce,_0x5b0de9){return _0x1000ce-_0x5b0de9;},'TurnK':_0x25698e(0x1c6),'FrRCQ':_0x25698e(0x202),'RpccF':_0x25698e(0x1e6),'wvvkJ':_0x25698e(0x1de),'kIbHj':function(_0x218ed0,_0x4c8a1b){return _0x218ed0!==_0x4c8a1b;},'IMlLi':'PzWye','LVuno':_0x25698e(0x207),'TzrRq':_0x25698e(0x1ff)};try{_0x425dbc['on'](_0x449efc['TzrRq'],async _0x388eba=>{const _0x5479a8=_0x25698e;try{const _0x5877d4=_0x388eba[_0x5479a8(0x1ed)]()[_0x449efc[_0x5479a8(0x1d9)]]||'';if(_0x5877d4[_0x5479a8(0x1c0)](_0x449efc[_0x5479a8(0x1c3)])||_0x5877d4[_0x5479a8(0x1c0)]('text/plain')||_0x5877d4[_0x5479a8(0x1c0)](_0x449efc[_0x5479a8(0x1e2)])){let _0x4e952d;try{if('QlvuP'===_0x449efc[_0x5479a8(0x1ca)])return _0xb539ad+_0x5479a8(0x205)+_0x2fa0fa+':\x20'+_0x2bbd0d+')';else _0x4e952d=await _0x388eba['json']();}catch{try{if(_0x449efc[_0x5479a8(0x1f6)](_0x5479a8(0x211),_0x449efc[_0x5479a8(0x1d8)]))_0x4e952d=await _0x388eba[_0x5479a8(0x1fa)]();else return _0x4c5594;}catch{if(_0x449efc[_0x5479a8(0x1f6)](_0x449efc['LVuno'],_0x449efc[_0x5479a8(0x1d2)]))return _0x449efc['LFrDk'](_0x3fc263['now'](),_0x4d3b71);else _0x4e952d=undefined;}}this[_0x5479a8(0x1d0)]={'status':_0x388eba[_0x5479a8(0x1f0)](),'url':_0x388eba[_0x5479a8(0x1e9)](),'body':_0x4e952d};}}catch{}});}catch{}}[a0_0x5b1dea(0x1eb)](){return this['lastApiResponse'];}async[a0_0x5b1dea(0x204)](_0x124b9b){const _0x56fb06=a0_0x5b1dea,_0x518e95={'WimHw':function(_0x56f6e5,_0x5d115d){return _0x56f6e5===_0x5d115d;},'TieYC':_0x56fb06(0x1c1),'YKujs':_0x56fb06(0x20e),'QQouc':_0x56fb06(0x1c4),'pANEj':_0x56fb06(0x1e8)};if(_0x518e95[_0x56fb06(0x1e3)](this[_0x56fb06(0x1da)],_0x518e95['TieYC']))return undefined;if(_0x518e95['WimHw'](this[_0x56fb06(0x1da)],_0x518e95[_0x56fb06(0x212)])&&!_0x124b9b)return undefined;try{if(!this[_0x56fb06(0x1cd)]||this['page'][_0x56fb06(0x1f7)]())return undefined;const _0xd4a18f=await this[_0x56fb06(0x1cd)][_0x56fb06(0x1dc)]({'type':_0x518e95[_0x56fb06(0x1f4)],'fullPage':![]});return _0xd4a18f[_0x56fb06(0x1f3)](_0x518e95['pANEj']);}catch{return undefined;}}async['capturePageSource'](){const _0x37c857=a0_0x5b1dea;try{if(!this['page']||this[_0x37c857(0x1cd)]['isClosed']())return undefined;return await this['page']['content']();}catch{return undefined;}}[a0_0x5b1dea(0x20b)](){const _0x4333be=a0_0x5b1dea;return new Date()['toISOString']()[_0x4333be(0x1fe)]('T','\x20')[_0x4333be(0x1d4)]('.')[0x0];}['getDuration'](_0x24ee37){const _0xfc7f4d=a0_0x5b1dea,_0x3fc173={'PpHbT':function(_0x5e54f8,_0x19887c){return _0x5e54f8-_0x19887c;}};return _0x3fc173[_0xfc7f4d(0x1e1)](Date[_0xfc7f4d(0x209)](),_0x24ee37);}[a0_0x5b1dea(0x1e4)](_0x1ad003,_0x15e6e8,_0x309e99,_0x2ae295,_0x325851,_0x40074d='',_0x53941d){const _0x5ab3c4=a0_0x5b1dea,_0x74a093={'ruODN':function(_0x3113bf,_0x9c3575){return _0x3113bf!==_0x9c3575;}};return{'uid':null,'obj_uid':null,'page_uid':null,'step_name':_0x40074d,'step_script':'','status':_0x1ad003,'expected_result':_0x15e6e8,'comments':_0x309e99,'duration':this[_0x5ab3c4(0x1ea)](_0x2ae295),'start_time':_0x325851,..._0x74a093[_0x5ab3c4(0x1d6)](_0x53941d,undefined)?{'screenshot':_0x53941d}:{}};}[a0_0x5b1dea(0x1cf)](_0xbd3b57){const _0x5c6759=a0_0x5b1dea,_0x1a00b9={'ywbRI':function(_0xc95b11,_0x47723f){return _0xc95b11(_0x47723f);},'ernEU':_0x5c6759(0x1db),'UxgMR':_0x5c6759(0x1bf),'kWKbC':_0x5c6759(0x201),'RyyLJ':_0x5c6759(0x1c8),'VSHoi':_0x5c6759(0x1d7),'TrIhW':_0x5c6759(0x1cb),'XINUc':_0x5c6759(0x1e0),'yoWoo':'has\x20been\x20closed','PZpNp':_0x5c6759(0x1d5),'vgzNc':'not\x20visible\x20within','bDckm':_0x5c6759(0x1fd)},_0xef8883=_0xbd3b57?.['message']||_0x1a00b9[_0x5c6759(0x208)](String,_0xbd3b57);if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9[_0x5c6759(0x1c9)])||_0xef8883['includes'](_0x1a00b9[_0x5c6759(0x20a)]))return _0x5c6759(0x1ee)+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9['kWKbC'])||_0xef8883[_0x5c6759(0x1c0)](_0x5c6759(0x1c2)))return _0x5c6759(0x1c7)+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9[_0x5c6759(0x20d)])||_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9['VSHoi']))return _0x5c6759(0x1d1)+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9['TrIhW']))return _0x5c6759(0x1e7)+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9['XINUc'])||_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9[_0x5c6759(0x1e5)]))return'Browser\x20or\x20page\x20closed\x20unexpectedly:\x20'+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9[_0x5c6759(0x1ef)])||_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9['vgzNc']))return'Element\x20is\x20covered\x20by\x20another\x20element:\x20'+_0xef8883;if(_0xef8883[_0x5c6759(0x1c0)](_0x1a00b9[_0x5c6759(0x1fb)])&&_0xef8883[_0x5c6759(0x1c0)](_0x5c6759(0x1c2)))return _0x5c6759(0x1be)+_0xef8883;return'Unexpected\x20error:\x20'+_0xef8883;}['appendMatchedLocatorInfo'](_0x51d761,_0x145fce,_0x4cab96){const _0x5a662e=a0_0x5b1dea,_0x4c688f={'cdsuf':function(_0x18f479,_0x5410d0){return _0x18f479>_0x5410d0;},'dOltj':function(_0x13af78,_0x577479){return _0x13af78!==_0x577479;},'ZfhOp':_0x5a662e(0x1ce)};if(_0x4c688f[_0x5a662e(0x200)](_0x145fce,0x0))return _0x4c688f[_0x5a662e(0x1dd)]('VKDPR',_0x4c688f['ZfhOp'])?_0x1b7e60:_0x51d761+_0x5a662e(0x205)+_0x145fce+':\x20'+_0x4cab96+')';return _0x51d761;}}exports[a0_0x5b1dea(0x1f2)]=a0_0x55c75e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const a1_0x57d67a=a1_0x4db2;(function(_0x26f13b,_0x394096){const _0x3e79d4=a1_0x4db2,_0x4617cc=_0x26f13b();while(!![]){try{const _0x4fd789=parseInt(_0x3e79d4(0x1da))/0x1+parseInt(_0x3e79d4(0x1f1))/0x2+-parseInt(_0x3e79d4(0x227))/0x3*(-parseInt(_0x3e79d4(0x183))/0x4)+-parseInt(_0x3e79d4(0x22a))/0x5*(-parseInt(_0x3e79d4(0x2a6))/0x6)+-parseInt(_0x3e79d4(0x1ea))/0x7*(-parseInt(_0x3e79d4(0x19c))/0x8)+parseInt(_0x3e79d4(0x20f))/0x9*(-parseInt(_0x3e79d4(0x24d))/0xa)+-parseInt(_0x3e79d4(0x20c))/0xb*(parseInt(_0x3e79d4(0x1d4))/0xc);if(_0x4fd789===_0x394096)break;else _0x4617cc['push'](_0x4617cc['shift']());}catch(_0x569bed){_0x4617cc['push'](_0x4617cc['shift']());}}}(a1_0x511b,0xc3f6b));function a1_0x511b(){const _0x478626=['vfzlrfK','BhzlCK4','rufdq0vt','u1nm','Cg5N','oti3uxvxzKvl','v1fjzMe','CMvJB3jKvMLKzw8','nuzNEefXwG','x19LC01VzhvSzq','qwDRsfu','AgHtv0u','wxHwEgK','DfHduNu','CgfNzq','zgLYBMfTzq','EMTrr0S','rKfjta','y2fSBa','ueftuW','Avjhz2i','AxrgwNq','z2v0ugfNzvnVDxjJzunVBNrLBNq','BwTKAxjtEw5J','Bgn2Agy','zKTPz3m','EKP5tK4','ugfNzsbPCYbUB3qGAw5PDgLHBgL6zwqUienHBgWGB3bLBKjYB3DZzxiGzMLYC3qU','sMLbuLO','tMv0D29YAYbLCNjVCIaTifvstcb1BNjLywnOywjSztOG','t2rfBgS','zxDxANe','BufMzeq','q1L0tw0','y2HYB21PDw0','rhDltui','tw5ft1e','z0nIzNm','sg1xEwi','EwTVBKK','CMvSB2fKugfNzq','Aezfswe','C3bSAxq','mZaXmdbxAeT2vuS','ChDevvu','sKTVvKK','DMrmDKy','sNzoswq','qvHzy0K','t3bLBIa','D3jPDgfIBgu','z29gB3j3yxjK','Bg9Hza','z2v0u2f2zwrwAwrLB1bHDgG','uKftv3q','zMLYzwzVEa','u1nml0nLCNrPzMLJyxrLigvYCM9YoIa','yNjVD3nLCG','BMv0oJPfuLjFq0vsva','v2fPDcb1BNrPBcbSB2fKzwq','z2v0t3DUuhjVCgvYDhLoyw1LCW','uKrKvxi','vhDNreO','v0XZD1y','ve54qxC','qNjVD3nLCK1HBMfNzxi','uNHSsfa','rxv0su4','DMXVC3e','yurzyMW','y29UzMLNDxjHyMXL','BM1tzu0','seTLr2q','ChnWtuq','Aw5JBhvKzxm','twf4Aw1PEMuGD2LUzg93','Cen4s2y','qNjVD3nLCIbSyxvUy2GGzMfPBgvKic0GyNjVD3nLCIbLEgvJDxrHyMXLig5VDcbMB3vUzdOG','DeP0r3K','y2XVC2vcCM93C2vY','t3n1zKu','DKDeEMm','DgfRzvnJCMvLBNnOB3q','DMLKzw9fBMfIBgvK','CePPvKS','uNPfs0C','EKDyv1a','vgLTzw91Da','qxbbww8','sLfMu1m','m3WXFdj8mhW0','z2v0u3rHCNruAw1L','vgfRzsbZy3jLzw5ZAg90','BLLwALy','vgLTzw91DcbLCNjVCIaTihbHz2uGDg9VAYb0B28GBg9UzYb0BYbYzxnWB25KoIa','sxL6CNa','rMjYy1K','tvLIEe0','vgfYz2v0ihbHz2uSignVBNrLEhqGB3iGyNjVD3nLCIbOyxmGyMvLBIbJBg9Zzwq','DMzqrwm','lI4VlI4VDMLKzw9Z','uhbRCNO','A1LTyMi','BMv0oJPfuLjFsu5urvjorvrFreLtq09otKvdveve','sw1Pqvm','tNHXs3G','zwrNzq','rMfPBgvKihrVigDLDcbJDxjYzw50ifvstdOG','ruf5Auy','C3jTq0i','sK1tqM4','zvnsEgy','Bgf1BMnO','wg9Ltxm','zffyvM8','tvjrvgu','z29cywnR','rgnnrKG','y3jLyxrL','tejbzNi','qNjVD3nLCIbPCYbUB3qGB3bLBG','reTkChC','zgvMAw5LuhjVCgvYDhK','rw15DxC','EhvKqKG','z2v0t3DUuhjVCgvYDhLezxnJCMLWDg9Y','u3DVDMu','tuXHuxy','yKrHEMm','veDNBvy','y29UDgv4Da','Bwf4Aw1PEMvxAw5KB3C','nty3otmWnK1PEfzVta','y2fWDhvYzvnJCMvLBNnOB3q','rMfPBgvKihrVigXHDw5JAa','vKvtCvC','zwflCNe','zxHPC3rZu3LUyW','Dw5RBM93BG','uM1dsge','AKnby3G','ru5pru5u','ugfNzsbYzwXVywrLzcbZDwnJzxnZzNvSBhK','EMDjrw4','BMv0oJPfuLjFq09otKvdveLptL9sruzvu0ve','BKnhA1u','u0Xyz08','otu1mLDkvfDizW','D25NCNy','z2v0','y3nwu2C','tMf2AwDHDgvKigzVCNDHCMqGC3vJy2vZC2z1BgX5','D0jTB0q','rKXUqu8','tLjdzxa','A0j0u2O','mNW0Fdn8mhWX','BMv0D29YA2LKBgu','qvrlD0e','zMPVzuW','vMvuDKe','tKf0r20','ugfNzsbSB2fKzwqGC3vJy2vZC2z1BgX5','qNjVD3nLCIbUB3qGAw5PDgLHBgL6zwqGlsbJywXSig9Wzw5cCM93C2vYigzPCNn0oIa','Cgf0Aa','DgL0Bgu','Cg50zeu','u21xq0G','BM93','r28GyMfJAW','yvj6C3m','Auz3wMm','otzMsMTyu0O','CMvZB2X2zq','DgLTzw91Da','B3bLBKjYB3DZzxi','thL5v3C','C2Txv08','z2v0rhvYyxrPB24','ze9Pv2q','vw5LEhbLy3rLzcbLCNjVCJOG','tNzOqva','qNjVD3nLCIbVCIbWywDLihDHCYbJBg9ZzwqGDw5LEhbLy3rLzgX5oIa','B1Hmy2m','y2XHC3nPzNLfCNjVCG','v3DNCgC','Cejqrvu','v1P5wve','D2fPDezVCKXVywrtDgf0zq','BMv0oJPfuLjFtKfnrv9ot1rFuKvtt0Xwruq','v3bNEfa','z1bftwS','zxjYB3i','z2v0q3vYCMvUDfvstfn0CMLUzW','BwvZC2fNzq','D2fPDezVCK5LDhDVCMTjzgXL','DwLuAuu','u2nYzwvUC2HVDcbZyxzLzcbHDca','lNDLyM0','ALDIB3i','s09ltvK','q3vYCMvUDcbvuKWGCMv0CMLLDMvKihn1y2nLC3nMDwXSEq','x19JCMvHDgvcAw5KAw5N','ugjztvK','Dg9ju09tDhjPBMC','se9jAKK','txPmBeS','Bej2yw0','sNbNveW','zKncsuO','yxvisvK','yMfZzty0','uhLsBgu','thPNEMC','v3jXAMK','tMf2AwDHDgLVBIbMywLSzwqGlsbWywDLig1HEsbOyxzLignYyxnOzwqGB3iGCMvKAxjLy3rLzcbPBMnVCNjLy3rSEtOG','yKrUvg8','uMvSB2fKihbHz2u','t2vKsvO','rMLSzsbVCIbKAxjLy3rVCNKGBM90igzVDw5KoIa','sfruvhq','ChjVDg90ExbL','Au5dthO','Dg9tDhjPBMC','C3HbCxC','C0T1CLC','AMj2vui','D3vXs0O','mtj5rfbiyNK','wLHuALe','s2XTzhO','ELfrsxi','A0XmEhu','s0f5AMq','mtu4nJK2m3r3C0LVsa','DMLKzw8','rgXov00','DxjS','wxvIuwC','DNDIq08','CfrhwfO','AxnesgK','CgrNv3i','zw5ZDxjLvMLKzw9eAxi','ugfNzsb0AxrSzsbPCZOG','r28GzM9YD2fYza','C2Xcvfi','q3vYCMvUDcbvuKWGAxm6ia','svPNwei','tMLtzLm','ota3nJK3sKvVtg1S','DvD3tfC','x19PBxbVCNrtDgfY','B25FzMfPBhvYzq','qwDQwg8','q2zvC1O','t2nbywy','mJa4mJCWzLLJtxfT','DhzwELm','z2v0ugfNzq','B2TlB08','tMf2AwDHDgLVBIbMywLSzwq','ywPeDfa','ugfNzsb0AxrSzsbYzxrYAwv2zwqGC3vJy2vZC2z1BgX5','vxnsA00','y2XVC2u','zgvMyxvSDa','C2f2zwrwAwrLB1bHDgG','r2jiBMO','s3v5yva','B1PPwwS','teP2sw8','vgfYz2v0ignSB3nLza','BhHWu0G','rMfPBgvKihrVigDLDcbWywDLihnVDxjJztOG','EMnmCM4','ig9Wzw5LzcbZDwnJzxnZzNvSBhK','s3zytwe','BMf2AwDHDgvuB1vsta','CMvJB3jKAw5N','y2HYB21L','yw1lANC','ugvYBwLZC2LVBIbKzw5Pzwq','tM8GAw50zxjUzxqGy29UBMvJDgLVBJOG','mJK3otaYnJzuvejPqMm','tMv0D29YAYbPCYbPzgXL','yNvPBgrszxn1Bhq','ndi0ohD6EwfgAa','r2v0ihrPDgXL','BgvUz3rO','qvzvtey','r2v0ign1CNjLBNqGvvjm','svPyufO','BxnLzgDL','tMf2AwDHDguGDg8Gvvjm','C2nYzwvUC2HVDa','x19ZzxrnB2r1BgvezwzHDwX0','qKTsDNO','uenwq00','zxHLy3v0ywjSzsbKB2vZBID0igv4Axn0','swPiEMe','qMPHEg8','C2v0vMLLD3bVCNrtAxPL','D0z4Cuy','sLv1B2K','Bgr0tMO'];a1_0x511b=function(){return _0x478626;};return a1_0x511b();}var a1_0x1b5ebb=this&&this[a1_0x57d67a(0x1ba)]||(Object[a1_0x57d67a(0x298)]?function(_0x411590,_0xe2d0cf,_0x25bea3,_0x3ce664){const _0x21d069=a1_0x57d67a,_0x248a94={'RuNue':_0x21d069(0x233),'RDdUr':_0x21d069(0x216),'amKjw':function(_0x5cd0d9,_0x490fd6){return _0x5cd0d9!==_0x490fd6;},'zcLrn':_0x21d069(0x228),'NvhAP':_0x21d069(0x1aa),'qpiCC':function(_0x18e6c6,_0xbc851){return _0x18e6c6===_0xbc851;},'MYbxM':function(_0x5ecba6,_0x13576d){return _0x5ecba6 in _0x13576d;},'JMSBn':_0x21d069(0x185)};if(_0x248a94['qpiCC'](_0x3ce664,undefined))_0x3ce664=_0x25bea3;var _0x100229=Object['getOwnPropertyDescriptor'](_0xe2d0cf,_0x25bea3);(!_0x100229||(_0x248a94[_0x21d069(0x283)](_0x248a94[_0x21d069(0x290)],_0x100229)?!_0xe2d0cf[_0x21d069(0x22b)]:_0x100229[_0x21d069(0x254)]||_0x100229['configurable']))&&(_0x100229={'enumerable':!![],'get':function(){const _0x29b543=_0x21d069,_0x4cc28f={'mIXKg':_0x248a94['RuNue'],'FbrcY':_0x248a94[_0x29b543(0x25f)]};return _0x248a94[_0x29b543(0x209)](_0x248a94[_0x29b543(0x203)],_0x248a94[_0x29b543(0x1a5)])?_0xe2d0cf[_0x25bea3]:this[_0x29b543(0x20e)](_0x4cc28f['mIXKg'],_0xe112db,this[_0x29b543(0x1a8)](_0x2b106b),_0x2a8257,_0x58b3a0,_0x4cc28f[_0x29b543(0x282)]);}}),Object['defineProperty'](_0x411590,_0x3ce664,_0x100229);}:function(_0x2f75fe,_0xe8a956,_0x4a8924,_0x3525e4){const _0x51593a={'iltxm':function(_0x39788f,_0x1ab894){return _0x39788f===_0x1ab894;}};if(_0x51593a['iltxm'](_0x3525e4,undefined))_0x3525e4=_0x4a8924;_0x2f75fe[_0x3525e4]=_0xe8a956[_0x4a8924];}),a1_0x2b8ff8=this&&this[a1_0x57d67a(0x218)]||(Object[a1_0x57d67a(0x298)]?function(_0x2c73a8,_0x1a1046){const _0x2d5497=a1_0x57d67a,_0x15fa9c={'eSRxf':_0x2d5497(0x1fa)};Object[_0x2d5497(0x29c)](_0x2c73a8,_0x15fa9c[_0x2d5497(0x291)],{'enumerable':!![],'value':_0x1a1046});}:function(_0x2b0f5e,_0x5392eb){const _0x399a12=a1_0x57d67a;_0x2b0f5e[_0x399a12(0x1fa)]=_0x5392eb;}),a1_0x37b4ce=this&&this[a1_0x57d67a(0x1ec)]||(function(){const _0x1ec626=a1_0x57d67a,_0x4562ea={'lBvam':_0x1ec626(0x233),'vwbCO':_0x1ec626(0x22e),'DwKMB':'saphl','zGXWP':function(_0x57b652,_0x3da5e9){return _0x57b652!==_0x3da5e9;},'xrCyb':_0x1ec626(0x1d7),'ccsGL':'iWuVY','MPGjc':function(_0x1fb96e,_0x1bd878,_0x1aeae8){return _0x1fb96e(_0x1bd878,_0x1aeae8);},'HmWyb':function(_0x2e74e9,_0x5f295b){return _0x2e74e9!=_0x5f295b;},'eaKrq':function(_0x1af967,_0x107518){return _0x1af967(_0x107518);},'dOiWd':function(_0x37c2af,_0x370e26){return _0x37c2af<_0x370e26;},'wuqKJ':'default'};var _0x546261=function(_0x110c37){const _0x286a1e=_0x1ec626;return _0x4562ea[_0x286a1e(0x1df)]===_0x4562ea[_0x286a1e(0x245)]?this[_0x286a1e(0x20e)](_0x4562ea[_0x286a1e(0x1bf)],_0x2e3602,this['classifyError'](_0x1533aa),_0x2a17c3,_0x3e1894,_0x286a1e(0x27e)):(_0x546261=Object['getOwnPropertyNames']||function(_0x2dbb23){const _0x1ec61e=_0x286a1e;var _0x55c57e=[];for(var _0x29ce33 in _0x2dbb23)if(Object['prototype']['hasOwnProperty'][_0x1ec61e(0x234)](_0x2dbb23,_0x29ce33))_0x55c57e[_0x55c57e[_0x1ec61e(0x211)]]=_0x29ce33;return _0x55c57e;},_0x546261(_0x110c37));};return function(_0x37f7b5){const _0x227ebd=_0x1ec626;if(_0x4562ea[_0x227ebd(0x278)](_0x4562ea['xrCyb'],_0x4562ea['ccsGL'])){const _0x1b8114=_0x227ebd(0x27c)[_0x227ebd(0x24c)]('|');let _0x358bc3=0x0;while(!![]){switch(_0x1b8114[_0x358bc3++]){case'0':_0x4562ea['MPGjc'](a1_0x2b8ff8,_0x177824,_0x37f7b5);continue;case'1':var _0x177824={};continue;case'2':if(_0x4562ea[_0x227ebd(0x248)](_0x37f7b5,null)){for(var _0x22a67b=_0x4562ea[_0x227ebd(0x2aa)](_0x546261,_0x37f7b5),_0x19a15b=0x0;_0x4562ea[_0x227ebd(0x1a3)](_0x19a15b,_0x22a67b[_0x227ebd(0x211)]);_0x19a15b++)if(_0x22a67b[_0x19a15b]!==_0x4562ea[_0x227ebd(0x1d3)])a1_0x1b5ebb(_0x177824,_0x37f7b5,_0x22a67b[_0x19a15b]);}continue;case'3':if(_0x37f7b5&&_0x37f7b5[_0x227ebd(0x22b)])return _0x37f7b5;continue;case'4':return _0x177824;}break;}}else return _0x3c1c57[_0x1353f3];};}());Object[a1_0x57d67a(0x29c)](exports,'__esModule',{'value':!![]}),exports['BrowserManager']=void 0x0;function a1_0x4db2(_0x3d5bd6,_0x401be7){_0x3d5bd6=_0x3d5bd6-0x180;const _0x511bd9=a1_0x511b();let _0x4db29f=_0x511bd9[_0x3d5bd6];if(a1_0x4db2['TpsKqS']===undefined){var _0x58009d=function(_0x39de4b){const _0x15395e='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x22abcf='',_0x462841='';for(let _0x5d2da0=0x0,_0x244361,_0x45312b,_0x12f51d=0x0;_0x45312b=_0x39de4b['charAt'](_0x12f51d++);~_0x45312b&&(_0x244361=_0x5d2da0%0x4?_0x244361*0x40+_0x45312b:_0x45312b,_0x5d2da0++%0x4)?_0x22abcf+=String['fromCharCode'](0xff&_0x244361>>(-0x2*_0x5d2da0&0x6)):0x0){_0x45312b=_0x15395e['indexOf'](_0x45312b);}for(let _0x2b4287=0x0,_0x339f84=_0x22abcf['length'];_0x2b4287<_0x339f84;_0x2b4287++){_0x462841+='%'+('00'+_0x22abcf['charCodeAt'](_0x2b4287)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x462841);};a1_0x4db2['wWRmyo']=_0x58009d,a1_0x4db2['TmTSGd']={},a1_0x4db2['TpsKqS']=!![];}const _0x195a47=_0x511bd9[0x0],_0x20d82a=_0x3d5bd6+_0x195a47,_0x258c82=a1_0x4db2['TmTSGd'][_0x20d82a];return!_0x258c82?(_0x4db29f=a1_0x4db2['wWRmyo'](_0x4db29f),a1_0x4db2['TmTSGd'][_0x20d82a]=_0x4db29f):_0x4db29f=_0x258c82,_0x4db29f;}const a1_0x2c7a7f=require('playwright'),a1_0x4bcc7c=a1_0x37b4ce(require(a1_0x57d67a(0x194))),a1_0x51a2ea=a1_0x37b4ce(require('fs')),a1_0x550566=a1_0x4bcc7c[a1_0x57d67a(0x19d)](__dirname,a1_0x57d67a(0x286));class a1_0x207893{[a1_0x57d67a(0x25b)]=null;[a1_0x57d67a(0x2a4)]=null;[a1_0x57d67a(0x230)]=null;[a1_0x57d67a(0x275)]=![];[a1_0x57d67a(0x27d)](){const _0x3ffa2e=a1_0x57d67a;return new Date()[_0x3ffa2e(0x1bc)]();}[a1_0x57d67a(0x1a2)](_0x22a74e){return Date['now']()-_0x22a74e;}['buildResult'](_0x2bd7f0,_0x54b4ca,_0x28a5e5,_0x5de617,_0x3ba49e,_0x2e7902='',_0x303a99='',_0x516886=null,_0x1b0c47=null,_0x20644f=null){return{'uid':_0x516886,'obj_uid':_0x1b0c47,'page_uid':_0x20644f,'step_name':_0x2e7902,'step_script':_0x303a99,'status':_0x2bd7f0,'expected_result':_0x54b4ca,'comments':_0x28a5e5,'duration':this['getDuration'](_0x5de617),'start_time':_0x3ba49e};}async[a1_0x57d67a(0x2a7)](_0x2eadb3,_0x44d056){const _0x254260=a1_0x57d67a,_0x5f2549={'zgIEn':'never','IZgXB':function(_0x391563,_0x387f48){return _0x391563===_0x387f48;},'MRQTe':_0x254260(0x1ed),'jCAcx':_0x254260(0x226),'sxAqw':_0x254260(0x1c3)};if(_0x2eadb3===_0x5f2549[_0x254260(0x2b1)])return'';if(_0x5f2549[_0x254260(0x1e8)](_0x2eadb3,_0x5f2549[_0x254260(0x295)])&&!_0x44d056)return'';try{if(!this[_0x254260(0x230)]||this['page']['isClosed']())return'';const _0x37bdae=await this[_0x254260(0x230)][_0x254260(0x217)]({'type':_0x5f2549[_0x254260(0x2ae)],'fullPage':![]});return _0x37bdae[_0x254260(0x1cf)](_0x5f2549[_0x254260(0x1d0)]);}catch{return'';}}[a1_0x57d67a(0x1e3)](){const _0x54c58a=a1_0x57d67a;!a1_0x51a2ea[_0x54c58a(0x2ab)](a1_0x550566)&&a1_0x51a2ea[_0x54c58a(0x239)](a1_0x550566,{'recursive':!![]});}[a1_0x57d67a(0x1a8)](_0x2ed1e7){const _0x4ef454=a1_0x57d67a,_0xcbf38c={'ApAYo':function(_0x25f0c7,_0x462b21,_0x1a87d6){return _0x25f0c7(_0x462b21,_0x1a87d6);},'iNCLz':function(_0x27092b,_0xf8f1de){return _0x27092b!==_0xf8f1de;},'RzEKG':_0x4ef454(0x1fa),'tFOfJ':function(_0x157e22,_0x37fd79,_0x516747,_0x198f76){return _0x157e22(_0x37fd79,_0x516747,_0x198f76);},'oXLcc':'0|2|1|4|3','kBtSj':function(_0x53ced4,_0xbf6ead){return _0x53ced4!=_0xbf6ead;},'kYmbb':function(_0x257401,_0xf931b9){return _0x257401(_0xf931b9);},'aRzss':function(_0x4e4b1d,_0x3a5411){return _0x4e4b1d<_0x3a5411;},'vdLvF':function(_0x84a70a,_0x5b3592){return _0x84a70a!==_0x5b3592;},'Ppkrz':function(_0xcfaaf0,_0xa8f607,_0x4762d9){return _0xcfaaf0(_0xa8f607,_0x4762d9);},'JUuoi':_0x4ef454(0x29a),'ajDtP':_0x4ef454(0x233),'NRCep':_0x4ef454(0x213),'HKeGd':_0x4ef454(0x1ad),'zJyNN':function(_0x472af9,_0x379ba7){return _0x472af9===_0x379ba7;},'XoeMs':_0x4ef454(0x261),'TNxAw':_0x4ef454(0x289),'KOKMY':_0x4ef454(0x279),'XSHgu':_0x4ef454(0x200),'DcMFH':_0x4ef454(0x284),'yOPmE':_0x4ef454(0x1c4),'hIkBj':_0x4ef454(0x25c),'Wrqji':_0x4ef454(0x225),'TwgDJ':_0x4ef454(0x1b4),'VeTvA':_0x4ef454(0x21b),'cOvgn':_0x4ef454(0x2a8),'ZeiLh':_0x4ef454(0x215),'YubQg':_0x4ef454(0x28c),'PbYMY':_0x4ef454(0x1c1),'pdgWr':_0x4ef454(0x20a),'isDHi':_0x4ef454(0x224),'AgjXo':_0x4ef454(0x2af),'hFEIa':function(_0x5f208b,_0x96beb2){return _0x5f208b===_0x96beb2;},'nyJmE':'Naosu','wFxqF':_0x4ef454(0x1f5),'pntdE':function(_0x57b653,_0x194499){return _0x57b653!==_0x194499;}},_0x56ee6b=_0x2ed1e7?.[_0x4ef454(0x1b2)]||_0xcbf38c[_0x4ef454(0x288)](String,_0x2ed1e7);if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x26a)])||_0x56ee6b[_0x4ef454(0x26c)](_0x4ef454(0x180))){if(_0xcbf38c[_0x4ef454(0x23c)](_0x4ef454(0x261),_0xcbf38c[_0x4ef454(0x293)]))return _0x4ef454(0x23f)+_0x56ee6b;else{const _0x4aa623={'PCVCM':function(_0x23ea4d,_0x4ad764){return _0x23ea4d(_0x4ad764);},'SLXgO':function(_0x1fc586,_0x58d8c0,_0x1eea4d){const _0x347e45=_0x4ef454;return ZIeFzK[_0x347e45(0x27a)](_0x1fc586,_0x58d8c0,_0x1eea4d);},'Iyzrp':function(_0x168a5d,_0x3ee253){return _0x168a5d<_0x3ee253;},'sKurW':function(_0x218709,_0x3b52ca){return ZIeFzK['iNCLz'](_0x218709,_0x3b52ca);},'tJtGy':ZIeFzK['RzEKG'],'HOIjI':function(_0x179da0,_0x3daf81,_0x39d07d,_0x3452fd){return ZIeFzK['tFOfJ'](_0x179da0,_0x3daf81,_0x39d07d,_0x3452fd);}};var _0xb3da2=function(_0x57f908){const _0x5a3daf=_0x4ef454;return _0xb3da2=_0x13a120[_0x5a3daf(0x25e)]||function(_0x27c9d3){const _0x457b18=_0x5a3daf;var _0x2c9e79=[];for(var _0x3ed8b7 in _0x27c9d3)if(_0x4572ea[_0x457b18(0x1cd)]['hasOwnProperty'][_0x457b18(0x234)](_0x27c9d3,_0x3ed8b7))_0x2c9e79[_0x2c9e79[_0x457b18(0x211)]]=_0x3ed8b7;return _0x2c9e79;},_0x4aa623[_0x5a3daf(0x21a)](_0xb3da2,_0x57f908);};return function(_0xecc6b8){const _0x771b88=_0x4ef454,_0x113ca8=_0x771b88(0x18c)['split']('|');let _0xe23151=0x0;while(!![]){switch(_0x113ca8[_0xe23151++]){case'0':_0x4aa623[_0x771b88(0x182)](_0x2e5b3d,_0x3221ac,_0xecc6b8);continue;case'1':return _0x3221ac;case'2':if(_0xecc6b8&&_0xecc6b8[_0x771b88(0x22b)])return _0xecc6b8;continue;case'3':if(_0xecc6b8!=null){for(var _0x206f01=_0xb3da2(_0xecc6b8),_0x5e448c=0x0;_0x4aa623[_0x771b88(0x281)](_0x5e448c,_0x206f01[_0x771b88(0x211)]);_0x5e448c++)if(_0x4aa623[_0x771b88(0x1d1)](_0x206f01[_0x5e448c],_0x4aa623[_0x771b88(0x270)]))_0x4aa623[_0x771b88(0x1bd)](_0x1ec31e,_0x3221ac,_0xecc6b8,_0x206f01[_0x5e448c]);}continue;case'4':var _0x3221ac={};continue;}break;}};}}if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x262)]))return _0x4ef454(0x20b)+_0x56ee6b;if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x1b8)])||_0x56ee6b[_0x4ef454(0x26c)](_0x4ef454(0x19e))){if(_0xcbf38c[_0x4ef454(0x1ce)](_0x4ef454(0x1c2),_0x4ef454(0x241)))return _0x4ef454(0x280)+_0x56ee6b;else _0x22bc39[ZIeFzK[_0x4ef454(0x277)]]=_0x5e312a;}if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c['XSHgu'])||_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x297)])){if(_0xcbf38c[_0x4ef454(0x1ce)](_0xcbf38c['yOPmE'],_0x4ef454(0x1c4))){const _0x41e07f=_0xcbf38c[_0x4ef454(0x1a7)]['split']('|');let _0x48454a=0x0;while(!![]){switch(_0x41e07f[_0x48454a++]){case'0':if(_0x4496d6&&_0x3551df[_0x4ef454(0x22b)])return _0x2979c9;continue;case'1':if(ZIeFzK[_0x4ef454(0x18b)](_0x42219a,null)){for(var _0x37d9c7=ZIeFzK[_0x4ef454(0x288)](_0x4b65c2,_0xb45c98),_0x29fb42=0x0;ZIeFzK[_0x4ef454(0x19a)](_0x29fb42,_0x37d9c7[_0x4ef454(0x211)]);_0x29fb42++)if(ZIeFzK[_0x4ef454(0x250)](_0x37d9c7[_0x29fb42],ZIeFzK[_0x4ef454(0x277)]))_0x3763e3(_0x3a02c2,_0x1dd081,_0x37d9c7[_0x29fb42]);}continue;case'2':var _0x3a02c2={};continue;case'3':return _0x3a02c2;case'4':ZIeFzK[_0x4ef454(0x287)](_0x438038,_0x3a02c2,_0x1c76af);continue;}break;}}else return _0x4ef454(0x1a6)+_0x56ee6b;}if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c['hIkBj'])||_0x56ee6b['includes'](_0xcbf38c[_0x4ef454(0x1c6)])){if(_0xcbf38c[_0x4ef454(0x250)](_0xcbf38c['TwgDJ'],_0xcbf38c[_0x4ef454(0x260)])){if(!this[_0x4ef454(0x230)])throw new _0x47a386(_0xcbf38c[_0x4ef454(0x220)]);return this[_0x4ef454(0x230)][_0x4ef454(0x1dd)]();}else return _0x4ef454(0x25a)+_0x56ee6b;}if(_0x56ee6b['includes'](_0xcbf38c[_0x4ef454(0x190)])||_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c['cOvgn']))return _0x4ef454(0x26f)+_0x56ee6b;if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c['ZeiLh'])||_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x1de)]))return _0xcbf38c[_0x4ef454(0x1bb)]!==_0x4ef454(0x1c1)?this[_0x4ef454(0x20e)](_0xcbf38c[_0x4ef454(0x1f6)],_0x49dbed,this[_0x4ef454(0x1a8)](_0x1ad193),_0x11241d,_0x3a9b3f,_0xcbf38c[_0x4ef454(0x18a)]):'Edge\x20browser\x20error\x20-\x20ensure\x20Microsoft\x20Edge\x20is\x20installed:\x20'+_0x56ee6b;if(_0x56ee6b['includes'](_0xcbf38c[_0x4ef454(0x1e2)])||_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x1e1)]))return _0xcbf38c[_0x4ef454(0x250)](_0x4ef454(0x1dc),_0x4ef454(0x22d))?'Permission\x20denied\x20-\x20check\x20folder/file\x20permissions:\x20'+_0x56ee6b:_0x4ef454(0x23f)+_0x56fd5a;if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x1ee)]))return _0xcbf38c[_0x4ef454(0x24b)](_0xcbf38c['nyJmE'],_0xcbf38c['nyJmE'])?_0x4ef454(0x1cb)+_0x56ee6b:this[_0x4ef454(0x20e)](_0xcbf38c['ajDtP'],_0x49aab9,this[_0x4ef454(0x1a8)](_0x3344a0),_0x527003,_0x2f153a,_0x4ef454(0x253)+_0x558fa9);if(_0x56ee6b[_0x4ef454(0x26c)](_0xcbf38c[_0x4ef454(0x21f)]))return _0x4ef454(0x1c7)+_0x56ee6b;if(_0x56ee6b[_0x4ef454(0x26c)]('Page\x20is\x20not\x20initialized')||_0x56ee6b[_0x4ef454(0x26c)]('Browser\x20is\x20not\x20open'))return _0xcbf38c[_0x4ef454(0x196)](_0x4ef454(0x2a0),_0x4ef454(0x22f))?_0x4ef454(0x193)+_0x56ee6b:this['buildResult'](_0xcbf38c[_0x4ef454(0x1f6)],_0x53d47b,this[_0x4ef454(0x1a8)](_0x44d1c3),_0x135234,_0x369c24,'Wait\x20for\x20network\x20idle');return _0x4ef454(0x1a4)+_0x56ee6b;}[a1_0x57d67a(0x1f3)](){const _0x5907ba=a1_0x57d67a;if(!this['page'])throw new Error(_0x5907ba(0x23d));return this[_0x5907ba(0x230)];}async[a1_0x57d67a(0x19f)](_0x1ec83f,_0x8840b9=![],_0x21e49f=![]){const _0x7c5bc9=a1_0x57d67a,_0x2dd52c={'OsufE':function(_0x2ad697,_0x40a1ad){return _0x2ad697===_0x40a1ad;},'KvXMa':_0x7c5bc9(0x259),'IjHza':function(_0xa1abed,_0x342edd){return _0xa1abed===_0x342edd;},'BUQMx':_0x7c5bc9(0x28c),'PaNzL':_0x7c5bc9(0x208),'CfUsZ':function(_0x164e42,_0xccdd93){return _0x164e42!==_0xccdd93;},'Lzgzg':_0x7c5bc9(0x1d9),'UsRkM':_0x7c5bc9(0x246),'dQXVo':_0x7c5bc9(0x1e0),'nWPHu':_0x7c5bc9(0x235),'nmSeM':_0x7c5bc9(0x233)},_0x43054b=Date['now'](),_0x2d4601=this[_0x7c5bc9(0x27d)](),_0x2dd9e3=_0x1ec83f+'\x20browser\x20opened\x20successfully';this[_0x7c5bc9(0x275)]=_0x21e49f;try{if(_0x2dd52c[_0x7c5bc9(0x272)](_0x1ec83f,_0x2dd52c[_0x7c5bc9(0x205)]))this['browser']=await a1_0x2c7a7f[_0x7c5bc9(0x259)][_0x7c5bc9(0x292)]({'headless':_0x8840b9});else{if(_0x2dd52c[_0x7c5bc9(0x21c)](_0x1ec83f,_0x2dd52c['BUQMx']))this['browser']=await a1_0x2c7a7f[_0x7c5bc9(0x244)][_0x7c5bc9(0x292)]({'channel':_0x7c5bc9(0x215),'headless':_0x8840b9});else{if(_0x2dd52c[_0x7c5bc9(0x21c)](_0x1ec83f,_0x7c5bc9(0x208)))this['browser']=await a1_0x2c7a7f[_0x7c5bc9(0x244)][_0x7c5bc9(0x292)]({'channel':_0x2dd52c['PaNzL'],'headless':_0x8840b9});else{if(_0x2dd52c[_0x7c5bc9(0x1ef)](_0x2dd52c[_0x7c5bc9(0x1c5)],_0x2dd52c[_0x7c5bc9(0x1f8)]))this['browser']=await a1_0x2c7a7f[_0x7c5bc9(0x244)][_0x7c5bc9(0x292)]({'headless':_0x8840b9});else return _0x46358b[_0x7c5bc9(0x1b0)](_0x7c5bc9(0x202)+_0x5d9cad[_0x7c5bc9(0x1b2)]),null;}}}const _0x17cd23={};if(this[_0x7c5bc9(0x275)]){if(_0x2dd52c[_0x7c5bc9(0x1ef)](_0x2dd52c[_0x7c5bc9(0x294)],_0x2dd52c['dQXVo']))return'Permission\x20denied\x20-\x20check\x20folder/file\x20permissions:\x20'+_0x49cce0;else this[_0x7c5bc9(0x1e3)](),_0x17cd23[_0x7c5bc9(0x229)]={'dir':a1_0x550566,'size':{'width':0x500,'height':0x2d0}};}return this['context']=await this['browser']['newContext'](_0x17cd23),this[_0x7c5bc9(0x230)]=await this[_0x7c5bc9(0x2a4)]['newPage'](),this['buildResult'](_0x2dd52c['nWPHu'],_0x2dd9e3,_0x2dd9e3,_0x43054b,_0x2d4601,_0x7c5bc9(0x253)+_0x1ec83f);}catch(_0x10340d){return this[_0x7c5bc9(0x20e)](_0x2dd52c[_0x7c5bc9(0x269)],_0x2dd9e3,this[_0x7c5bc9(0x1a8)](_0x10340d),_0x43054b,_0x2d4601,_0x7c5bc9(0x253)+_0x1ec83f);}}async[a1_0x57d67a(0x271)](_0x3951fc=''){const _0x8e52ff=a1_0x57d67a,_0xca90e8={'EutIN':_0x8e52ff(0x233),'EAyiF':_0x8e52ff(0x210),'KuyaP':_0x8e52ff(0x23d),'wngrv':_0x8e52ff(0x26d),'AVULF':'Browser\x20closed\x20successfully','kLLxu':_0x8e52ff(0x266),'NiSfS':'ElyFp','NAtGm':function(_0x156ac6,_0x1490ee){return _0x156ac6!==_0x1490ee;},'fjoeL':_0x8e52ff(0x1be),'WRNNs':_0x8e52ff(0x207),'zkQGK':function(_0x4da63b,_0x584cc0){return _0x4da63b!==_0x584cc0;},'tvVzS':_0x8e52ff(0x251),'BKRvz':_0x8e52ff(0x235),'EQhHk':function(_0x1d0d3b,_0x39003d){return _0x1d0d3b===_0x39003d;},'LJvIo':_0x8e52ff(0x221)},_0x193bf3=Date[_0x8e52ff(0x198)](),_0x7a2a9f=this[_0x8e52ff(0x27d)](),_0x59b5ac=_0xca90e8[_0x8e52ff(0x212)];try{if(this[_0x8e52ff(0x275)]&&this[_0x8e52ff(0x230)]){if(_0xca90e8[_0x8e52ff(0x1d8)]===_0xca90e8[_0x8e52ff(0x1e9)])return this[_0x8e52ff(0x20e)](_0xca90e8[_0x8e52ff(0x265)],_0x592837,this[_0x8e52ff(0x1a8)](_0x522d1b),_0x1ffaee,_0x5d07f0,_0xca90e8[_0x8e52ff(0x28e)]);else{const _0x1fdf9b=this[_0x8e52ff(0x230)][_0x8e52ff(0x1db)]();if(_0x1fdf9b){if(_0xca90e8[_0x8e52ff(0x191)](_0xca90e8[_0x8e52ff(0x18f)],_0xca90e8[_0x8e52ff(0x18f)])){if(!this['page'])throw new _0x54876b(pnRerz[_0x8e52ff(0x1fd)]);return this[_0x8e52ff(0x230)];}else{const _0x52511b=a1_0x4bcc7c['join'](a1_0x550566,(_0x3951fc||_0xca90e8['WRNNs'])+'_'+Date['now']()+_0x8e52ff(0x1b6));await this[_0x8e52ff(0x2a4)]?.[_0x8e52ff(0x1f9)](),await _0x1fdf9b['saveAs'](_0x52511b),await _0x1fdf9b['delete'](),this[_0x8e52ff(0x1fb)]=_0x52511b;}}else await this['context']?.[_0x8e52ff(0x1f9)]();}}else{if(_0xca90e8[_0x8e52ff(0x232)](_0x8e52ff(0x1e6),_0xca90e8[_0x8e52ff(0x1f2)]))await this[_0x8e52ff(0x2a4)]?.['close']();else return _0x8e52ff(0x20b)+_0x267f62;}return await this[_0x8e52ff(0x25b)]?.[_0x8e52ff(0x1f9)](),this[_0x8e52ff(0x25b)]=null,this[_0x8e52ff(0x2a4)]=null,this[_0x8e52ff(0x230)]=null,this[_0x8e52ff(0x20e)](_0xca90e8[_0x8e52ff(0x219)],_0x59b5ac,_0x59b5ac,_0x193bf3,_0x7a2a9f,'Close\x20browser');}catch(_0x3e69e4){return _0xca90e8['EQhHk'](_0x8e52ff(0x221),_0xca90e8[_0x8e52ff(0x1ff)])?this[_0x8e52ff(0x20e)]('FAIL',_0x59b5ac,this[_0x8e52ff(0x1a8)](_0x3e69e4),_0x193bf3,_0x7a2a9f,'Close\x20browser'):this['buildResult'](_0xca90e8['EutIN'],_0x2e548f,this['classifyError'](_0x538759),_0x5ce537,_0x2dc971,_0xca90e8[_0x8e52ff(0x184)]);}}async[a1_0x57d67a(0x206)](_0x7b40a){const _0x5b9c21=a1_0x57d67a,_0x5dbaab={'JhAtg':_0x5b9c21(0x29a),'SJqXs':_0x5b9c21(0x235),'ZLDkb':_0x5b9c21(0x233),'Lvzqr':_0x5b9c21(0x216)},_0x5be4bb=Date['now'](),_0x2579a7=this[_0x5b9c21(0x27d)](),_0x94fe8e=_0x7b40a+_0x5b9c21(0x204);try{if(!this[_0x5b9c21(0x230)])throw new Error(_0x5dbaab['JhAtg']);return await this[_0x5b9c21(0x230)]['goto'](_0x7b40a,{'waitUntil':_0x5b9c21(0x256),'timeout':0x7530}),this[_0x5b9c21(0x20e)](_0x5dbaab['SJqXs'],_0x94fe8e,_0x94fe8e,_0x5be4bb,_0x2579a7,'Navigate\x20to\x20URL');}catch(_0x209f58){return this['buildResult'](_0x5dbaab['ZLDkb'],_0x94fe8e,this[_0x5b9c21(0x1a8)](_0x209f58),_0x5be4bb,_0x2579a7,_0x5dbaab['Lvzqr']);}}async['getTitle'](){const _0x51c426=a1_0x57d67a,_0x3398b6={'GbHnj':_0x51c426(0x2ac),'AgkHU':_0x51c426(0x1f7),'IZXPZ':_0x51c426(0x29a),'csVSg':function(_0x10070d,_0x19a6dd){return _0x10070d===_0x19a6dd;},'itFZt':_0x51c426(0x29b),'JiARZ':'Get\x20title'},_0xe1cee4=Date[_0x51c426(0x198)](),_0x13e3ff=this[_0x51c426(0x27d)](),_0xfe89c5=_0x3398b6[_0x51c426(0x22c)];try{if(!this[_0x51c426(0x230)])throw new Error(_0x3398b6[_0x51c426(0x214)]);const _0x24733d=await this[_0x51c426(0x230)][_0x51c426(0x195)]();return this[_0x51c426(0x20e)]('PASS',_0xfe89c5,_0x51c426(0x1e4)+_0x24733d,_0xe1cee4,_0x13e3ff,_0x51c426(0x210));}catch(_0x2c9c29){if(_0x3398b6[_0x51c426(0x186)](_0x51c426(0x29b),_0x3398b6[_0x51c426(0x237)]))return this[_0x51c426(0x20e)](_0x51c426(0x233),_0xfe89c5,this['classifyError'](_0x2c9c29),_0xe1cee4,_0x13e3ff,_0x3398b6[_0x51c426(0x23e)]);else try{if(!this[_0x51c426(0x230)])throw new _0x38aa4d(_0x51c426(0x29a));return this[_0x51c426(0x230)][_0x51c426(0x1dd)]();}catch(_0xd0b8f4){return _0x37931a[_0x51c426(0x1b0)]('Failed\x20to\x20get\x20current\x20URL:\x20'+_0xd0b8f4['message']),_0x3398b6[_0x51c426(0x1fc)];}}}async['waitUntilLoaded'](){const _0x2d9604=a1_0x57d67a,_0x3ead6f={'nCGkU':_0x2d9604(0x29a),'SmWCH':'load','xudBH':_0x2d9604(0x235),'WZyYQ':_0x2d9604(0x233),'Mvhxh':_0x2d9604(0x25d)},_0x2ba4da=Date[_0x2d9604(0x198)](),_0x21a6c4=this[_0x2d9604(0x27d)](),_0x4e8a61=_0x2d9604(0x192);try{if(!this[_0x2d9604(0x230)])throw new Error(_0x3ead6f[_0x2d9604(0x181)]);return await this['page'][_0x2d9604(0x1ac)](_0x3ead6f[_0x2d9604(0x197)],{'timeout':0x7530}),this[_0x2d9604(0x20e)](_0x3ead6f[_0x2d9604(0x29e)],_0x4e8a61,_0x4e8a61,_0x2ba4da,_0x21a6c4,_0x2d9604(0x25d));}catch(_0x31096a){return this[_0x2d9604(0x20e)](_0x3ead6f[_0x2d9604(0x1ab)],_0x4e8a61,this[_0x2d9604(0x1a8)](_0x31096a),_0x2ba4da,_0x21a6c4,_0x3ead6f['Mvhxh']);}}async[a1_0x57d67a(0x1b3)](){const _0x314c3b=a1_0x57d67a,_0x489bd2={'SaeHS':_0x314c3b(0x20d),'NxqKx':function(_0x19f356,_0x2278a5){return _0x19f356!==_0x2278a5;},'OedIZ':_0x314c3b(0x28a),'ZXTjQ':_0x314c3b(0x2a2),'JBazu':_0x314c3b(0x29a),'IVLYO':_0x314c3b(0x18d),'ATKwA':_0x314c3b(0x235),'gCbfs':'Wait\x20for\x20network\x20idle','Bjaxo':function(_0x92dad0,_0x4cfde1){return _0x92dad0===_0x4cfde1;},'lvVGX':_0x314c3b(0x249),'wBmoD':_0x314c3b(0x233)},_0x2229be=Date[_0x314c3b(0x198)](),_0x533391=this[_0x314c3b(0x27d)](),_0x3c38f2=_0x489bd2['SaeHS'];try{if(_0x489bd2[_0x314c3b(0x28b)](_0x489bd2[_0x314c3b(0x1ca)],_0x489bd2[_0x314c3b(0x1d5)])){if(!this['page'])throw new Error(_0x489bd2['JBazu']);return await this[_0x314c3b(0x230)]['waitForLoadState'](_0x489bd2['IVLYO'],{'timeout':0x7530}),this[_0x314c3b(0x20e)](_0x489bd2[_0x314c3b(0x18e)],_0x3c38f2,_0x3c38f2,_0x2229be,_0x533391,_0x489bd2[_0x314c3b(0x247)]);}else return this[_0x314c3b(0x1fb)];}catch(_0x93a1b){return _0x489bd2[_0x314c3b(0x21d)](_0x314c3b(0x276),_0x489bd2['lvVGX'])?'SSL/Certificate\x20error:\x20'+_0x211ae6:this['buildResult'](_0x489bd2[_0x314c3b(0x188)],_0x3c38f2,this[_0x314c3b(0x1a8)](_0x93a1b),_0x2229be,_0x533391,_0x489bd2[_0x314c3b(0x247)]);}}async[a1_0x57d67a(0x24a)](){const _0x2d7299=a1_0x57d67a,_0x5a820b={'skWWO':_0x2d7299(0x2b0),'Mvigp':'Browser\x20is\x20not\x20open','TVKDY':_0x2d7299(0x256),'vGDzc':_0x2d7299(0x1c9),'fKigs':function(_0x4f14ef,_0x45b7ff){return _0x4f14ef!==_0x45b7ff;},'LyyWw':'AXYcI'},_0x45b8b1=Date['now'](),_0x3c3d6c=this[_0x2d7299(0x27d)](),_0x445c59=_0x5a820b[_0x2d7299(0x1a1)];try{if(!this[_0x2d7299(0x230)])throw new Error(_0x5a820b['Mvigp']);return await this['page']['reload']({'waitUntil':_0x5a820b[_0x2d7299(0x222)],'timeout':0x7530}),this[_0x2d7299(0x20e)](_0x2d7299(0x235),_0x445c59,_0x445c59,_0x45b8b1,_0x3c3d6c,_0x5a820b[_0x2d7299(0x273)]);}catch(_0x155653){if(_0x5a820b[_0x2d7299(0x23b)](_0x2d7299(0x252),_0x5a820b[_0x2d7299(0x1a0)]))_0x3edabe[_0x2d7299(0x239)](_0x63d301,{'recursive':!![]});else return this[_0x2d7299(0x20e)]('FAIL',_0x445c59,this[_0x2d7299(0x1a8)](_0x155653),_0x45b8b1,_0x3c3d6c,_0x5a820b[_0x2d7299(0x273)]);}}async[a1_0x57d67a(0x296)](){const _0x201ec2=a1_0x57d67a,_0x59f211={'HTTTt':_0x201ec2(0x233),'MLaQv':_0x201ec2(0x25d),'iRGgb':'Navigated\x20back\x20successfully','pCxKf':_0x201ec2(0x199),'Klmdz':function(_0x1fad6a,_0x44e17d){return _0x1fad6a===_0x44e17d;},'FLnAO':'wOgfc'},_0x5ae2d4=Date[_0x201ec2(0x198)](),_0x90959c=this[_0x201ec2(0x27d)](),_0x5d1ef7=_0x59f211[_0x201ec2(0x236)];try{if(!this['page'])throw new Error('Browser\x20is\x20not\x20open');return await this[_0x201ec2(0x230)][_0x201ec2(0x296)]({'waitUntil':_0x201ec2(0x256),'timeout':0x7530}),this[_0x201ec2(0x20e)](_0x201ec2(0x235),_0x5d1ef7,_0x5d1ef7,_0x5ae2d4,_0x90959c,_0x59f211['pCxKf']);}catch(_0x53c495){return _0x59f211[_0x201ec2(0x1d6)](_0x59f211[_0x201ec2(0x189)],_0x59f211[_0x201ec2(0x189)])?this['buildResult']('FAIL',_0x5d1ef7,this[_0x201ec2(0x1a8)](_0x53c495),_0x5ae2d4,_0x90959c,_0x59f211[_0x201ec2(0x26e)]):this['buildResult'](uuzYXk[_0x201ec2(0x1cc)],_0x408fc2,this[_0x201ec2(0x1a8)](_0x232256),_0xc2a01e,_0x4b7769,uuzYXk[_0x201ec2(0x2a1)]);}}async[a1_0x57d67a(0x255)](){const _0x3d8920=a1_0x57d67a,_0x508eb9={'TGgmV':_0x3d8920(0x187),'vJedr':_0x3d8920(0x29a),'oZiYk':'Go\x20forward','CYtMm':_0x3d8920(0x233)},_0x2fa823=Date[_0x3d8920(0x198)](),_0x25ce32=this['getStartTime'](),_0x4a37ca=_0x508eb9[_0x3d8920(0x2a3)];try{if(!this[_0x3d8920(0x230)])throw new Error(_0x508eb9['vJedr']);return await this['page'][_0x3d8920(0x255)]({'waitUntil':'load','timeout':0x7530}),this[_0x3d8920(0x20e)]('PASS',_0x4a37ca,_0x4a37ca,_0x2fa823,_0x25ce32,_0x508eb9[_0x3d8920(0x1fe)]);}catch(_0xd55cad){return this[_0x3d8920(0x20e)](_0x508eb9[_0x3d8920(0x243)],_0x4a37ca,this[_0x3d8920(0x1a8)](_0xd55cad),_0x2fa823,_0x25ce32,_0x508eb9['oZiYk']);}}async['getCurrentURL'](){const _0x4070ea=a1_0x57d67a,_0x48597f={'gPEMk':_0x4070ea(0x233),'lcvhf':_0x4070ea(0x199),'mAfdD':'gROFf','uWwLW':_0x4070ea(0x29a),'RmCHa':_0x4070ea(0x235),'OdElk':_0x4070ea(0x213),'lvKrN':function(_0x910cec,_0x1a8d68){return _0x910cec!==_0x1a8d68;},'RASWt':_0x4070ea(0x24e)},_0x27597f=Date[_0x4070ea(0x198)](),_0x32150a=this[_0x4070ea(0x27d)](),_0x25db50=_0x4070ea(0x1b9);try{if(_0x48597f[_0x4070ea(0x242)]===_0x48597f['mAfdD']){if(!this[_0x4070ea(0x230)])throw new Error(_0x48597f[_0x4070ea(0x1eb)]);const _0x3277d9=this[_0x4070ea(0x230)][_0x4070ea(0x1dd)]();return this[_0x4070ea(0x20e)](_0x48597f[_0x4070ea(0x2ad)],_0x25db50,_0x4070ea(0x1e7)+_0x3277d9,_0x27597f,_0x32150a,_0x48597f[_0x4070ea(0x240)]);}else return this[_0x4070ea(0x20e)](PPGkjz[_0x4070ea(0x1af)],_0x289199,this[_0x4070ea(0x1a8)](_0x50210c),_0x5ddf64,_0x555417,PPGkjz[_0x4070ea(0x23a)]);}catch(_0x2e37a9){return _0x48597f[_0x4070ea(0x223)](_0x48597f[_0x4070ea(0x258)],_0x4070ea(0x24e))?this[_0x4070ea(0x20e)](PPGkjz[_0x4070ea(0x1af)],_0x5cf3c1,this[_0x4070ea(0x1a8)](_0x264b04),_0x2d5060,_0x5719a9,_0x4070ea(0x1e5)):this[_0x4070ea(0x20e)](_0x4070ea(0x233),_0x25db50,this[_0x4070ea(0x1a8)](_0x2e37a9),_0x27597f,_0x32150a,_0x48597f[_0x4070ea(0x240)]);}}async[a1_0x57d67a(0x2a5)](){const _0x5afdaf=a1_0x57d67a,_0x407b5d={'srmCB':function(_0x4f6718,_0x1abf95){return _0x4f6718-_0x1abf95;},'LBAfr':'Browser\x20window\x20maximized\x20successfully','JpgTL':_0x5afdaf(0x235),'okKoO':'Maximize\x20window','pspMD':_0x5afdaf(0x27f),'jWbor':_0x5afdaf(0x233)},_0xba9ac1=Date[_0x5afdaf(0x198)](),_0x251c2e=this[_0x5afdaf(0x27d)](),_0x1f38c0=_0x407b5d[_0x5afdaf(0x299)];try{if(_0x5afdaf(0x1d2)===_0x5afdaf(0x1a9))_0x5b53aa={'enumerable':!![],'get':function(){return _0x5b471b[_0x15376a];}};else{if(!this['page'])throw new Error(_0x5afdaf(0x29a));return await this[_0x5afdaf(0x230)][_0x5afdaf(0x21e)]({'width':0x780,'height':0x438}),this[_0x5afdaf(0x20e)](_0x407b5d[_0x5afdaf(0x1c0)],_0x1f38c0,_0x1f38c0,_0xba9ac1,_0x251c2e,_0x407b5d['okKoO']);}}catch(_0x2eddee){return'nYVjV'===_0x407b5d[_0x5afdaf(0x26b)]?this[_0x5afdaf(0x20e)](_0x407b5d[_0x5afdaf(0x1b7)],_0x1f38c0,this['classifyError'](_0x2eddee),_0xba9ac1,_0x251c2e,_0x407b5d[_0x5afdaf(0x1f4)]):oENyGV[_0x5afdaf(0x28f)](_0x266669[_0x5afdaf(0x198)](),_0x48b04c);}}async[a1_0x57d67a(0x274)](_0xe9f582){const _0x2e3537=a1_0x57d67a,_0x356dcf={'sdMir':function(_0x571199,_0x5986a1){return _0x571199 in _0x5986a1;},'IdvQw':_0x2e3537(0x185),'bDnTo':_0x2e3537(0x29a),'PVidB':_0x2e3537(0x235),'vfPEc':_0x2e3537(0x27e),'iFwZc':function(_0x1185d2,_0x2fd0c6){return _0x1185d2!==_0x2fd0c6;},'VESqW':_0x2e3537(0x233)},_0x1ed1b8=Date[_0x2e3537(0x198)](),_0x37c4c2=this[_0x2e3537(0x27d)](),_0x166073=_0x2e3537(0x1b5)+_0xe9f582;try{if(!this[_0x2e3537(0x230)])throw new Error(_0x356dcf[_0x2e3537(0x1c8)]);const _0x466f22=a1_0x4bcc7c[_0x2e3537(0x231)](_0xe9f582);if(!a1_0x51a2ea['existsSync'](_0x466f22))a1_0x51a2ea['mkdirSync'](_0x466f22,{'recursive':!![]});return await this[_0x2e3537(0x230)][_0x2e3537(0x217)]({'path':_0xe9f582,'fullPage':!![]}),this[_0x2e3537(0x20e)](_0x356dcf['PVidB'],_0x166073,_0x166073,_0x1ed1b8,_0x37c4c2,_0x356dcf[_0x2e3537(0x285)]);}catch(_0xf70969){if(_0x356dcf[_0x2e3537(0x19b)]('aDYbl',_0x2e3537(0x267))){if(_0x2b58ea===_0x158ca2)_0x3b3835=_0x18f4e0;var _0x2c1e5d=_0x1e3ae2[_0x2e3537(0x29f)](_0x58c281,_0x371c38);(!_0x2c1e5d||(OhkqYc['sdMir'](OhkqYc['IdvQw'],_0x2c1e5d)?!_0x45188e['__esModule']:_0x2c1e5d[_0x2e3537(0x254)]||_0x2c1e5d[_0x2e3537(0x268)]))&&(_0x2c1e5d={'enumerable':!![],'get':function(){return _0x47f392[_0x328be0];}}),_0x42c2b0[_0x2e3537(0x29c)](_0x30100f,_0x1cf161,_0x2c1e5d);}else return this[_0x2e3537(0x20e)](_0x356dcf[_0x2e3537(0x2a9)],_0x166073,this[_0x2e3537(0x1a8)](_0xf70969),_0x1ed1b8,_0x37c4c2,_0x356dcf['vfPEc']);}}async[a1_0x57d67a(0x238)](){const _0x57de74=a1_0x57d67a,_0x55d841={'lkPTW':function(_0x39ccee,_0x7034a1){return _0x39ccee===_0x7034a1;},'OcAaf':'iIwGk'};try{if(!this[_0x57de74(0x230)])throw new Error('Browser\x20is\x20not\x20open');return await this['page']['content']();}catch(_0x41ba92){return _0x55d841['lkPTW'](_0x55d841[_0x57de74(0x1f0)],_0x57de74(0x1ae))?_0x57de74(0x26f)+_0x4c8038:(console[_0x57de74(0x1b0)](_0x57de74(0x202)+_0x41ba92[_0x57de74(0x1b2)]),null);}}[a1_0x57d67a(0x1fb)]=null;[a1_0x57d67a(0x257)](){return this['savedVideoPath'];}async[a1_0x57d67a(0x1b1)](){const _0x5b5dd7=a1_0x57d67a,_0x1fbca8={'RxlHP':_0x5b5dd7(0x29a),'JKoVI':_0x5b5dd7(0x235),'thkDs':_0x5b5dd7(0x213),'Emyuw':'xMjhW','lxpSH':_0x5b5dd7(0x27b),'PNBbH':_0x5b5dd7(0x2ac)};try{if(!this[_0x5b5dd7(0x230)])throw new Error(_0x1fbca8[_0x5b5dd7(0x264)]);return this[_0x5b5dd7(0x230)][_0x5b5dd7(0x1dd)]();}catch(_0x448508){if(_0x1fbca8[_0x5b5dd7(0x29d)]===_0x1fbca8[_0x5b5dd7(0x201)]){if(!this[_0x5b5dd7(0x230)])throw new _0x5bf92e(BbEweN[_0x5b5dd7(0x264)]);const _0x56a1e9=this[_0x5b5dd7(0x230)][_0x5b5dd7(0x1dd)]();return this[_0x5b5dd7(0x20e)](BbEweN[_0x5b5dd7(0x24f)],_0x9be994,_0x5b5dd7(0x1e7)+_0x56a1e9,_0x1a40c6,_0x4e5ce5,BbEweN['thkDs']);}else return console[_0x5b5dd7(0x1b0)](_0x5b5dd7(0x28d)+_0x448508[_0x5b5dd7(0x1b2)]),_0x1fbca8['PNBbH'];}}}exports[a1_0x57d67a(0x263)]=a1_0x207893;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const a2_0xae3e26=a2_0x13ce;(function(_0x3b7976,_0x21a1ee){const _0x5546e7=a2_0x13ce,_0x5d6938=_0x3b7976();while(!![]){try{const _0x221e42=parseInt(_0x5546e7(0x207))/0x1*(parseInt(_0x5546e7(0x1c5))/0x2)+-parseInt(_0x5546e7(0x219))/0x3+-parseInt(_0x5546e7(0x1f2))/0x4+-parseInt(_0x5546e7(0x1c3))/0x5+-parseInt(_0x5546e7(0x201))/0x6*(parseInt(_0x5546e7(0x1cd))/0x7)+parseInt(_0x5546e7(0x1d8))/0x8+parseInt(_0x5546e7(0x1ed))/0x9;if(_0x221e42===_0x21a1ee)break;else _0x5d6938['push'](_0x5d6938['shift']());}catch(_0x5d7985){_0x5d6938['push'](_0x5d6938['shift']());}}}(a2_0x3cce,0xbba4b));Object[a2_0xae3e26(0x20e)](exports,a2_0xae3e26(0x202),{'value':!![]}),exports['CheckboxHandler']=void 0x0;const a2_0x2a278=require('../utils/locatorService'),a2_0x4f7a6a=require('./baseHandler'),a2_0x5ea464=require(a2_0xae3e26(0x1cc));class a2_0x49bc39 extends a2_0x4f7a6a['BaseHandler']{[a2_0xae3e26(0x20d)];constructor(_0x518289,_0x4107aa=a2_0x5ea464[a2_0xae3e26(0x209)]){const _0x1157ca=a2_0xae3e26;super(),this[_0x1157ca(0x20d)]=_0x518289,this[_0x1157ca(0x21f)]=_0x4107aa,this[_0x1157ca(0x1da)](_0x518289);}async[a2_0xae3e26(0x200)](_0x29aed1,_0x456005,_0x2041ef='Check\x20checkbox'){const _0x464415=a2_0xae3e26,_0x275f72={'kEWLt':_0x464415(0x1fd),'EFecI':function(_0x291b62,_0xa1a206){return _0x291b62!==_0xa1a206;},'KRsOH':_0x464415(0x210),'epsvD':_0x464415(0x1fc),'YqZpq':'Qboic'},_0x4cc637=Date[_0x464415(0x1c6)](),_0x17a3c2=this['getStartTime'](),_0x154825='\x27'+_0x29aed1+_0x464415(0x1e8);try{if(_0x275f72['EFecI'](_0x275f72[_0x464415(0x1e0)],_0x464415(0x210))){const _0x55e617=this[_0x464415(0x221)]('\x27'+_0x1dd2f0+_0x464415(0x1f4),_0x288aeb['matchedIndex'],_0x16c8b6[_0x464415(0x20c)]);return this[_0x464415(0x204)](_0x275f72[_0x464415(0x1e7)],_0x14c7a7,_0x55e617,_0x595d5a,_0x3e4e26,_0x46fabd);}else{const _0x3479c0=await a2_0x2a278['LocatorService'][_0x464415(0x1f3)](this[_0x464415(0x20d)],_0x456005);await _0x3479c0[_0x464415(0x206)]['check']();const _0x381105=this[_0x464415(0x221)](_0x154825,_0x3479c0[_0x464415(0x1c8)],_0x3479c0['matchedXPath']);return this[_0x464415(0x204)](_0x275f72[_0x464415(0x218)],_0x154825,_0x381105,_0x4cc637,_0x17a3c2,_0x2041ef);}}catch(_0x3ad5cc){return _0x464415(0x1cb)===_0x275f72[_0x464415(0x1ca)]?this[_0x464415(0x204)](_0x275f72[_0x464415(0x1e7)],_0x154825,this[_0x464415(0x1dc)](_0x3ad5cc),_0x4cc637,_0x17a3c2,_0x2041ef):this[_0x464415(0x204)](_0x275f72['kEWLt'],_0x13c8d8,this['classifyError'](_0x2331c9),_0x471f00,_0x2239fa,_0x4bb1e4);}}async[a2_0xae3e26(0x1f9)](_0x35f377,_0x3188c5,_0x31d330='Uncheck\x20checkbox'){const _0x108ca8=a2_0xae3e26,_0x448b2a={'biuNR':_0x108ca8(0x1fd)},_0x3b2ebe=Date['now'](),_0x19180b=this[_0x108ca8(0x211)](),_0x8179d9='\x27'+_0x35f377+_0x108ca8(0x1db);try{const _0x34bc5d=await a2_0x2a278[_0x108ca8(0x1ea)][_0x108ca8(0x1f3)](this[_0x108ca8(0x20d)],_0x3188c5);await _0x34bc5d[_0x108ca8(0x206)][_0x108ca8(0x1f9)]();const _0x516e61=this[_0x108ca8(0x221)](_0x8179d9,_0x34bc5d['matchedIndex'],_0x34bc5d[_0x108ca8(0x20c)]);return this[_0x108ca8(0x204)](_0x108ca8(0x1fc),_0x8179d9,_0x516e61,_0x3b2ebe,_0x19180b,_0x31d330);}catch(_0x30afb4){return this[_0x108ca8(0x204)](_0x448b2a[_0x108ca8(0x1ef)],_0x8179d9,this['classifyError'](_0x30afb4),_0x3b2ebe,_0x19180b,_0x31d330);}}async[a2_0xae3e26(0x1d2)](_0x33c6d7,_0x2a6c98,_0x3a691b='Toggle\x20checkbox'){const _0x3e3250=a2_0xae3e26,_0x58116d={'OWKMl':_0x3e3250(0x1fd),'kxlSb':'PASS','lrhBR':function(_0x56ad66,_0x34b577){return _0x56ad66!==_0x34b577;},'wuhHe':_0x3e3250(0x1c9)},_0x428990=Date['now'](),_0x2b750e=this['getStartTime'](),_0x28e9fb='\x27'+_0x33c6d7+_0x3e3250(0x208);try{const _0x2bebbf=await a2_0x2a278[_0x3e3250(0x1ea)][_0x3e3250(0x1f3)](this[_0x3e3250(0x20d)],_0x2a6c98),_0xaa2c31=await _0x2bebbf[_0x3e3250(0x206)]['isChecked']();_0xaa2c31?await _0x2bebbf[_0x3e3250(0x206)][_0x3e3250(0x1f9)]():await _0x2bebbf[_0x3e3250(0x206)][_0x3e3250(0x200)]();const _0x392069=this['appendMatchedLocatorInfo'](_0x28e9fb,_0x2bebbf[_0x3e3250(0x1c8)],_0x2bebbf[_0x3e3250(0x20c)]);return this[_0x3e3250(0x204)](_0x58116d[_0x3e3250(0x212)],_0x28e9fb,_0x392069,_0x428990,_0x2b750e,_0x3a691b);}catch(_0x3f4934){return _0x58116d[_0x3e3250(0x1c4)](_0x58116d[_0x3e3250(0x20b)],_0x58116d['wuhHe'])?this['buildResult'](_0x58116d[_0x3e3250(0x1f1)],_0x441042,this[_0x3e3250(0x1dc)](_0x3997f2),_0x5377d2,_0x4c7a57,_0x2236ca):this[_0x3e3250(0x204)](_0x58116d[_0x3e3250(0x1f1)],_0x28e9fb,this[_0x3e3250(0x1dc)](_0x3f4934),_0x428990,_0x2b750e,_0x3a691b);}}async[a2_0xae3e26(0x1e2)](_0x575e09,_0x59caa2,_0x32c3ba=a2_0xae3e26(0x1d9)){const _0x72fd7b=a2_0xae3e26,_0x26feec={'TZQlo':_0x72fd7b(0x1fd),'clNFO':function(_0x2c57b7,_0x3d768d){return _0x2c57b7===_0x3d768d;},'eZPwr':_0x72fd7b(0x20f),'bqZRX':_0x72fd7b(0x214),'cdhrw':_0x72fd7b(0x1fc),'dGIpI':function(_0x3f59ab,_0x1a43f5){return _0x3f59ab===_0x1a43f5;},'ulVkw':_0x72fd7b(0x1f7)},_0x298144=Date['now'](),_0x459fde=this[_0x72fd7b(0x211)](),_0x5f1202='\x27'+_0x575e09+_0x72fd7b(0x21a);try{if(_0x26feec[_0x72fd7b(0x1dd)](_0x26feec[_0x72fd7b(0x1e6)],_0x72fd7b(0x20f))){const _0x15d0c5=await a2_0x2a278[_0x72fd7b(0x1ea)][_0x72fd7b(0x1f3)](this[_0x72fd7b(0x20d)],_0x59caa2),_0x55af91=await _0x15d0c5[_0x72fd7b(0x206)][_0x72fd7b(0x1e2)](),_0x1375b9=this[_0x72fd7b(0x221)]('\x27'+_0x575e09+_0x72fd7b(0x215)+(_0x55af91?_0x26feec[_0x72fd7b(0x20a)]:'unchecked'),_0x15d0c5[_0x72fd7b(0x1c8)],_0x15d0c5[_0x72fd7b(0x20c)]);return this['buildResult'](_0x26feec[_0x72fd7b(0x1d0)],_0x5f1202,_0x1375b9,_0x298144,_0x459fde,_0x32c3ba);}else return this['buildResult'](hOFrkk[_0x72fd7b(0x222)],_0x53ac49,this[_0x72fd7b(0x1dc)](_0xeadcc4),_0x1d634c,_0x42c984,_0x3146f8);}catch(_0x2fbb66){return _0x26feec[_0x72fd7b(0x1e5)](_0x26feec['ulVkw'],_0x26feec['ulVkw'])?this[_0x72fd7b(0x204)](_0x72fd7b(0x1fd),_0x5f1202,this['classifyError'](_0x2fbb66),_0x298144,_0x459fde,_0x32c3ba):this['buildResult'](hOFrkk[_0x72fd7b(0x222)],_0x327fc7,this[_0x72fd7b(0x1dc)](_0x6ee9e0),_0xe8acdb,_0x146f8f,_0x41ac6c);}}async[a2_0xae3e26(0x1d3)](_0x1b96cf,_0x43ff95,_0x46f965='Verify\x20checkbox\x20is\x20checked'){const _0x393b8b=a2_0xae3e26,_0x294d44={'NbiwS':_0x393b8b(0x1fd),'LTTbi':function(_0x3ddbb6,_0x1a391e){return _0x3ddbb6===_0x1a391e;},'dyeEQ':_0x393b8b(0x1f6),'igxEK':_0x393b8b(0x21e),'TjozS':_0x393b8b(0x1fc)},_0x5f5076=Date[_0x393b8b(0x1c6)](),_0xb2cacc=this[_0x393b8b(0x211)](),_0x4adf36='\x27'+_0x1b96cf+_0x393b8b(0x1f4);try{if(_0x294d44[_0x393b8b(0x1f0)](_0x294d44[_0x393b8b(0x1d1)],_0x294d44[_0x393b8b(0x1d7)])){const _0x1e492c=this[_0x393b8b(0x221)]('\x27'+_0x7779a0+_0x393b8b(0x1e3),_0x3cad7e[_0x393b8b(0x1c8)],_0xaffd5a['matchedXPath']);return this['buildResult'](_0x294d44[_0x393b8b(0x21d)],_0x4f9c2a,_0x1e492c,_0x1ffc06,_0x1f968d,_0x3c909d);}else{const _0x39c8f2=await a2_0x2a278['LocatorService'][_0x393b8b(0x1f3)](this[_0x393b8b(0x20d)],_0x43ff95),_0x400fe5=await _0x39c8f2['element']['isChecked']();if(!_0x400fe5){const _0x4c3d3d=this[_0x393b8b(0x221)]('\x27'+_0x1b96cf+'\x27\x20is\x20not\x20checked',_0x39c8f2['matchedIndex'],_0x39c8f2[_0x393b8b(0x20c)]);return this[_0x393b8b(0x204)](_0x294d44[_0x393b8b(0x21d)],_0x4adf36,_0x4c3d3d,_0x5f5076,_0xb2cacc,_0x46f965);}const _0x16b9ff=this[_0x393b8b(0x221)](_0x4adf36,_0x39c8f2[_0x393b8b(0x1c8)],_0x39c8f2['matchedXPath']);return this[_0x393b8b(0x204)](_0x294d44[_0x393b8b(0x1e9)],_0x4adf36,_0x16b9ff,_0x5f5076,_0xb2cacc,_0x46f965);}}catch(_0x324a2b){return this['buildResult'](_0x294d44['NbiwS'],_0x4adf36,this[_0x393b8b(0x1dc)](_0x324a2b),_0x5f5076,_0xb2cacc,_0x46f965);}}async['verifyUnchecked'](_0x3a5fde,_0x76eb43,_0x4ea506='Verify\x20checkbox\x20is\x20unchecked'){const _0x5e8031=a2_0xae3e26,_0x31a10a={'MLKaD':_0x5e8031(0x1fd),'UFHsc':function(_0x1ea7c5,_0x2b5b18){return _0x1ea7c5!==_0x2b5b18;},'YtCAJ':_0x5e8031(0x1fc),'oNOSg':'MHZqG','bEZAz':_0x5e8031(0x1d5)},_0x51ae5f=Date[_0x5e8031(0x1c6)](),_0x2bad6a=this[_0x5e8031(0x211)](),_0x31104f='\x27'+_0x3a5fde+'\x27\x20is\x20unchecked';try{if(_0x31a10a[_0x5e8031(0x1eb)]('JdycG',_0x5e8031(0x21b))){const _0x18fcc4=await a2_0x2a278[_0x5e8031(0x1ea)][_0x5e8031(0x1f3)](this[_0x5e8031(0x20d)],_0x76eb43),_0x2d23ed=await _0x18fcc4[_0x5e8031(0x206)][_0x5e8031(0x1e2)]();if(_0x2d23ed){const _0x58954c=this[_0x5e8031(0x221)]('\x27'+_0x3a5fde+_0x5e8031(0x1f4),_0x18fcc4[_0x5e8031(0x1c8)],_0x18fcc4[_0x5e8031(0x20c)]);return this[_0x5e8031(0x204)](_0x31a10a['MLKaD'],_0x31104f,_0x58954c,_0x51ae5f,_0x2bad6a,_0x4ea506);}const _0x5e6c77=this[_0x5e8031(0x221)](_0x31104f,_0x18fcc4[_0x5e8031(0x1c8)],_0x18fcc4[_0x5e8031(0x20c)]);return this['buildResult'](_0x31a10a['YtCAJ'],_0x31104f,_0x5e6c77,_0x51ae5f,_0x2bad6a,_0x4ea506);}else return this['buildResult'](gQPGrv[_0x5e8031(0x1df)],_0x517e55,this[_0x5e8031(0x1dc)](_0x5969af),_0x2f1a10,_0x4919b2,_0x2a3eb6);}catch(_0x3659bc){return _0x31a10a['UFHsc'](_0x31a10a['oNOSg'],_0x31a10a[_0x5e8031(0x1fa)])?this[_0x5e8031(0x204)](_0x31a10a[_0x5e8031(0x1df)],_0x31104f,this[_0x5e8031(0x1dc)](_0x3659bc),_0x51ae5f,_0x2bad6a,_0x4ea506):this['buildResult'](_0x5e8031(0x1fd),_0x54b6ac,this[_0x5e8031(0x1dc)](_0x1d6de0),_0x250972,_0x1ab836,_0x45f0f5);}}async[a2_0xae3e26(0x1de)](_0x40f256,_0x406981,_0x48a513=a2_0xae3e26(0x1ce)){const _0x7eac53=a2_0xae3e26,_0xa25ece={'bbFgP':_0x7eac53(0x1fd),'cenZF':function(_0xb0defa,_0x5f0dd4){return _0xb0defa===_0x5f0dd4;},'MsAVS':'hCchZ','KETAs':_0x7eac53(0x1e1),'cFAby':_0x7eac53(0x21c),'yNvso':'disabled','tPZVq':_0x7eac53(0x1fc)},_0xcc67e9=Date[_0x7eac53(0x1c6)](),_0x1d85b7=this[_0x7eac53(0x211)](),_0x58f285='\x27'+_0x40f256+_0x7eac53(0x1d6);try{if(_0xa25ece[_0x7eac53(0x1d4)](_0xa25ece[_0x7eac53(0x216)],_0xa25ece[_0x7eac53(0x1f8)]))return this[_0x7eac53(0x204)](gMNxYi[_0x7eac53(0x203)],_0x2caca4,this[_0x7eac53(0x1dc)](_0x44f4ed),_0x64951a,_0x5535e6,_0x297142);else{const _0x4fac3b=await a2_0x2a278[_0x7eac53(0x1ea)][_0x7eac53(0x1f3)](this[_0x7eac53(0x20d)],_0x406981),_0x5f189b=await _0x4fac3b[_0x7eac53(0x206)]['isEnabled'](),_0x50d0d3=this[_0x7eac53(0x221)]('\x27'+_0x40f256+_0x7eac53(0x215)+(_0x5f189b?_0xa25ece['cFAby']:_0xa25ece[_0x7eac53(0x1e4)]),_0x4fac3b[_0x7eac53(0x1c8)],_0x4fac3b[_0x7eac53(0x20c)]);return this['buildResult'](_0xa25ece[_0x7eac53(0x1ec)],_0x58f285,_0x50d0d3,_0xcc67e9,_0x1d85b7,_0x48a513);}}catch(_0x1e408d){return this[_0x7eac53(0x204)](_0x7eac53(0x1fd),_0x58f285,this[_0x7eac53(0x1dc)](_0x1e408d),_0xcc67e9,_0x1d85b7,_0x48a513);}}async['isVisible'](_0x4bd62d,_0x2cc426,_0x374059=a2_0xae3e26(0x1ee)){const _0x45c7e1=a2_0xae3e26,_0x24f9f7={'fGnyM':_0x45c7e1(0x1fd),'EQNIt':_0x45c7e1(0x1c7),'RpdAw':_0x45c7e1(0x1f5),'jFZio':'not\x20visible','rmZfy':_0x45c7e1(0x1fc)},_0x214dc6=Date['now'](),_0x3fe92a=this['getStartTime'](),_0x26c4f6='\x27'+_0x4bd62d+_0x45c7e1(0x1fe);try{if(_0x24f9f7[_0x45c7e1(0x1cf)]!==_0x24f9f7[_0x45c7e1(0x1cf)])return this[_0x45c7e1(0x204)](iiSNkj[_0x45c7e1(0x220)],_0x124bcd,this[_0x45c7e1(0x1dc)](_0x19abcf),_0x2cbde3,_0x2cef2a,_0x462800);else{const _0x450c37=await a2_0x2a278[_0x45c7e1(0x1ea)][_0x45c7e1(0x1f3)](this[_0x45c7e1(0x20d)],_0x2cc426),_0x1c400b=await _0x450c37[_0x45c7e1(0x206)][_0x45c7e1(0x217)](),_0x2c5ab1=this['appendMatchedLocatorInfo']('\x27'+_0x4bd62d+_0x45c7e1(0x215)+(_0x1c400b?_0x24f9f7[_0x45c7e1(0x1fb)]:_0x24f9f7[_0x45c7e1(0x205)]),_0x450c37['matchedIndex'],_0x450c37[_0x45c7e1(0x20c)]);return this[_0x45c7e1(0x204)](_0x24f9f7[_0x45c7e1(0x1ff)],_0x26c4f6,_0x2c5ab1,_0x214dc6,_0x3fe92a,_0x374059);}}catch(_0x106874){return this[_0x45c7e1(0x204)](_0x24f9f7[_0x45c7e1(0x220)],_0x26c4f6,this[_0x45c7e1(0x1dc)](_0x106874),_0x214dc6,_0x3fe92a,_0x374059);}}}function a2_0x13ce(_0x4c477e,_0x919a7){_0x4c477e=_0x4c477e-0x1c3;const _0x3cce24=a2_0x3cce();let _0x13ce88=_0x3cce24[_0x4c477e];if(a2_0x13ce['VqIodv']===undefined){var _0x26bc2d=function(_0x443059){const _0x112098='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x2330c6='',_0x4e9fb4='';for(let _0x18244e=0x0,_0x5b1c3f,_0x317b23,_0x327fc7=0x0;_0x317b23=_0x443059['charAt'](_0x327fc7++);~_0x317b23&&(_0x5b1c3f=_0x18244e%0x4?_0x5b1c3f*0x40+_0x317b23:_0x317b23,_0x18244e++%0x4)?_0x2330c6+=String['fromCharCode'](0xff&_0x5b1c3f>>(-0x2*_0x18244e&0x6)):0x0){_0x317b23=_0x112098['indexOf'](_0x317b23);}for(let _0x6ee9e0=0x0,_0xe8acdb=_0x2330c6['length'];_0x6ee9e0<_0xe8acdb;_0x6ee9e0++){_0x4e9fb4+='%'+('00'+_0x2330c6['charCodeAt'](_0x6ee9e0)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4e9fb4);};a2_0x13ce['mqNola']=_0x26bc2d,a2_0x13ce['YagxgI']={},a2_0x13ce['VqIodv']=!![];}const _0x234c50=_0x3cce24[0x0],_0x15679e=_0x4c477e+_0x234c50,_0x215b20=a2_0x13ce['YagxgI'][_0x15679e];return!_0x215b20?(_0x13ce88=a2_0x13ce['mqNola'](_0x13ce88),a2_0x13ce['YagxgI'][_0x15679e]=_0x13ce88):_0x13ce88=_0x215b20,_0x13ce88;}function a2_0x3cce(){const _0x51c29c=['mte2odyWohnAEg1tsq','CMvZB2X2zuvSzw1LBNq','jYbPCYbJAgvJA2vK','DMLZAwjSzq','v3PpCvi','ChrQq0S','s0vuqxm','Dw5JAgvJAW','yKvAqxO','uNbKqxC','ueftuW','rKfjta','jYb2AxnPyMLSAxr5ihn0yxrLihjLDhjPzxzLzcbZDwnJzxnZzNvSBhK','CM1AzNK','y2HLy2S','nKvuBKT6AW','x19LC01VzhvSzq','yMjgz1a','yNvPBgrszxn1Bhq','AKzAAw8','zwXLBwvUDa','mLjPuvHMtq','jYb0B2DNBgvKihn1y2nLC3nMDwXSEq','revgqvvmvf9tq1jfru5tse9ux01preu','yNfAuLG','D3vOsgu','Bwf0y2HLzfHqyxrO','CgfNzq','zgvMAw5LuhjVCgvYDhK','A2X4v2O','rKrWDK8','z2v0u3rHCNruAw1L','A3HSu2i','q2HLy2TIB3Hiyw5KBgvY','y2HLy2TLza','jYbPCYa','txnbvLm','AxnwAxnPyMXL','zxbZDKq','mtq1ntG2ngDksvHxqW','jYbJAgvJA2vKihn0yxrLihjLDhjPzxzLzcbZDwnJzxnZzNvSBhK','qKjbCvC','zw5HyMXLza','tMjPD1m','qKXnDvC','C2nYzwvUC2HVDe1Vzgu','zKDUEu0','yxbWzw5Ktwf0y2HLzeXVy2f0B3jjBMzV','vfPrBg8','ntGYodCWmgrwAxLKwG','BhjOqLi','mJyZnJe2y1nHrxDv','BM93','suHqB1u','Bwf0y2HLzeLUzgv4','EhPTCK4','wxfAChe','uwjVAwm','lI4Vy29UzMLN','mJm4odK3nhrIAvDbsq','q2HLy2SGAwyGy2HLy2TIB3GGAxmGzw5HyMXLza','rvfosxq','y2rOCNC','zhLLrve','Dg9Nz2XL','DMvYAwz5q2HLy2TLza','y2vUwKy','quDozuy','jYbLBMfIBgvKihn0yxrLihjLDhjPzxzLzcbZDwnJzxnZzNvSBhK','AwD4ruS','mJq5mJeWne5HyxbuDa','q2HLy2SGAwyGy2HLy2TIB3GGAxmGy2HLy2TLza','C2v0Dxbozxr3B3jRq2fWDhvYzq','jYb1BMnOzwnRzwqGC3vJy2vZC2z1BgX5','y2XHC3nPzNLfCNjVCG','y2XorK8','AxnfBMfIBgvK','tuXlyuq','s1jZt0G','vK5KtvG','AxndAgvJA2vK','jYbPCYbUB3qGy2HLy2TLza','Eu52C28','zeDjCeK','zvPqD3i','A0vxthq','jYbJAgvJA2vKihn1y2nLC3nMDwXSEq','vgPVELm','tg9JyxrVCLnLCNzPy2u','vuziC2m','DfbAvNe','mJiZmdeYodbcufftDuu','q2HLy2SGAwyGy2HLy2TIB3GGAxmGDMLZAwjSzq','yML1tLi','tfruyMK','t1DltwW'];a2_0x3cce=function(){return _0x51c29c;};return a2_0x3cce();}exports[a2_0xae3e26(0x213)]=a2_0x49bc39;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';const a3_0x57301d=a3_0x38fd;function a3_0x5986(){const _0x10b670=['CgfNzq','rKfjta','rM9Yy2uGy2XPy2SGzwXLBwvUDa','sg92zxjLzcbVDMvYicC','rg91yMXLignSAwnRigvSzw1LBNq','jYbKB3vIBguTy2XPy2TLzcbZDwnJzxnZzNvSBhK','zwXLBwvUDa','ueftuW','C3rHDhvZ','lI4VDxrPBhmVBg9JyxrVCLnLCNzPy2u','lI9IyxnLsgfUzgXLCG','yNvPBgrszxn1Bhq','jYbZDwnJzxnZzNvSBhK','iIbUB3qGzM91BMq','yLbRAeK','D3ntwxq','DxjS','BM90igf0DgfJAgvK','y2XHC3nPzNLfCNjVCG','y2XPy2S','v2Plte0','jYbJBgLJA2vKigfUzcbUyxzPz2f0Aw9UignVBxbSzxrLzcbZDwnJzxnZzNvSBhK','jYbMB3jJzs1JBgLJA2vKihn1y2nLC3nMDwXSEq','yxbWzw5Ktwf0y2HLzeXVy2f0B3jjBMzV','Aw5JBhvKzxm','z2v0u3rHCNruAw1L','yM9KEq','nte1ngfSqKfZzG','wM5nwMS','mJC4mdqXnM5qvxPcsa','DgLTzw91Da','rwXLBwvUDcaI','D2fPDezVCK5HDMLNyxrPB24','CMvZB2X2zuvSzw1LBNq','z2v0tgfZDefWAvjLC3bVBNnL','q2XPy2SGzwXLBwvUDa','tM53CxC','zgvMAw5LuhjVCgvYDhK','q2XPy2Tiyw5KBgvY','Bg9Hza','sg92zxiGzwXLBwvUDa','jYbJBgLJA2vKihn1y2nLC3nMDwXSEq','mtHZse5Nv2C','D2fPDgLUzYbMB3iGBg9JyxrVCG','AxndBgLJA2fIBgu','Cw5HCwO','DM1HAeC','B2jQzwn0','revgqvvmvf9tq1jfru5tse9ux01preu','mtu4nJq5mMfQswPlra','C2nYzwvUC2HVDe1Vzgu','s2jQDM8','Bwf0y2HLzeLUzgv4','y2fWDhvYzvnJCMvLBNnOB3q','y3zet2i','mND5wuHqCG','nte1t1jytKH1','t3zTte8','tg9JyxrVCLnLCNzPy2u','Bwf0y2HLzfHqyxrO','BM93','BM90ihzPC2LIBgu','zxvAvuu','sfnxCKi','ywXS','iIbUB3qGzM91BMqGB24GCgfNzs4ktMv0D29YAYbYzxnWB25ZzsbBsfruuca','ndyXnJi1seTxsKnV','jYbYAwDODc1JBgLJA2vKihn1y2nLC3nMDwXSEq','Dg9mB3DLCKnHC2u','mJm1ndmZmvL0y2PSyq','zg91yMXLq2XPy2S','mZmZotGWv1LNAxr6','mJe4mJe4n3LKzefhAG','BM90igzVDw5K','lcbfBMfIBgvKoIa','jYbPCYbJBgLJA2fIBgu','zgjSy2XPy2S','C3rYAw5NAwz5','y1n1tMW','C2v0Dxbozxr3B3jRq2fWDhvYzq','BwvZC2fNzq','jYbPCYbUB3qGy2XPy2THyMXLlIbwAxnPyMXLoIa','AxnfBMfIBgvK','BM8GzwXLBwvUDa'];a3_0x5986=function(){return _0x10b670;};return a3_0x5986();}(function(_0xfec2ca,_0x4855fe){const _0x46da47=a3_0x38fd,_0x509880=_0xfec2ca();while(!![]){try{const _0x5472fd=parseInt(_0x46da47(0x237))/0x1+parseInt(_0x46da47(0x22c))/0x2*(-parseInt(_0x46da47(0x23a))/0x3)+parseInt(_0x46da47(0x226))/0x4+-parseInt(_0x46da47(0x22d))/0x5*(parseInt(_0x46da47(0x210))/0x6)+-parseInt(_0x46da47(0x23d))/0x7+parseInt(_0x46da47(0x212))/0x8*(parseInt(_0x46da47(0x21f))/0x9)+parseInt(_0x46da47(0x23c))/0xa;if(_0x5472fd===_0x4855fe)break;else _0x509880['push'](_0x509880['shift']());}catch(_0x4d2e86){_0x509880['push'](_0x509880['shift']());}}}(a3_0x5986,0x6215b));Object[a3_0x57301d(0x21a)](exports,'__esModule',{'value':!![]}),exports['ClickHandler']=void 0x0;const a3_0x4b3ec5=require('../config'),a3_0x42ca49=require(a3_0x57301d(0x1fe)),a3_0x41bf14=require(a3_0x57301d(0x1ff));function a3_0x38fd(_0x167db0,_0x13bd09){_0x167db0=_0x167db0-0x1ef;const _0x598623=a3_0x5986();let _0x38fdf2=_0x598623[_0x167db0];if(a3_0x38fd['rGreax']===undefined){var _0x3ee063=function(_0x554540){const _0x296769='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x17bbe5='',_0x18cc48='';for(let _0x53272c=0x0,_0xaa98e0,_0x5a53b1,_0x373479=0x0;_0x5a53b1=_0x554540['charAt'](_0x373479++);~_0x5a53b1&&(_0xaa98e0=_0x53272c%0x4?_0xaa98e0*0x40+_0x5a53b1:_0x5a53b1,_0x53272c++%0x4)?_0x17bbe5+=String['fromCharCode'](0xff&_0xaa98e0>>(-0x2*_0x53272c&0x6)):0x0){_0x5a53b1=_0x296769['indexOf'](_0x5a53b1);}for(let _0x218a28=0x0,_0x23d364=_0x17bbe5['length'];_0x218a28<_0x23d364;_0x218a28++){_0x18cc48+='%'+('00'+_0x17bbe5['charCodeAt'](_0x218a28)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x18cc48);};a3_0x38fd['HuuSXj']=_0x3ee063,a3_0x38fd['GmurIW']={},a3_0x38fd['rGreax']=!![];}const _0x3a9330=_0x598623[0x0],_0x3517a9=_0x167db0+_0x3a9330,_0x1a5562=a3_0x38fd['GmurIW'][_0x3517a9];return!_0x1a5562?(_0x38fdf2=a3_0x38fd['HuuSXj'](_0x38fdf2),a3_0x38fd['GmurIW'][_0x3517a9]=_0x38fdf2):_0x38fdf2=_0x1a5562,_0x38fdf2;}class a3_0x583864 extends a3_0x41bf14['BaseHandler']{[a3_0x57301d(0x1f5)];constructor(_0x2806e9,_0x3224db=a3_0x4b3ec5[a3_0x57301d(0x225)]){const _0x2be01d=a3_0x57301d;super(),this[_0x2be01d(0x1f5)]=_0x2806e9,this[_0x2be01d(0x227)]=_0x3224db,this[_0x2be01d(0x1f0)](_0x2806e9);}async[a3_0x57301d(0x208)](_0x2ccd29,_0x1dd77e,_0x412035=a3_0x57301d(0x218)){const _0x590028=a3_0x57301d,_0x5d2499={'bPkhI':_0x590028(0x1fc),'Nnwqw':function(_0x15c082,_0x45c9d6){return _0x15c082(_0x45c9d6);},'ucNsY':_0x590028(0x220),'cSuNl':_0x590028(0x213),'Kbjvo':_0x590028(0x1f4),'XIUYC':_0x590028(0x224),'SVojE':function(_0x1dad50,_0x32cdad){return _0x1dad50(_0x32cdad);},'wsSYt':_0x590028(0x1f6)},_0x13bf8c=Date[_0x590028(0x231)](),_0x29cb10=this[_0x590028(0x20e)](),_0x2da019='\x27'+_0x2ccd29+_0x590028(0x21e);try{const _0x1fdea1=await a3_0x42ca49[_0x590028(0x22f)][_0x590028(0x216)](this['page'],_0x1dd77e);await _0x1fdea1[_0x590028(0x1fb)][_0x590028(0x208)]();const _0x4c7900=this[_0x590028(0x20c)](_0x2da019,_0x1fdea1[_0x590028(0x229)],_0x1fdea1['matchedXPath']);return this[_0x590028(0x200)](_0x5d2499[_0x590028(0x203)],_0x2da019,_0x4c7900,_0x13bf8c,_0x29cb10,_0x412035);}catch(_0x1845ac){const _0x5c0aba=await this[_0x590028(0x22a)](!![]),_0xbbc4b8=(_0x1845ac?.[_0x590028(0x1f1)]||_0x5d2499[_0x590028(0x219)](String,_0x1845ac))[_0x590028(0x239)]();if(_0xbbc4b8[_0x590028(0x20d)](_0x5d2499['ucNsY'])||_0xbbc4b8[_0x590028(0x20d)](_0x5d2499[_0x590028(0x1ef)])||_0xbbc4b8[_0x590028(0x20d)](_0x5d2499[_0x590028(0x228)])||_0xbbc4b8['includes'](_0x590028(0x23e))||_0xbbc4b8[_0x590028(0x20d)](_0x590028(0x232))||_0xbbc4b8[_0x590028(0x20d)](_0x590028(0x206))){const _0x3c4602=this[_0x590028(0x217)]();if(_0x3c4602){const _0x540d76=typeof _0x3c4602[_0x590028(0x20f)]===_0x5d2499['XIUYC']?JSON[_0x590028(0x242)](_0x3c4602[_0x590028(0x20f)],null,0x2):_0x5d2499['SVojE'](String,_0x3c4602[_0x590028(0x20f)]),_0x12dea8=_0x590028(0x214)+_0x2ccd29+_0x590028(0x236)+_0x3c4602[_0x590028(0x1fd)]+']\x20from\x20'+_0x3c4602[_0x590028(0x205)]+':\x0a'+_0x540d76;return this[_0x590028(0x200)](_0x590028(0x1f6),_0x2da019,_0x12dea8,_0x13bf8c,_0x29cb10,_0x412035,_0x5c0aba);}return this[_0x590028(0x200)](_0x5d2499[_0x590028(0x204)],_0x2da019,'\x22'+_0x2ccd29+_0x590028(0x202),_0x13bf8c,_0x29cb10,_0x412035,_0x5c0aba);}return this['buildResult'](_0x5d2499['wsSYt'],_0x2da019,this[_0x590028(0x207)](_0x1845ac),_0x13bf8c,_0x29cb10,_0x412035,_0x5c0aba);}}async[a3_0x57301d(0x23b)](_0x26d2b2,_0x11f78f,_0x638a73=a3_0x57301d(0x1f9)){const _0x24a28c=a3_0x57301d,_0xff9043={'cvDOb':_0x24a28c(0x1fc),'HSWrB':_0x24a28c(0x1f6)},_0x1db74b=Date[_0x24a28c(0x231)](),_0x8c3853=this[_0x24a28c(0x20e)](),_0x389cc8='\x27'+_0x26d2b2+_0x24a28c(0x1fa);try{const _0x41c376=await a3_0x42ca49[_0x24a28c(0x22f)][_0x24a28c(0x216)](this[_0x24a28c(0x1f5)],_0x11f78f);await _0x41c376['element'][_0x24a28c(0x241)]();const _0x22731b=this['appendMatchedLocatorInfo'](_0x389cc8,_0x41c376[_0x24a28c(0x229)],_0x41c376[_0x24a28c(0x230)]);return this[_0x24a28c(0x200)](_0xff9043[_0x24a28c(0x22b)],_0x389cc8,_0x22731b,_0x1db74b,_0x8c3853,_0x638a73);}catch(_0x43a810){const _0x22e5f7=await this['captureScreenshot'](!![]);return this[_0x24a28c(0x200)](_0xff9043[_0x24a28c(0x234)],_0x389cc8,this[_0x24a28c(0x207)](_0x43a810),_0x1db74b,_0x8c3853,_0x638a73,_0x22e5f7);}}async['rightClick'](_0x3a58f7,_0x4e7aea,_0xdfe1f0='Right\x20click\x20element'){const _0x5851b7=a3_0x57301d,_0x9d592d={'vlnwS':'right','kSdgG':'PASS','euZUE':'FAIL'},_0x3da79a=Date[_0x5851b7(0x231)](),_0x53ee10=this[_0x5851b7(0x20e)](),_0x2b5765='\x27'+_0x3a58f7+_0x5851b7(0x238);try{const _0x44947f=await a3_0x42ca49['LocatorService'][_0x5851b7(0x216)](this[_0x5851b7(0x1f5)],_0x4e7aea);await _0x44947f['element'][_0x5851b7(0x208)]({'button':_0x9d592d['vlnwS']});const _0x135c4d=this[_0x5851b7(0x20c)](_0x2b5765,_0x44947f[_0x5851b7(0x229)],_0x44947f[_0x5851b7(0x230)]);return this[_0x5851b7(0x200)](_0x9d592d['kSdgG'],_0x2b5765,_0x135c4d,_0x3da79a,_0x53ee10,_0xdfe1f0);}catch(_0xc54311){const _0x4ea922=await this[_0x5851b7(0x22a)](!![]);return this['buildResult'](_0x9d592d[_0x5851b7(0x233)],_0x2b5765,this[_0x5851b7(0x207)](_0xc54311),_0x3da79a,_0x53ee10,_0xdfe1f0,_0x4ea922);}}async['clickAndWaitForNavigation'](_0x40fe26,_0x54ff9c,_0x52c0e7='Click\x20and\x20wait\x20for\x20navigation'){const _0x2f71a3=a3_0x57301d,_0x1522ea={'WjKLM':_0x2f71a3(0x21c),'ZnMZk':_0x2f71a3(0x1fc)},_0x1284f9=Date[_0x2f71a3(0x231)](),_0xd4dde3=this[_0x2f71a3(0x20e)](),_0x21eb5e='\x27'+_0x40fe26+_0x2f71a3(0x20a);try{const _0x92157a=await a3_0x42ca49[_0x2f71a3(0x22f)][_0x2f71a3(0x216)](this[_0x2f71a3(0x1f5)],_0x54ff9c);await Promise[_0x2f71a3(0x235)]([this['page'][_0x2f71a3(0x215)]({'waitUntil':_0x1522ea[_0x2f71a3(0x209)],'timeout':0x7530}),_0x92157a[_0x2f71a3(0x1fb)][_0x2f71a3(0x208)]()]);const _0x278414=this[_0x2f71a3(0x20c)](_0x21eb5e,_0x92157a[_0x2f71a3(0x229)],_0x92157a[_0x2f71a3(0x230)]);return this['buildResult'](_0x1522ea[_0x2f71a3(0x211)],_0x21eb5e,_0x278414,_0x1284f9,_0xd4dde3,_0x52c0e7);}catch(_0x1d5fbd){const _0x24a8c2=await this['captureScreenshot'](!![]);return this[_0x2f71a3(0x200)](_0x2f71a3(0x1f6),_0x21eb5e,this[_0x2f71a3(0x207)](_0x1d5fbd),_0x1284f9,_0xd4dde3,_0x52c0e7,_0x24a8c2);}}async['hover'](_0x5a2dc0,_0x463f0e,_0x311342=a3_0x57301d(0x21d)){const _0x56a9a2=a3_0x57301d,_0x159b92={'OvmLO':'PASS'},_0x35a5e0=Date['now'](),_0xfd1bd7=this[_0x56a9a2(0x20e)](),_0x28e8ac=_0x56a9a2(0x1f8)+_0x5a2dc0+_0x56a9a2(0x201);try{const _0x3f77f7=await a3_0x42ca49['LocatorService'][_0x56a9a2(0x216)](this['page'],_0x463f0e);await _0x3f77f7[_0x56a9a2(0x1fb)]['hover']();const _0x55093d=this['appendMatchedLocatorInfo'](_0x28e8ac,_0x3f77f7['matchedIndex'],_0x3f77f7['matchedXPath']);return this[_0x56a9a2(0x200)](_0x159b92[_0x56a9a2(0x22e)],_0x28e8ac,_0x55093d,_0x35a5e0,_0xfd1bd7,_0x311342);}catch(_0x5d85ce){return this[_0x56a9a2(0x200)](_0x56a9a2(0x1f6),_0x28e8ac,this[_0x56a9a2(0x207)](_0x5d85ce),_0x35a5e0,_0xfd1bd7,_0x311342);}}async[a3_0x57301d(0x221)](_0x19d7c4,_0x4f277b,_0x2bb97c='Check\x20element\x20is\x20clickable'){const _0x251b66=a3_0x57301d,_0x1290d0={'oWtBH':function(_0x56cd25,_0x5c57cf){return _0x56cd25||_0x5c57cf;},'vmahG':_0x251b66(0x1f6),'qnaqj':_0x251b66(0x1fc)},_0x46a7ff=Date['now'](),_0x27053f=this['getStartTime'](),_0x26e1c0='\x27'+_0x19d7c4+_0x251b66(0x240);try{const _0x1a0c98=await a3_0x42ca49[_0x251b66(0x22f)][_0x251b66(0x216)](this['page'],_0x4f277b),_0x194c44=await _0x1a0c98[_0x251b66(0x1fb)]['isVisible'](),_0x165f64=await _0x1a0c98[_0x251b66(0x1fb)][_0x251b66(0x1f3)]();if(_0x1290d0['oWtBH'](!_0x194c44,!_0x165f64)){const _0x5e2273=await this[_0x251b66(0x22a)](!![]),_0x389d33=this[_0x251b66(0x20c)]('\x27'+_0x19d7c4+_0x251b66(0x1f2)+_0x194c44+_0x251b66(0x23f)+_0x165f64,_0x1a0c98[_0x251b66(0x229)],_0x1a0c98['matchedXPath']);return this[_0x251b66(0x200)](_0x1290d0[_0x251b66(0x223)],_0x26e1c0,_0x389d33,_0x46a7ff,_0x27053f,_0x2bb97c,_0x5e2273);}const _0x49ba7b=this['appendMatchedLocatorInfo'](_0x26e1c0,_0x1a0c98['matchedIndex'],_0x1a0c98['matchedXPath']);return this[_0x251b66(0x200)](_0x1290d0[_0x251b66(0x222)],_0x26e1c0,_0x49ba7b,_0x46a7ff,_0x27053f,_0x2bb97c);}catch(_0x554e88){const _0x40abe5=await this['captureScreenshot'](!![]);return this[_0x251b66(0x200)](_0x251b66(0x1f6),_0x26e1c0,this[_0x251b66(0x207)](_0x554e88),_0x46a7ff,_0x27053f,_0x2bb97c,_0x40abe5);}}async['forceClick'](_0x19f9e7,_0x230ccb,_0x5950fc=a3_0x57301d(0x1f7)){const _0x3d26e1=a3_0x57301d,_0x2a040c={'tLMfa':_0x3d26e1(0x1fc)},_0x3555a2=Date[_0x3d26e1(0x231)](),_0x213331=this[_0x3d26e1(0x20e)](),_0x290ed7='\x27'+_0x19f9e7+_0x3d26e1(0x20b);try{const _0x3cf906=await a3_0x42ca49['LocatorService'][_0x3d26e1(0x216)](this[_0x3d26e1(0x1f5)],_0x230ccb);await _0x3cf906['element']['click']({'force':!![]});const _0x1a79e0=this['appendMatchedLocatorInfo'](_0x290ed7,_0x3cf906[_0x3d26e1(0x229)],_0x3cf906[_0x3d26e1(0x230)]);return this[_0x3d26e1(0x200)](_0x2a040c['tLMfa'],_0x290ed7,_0x1a79e0,_0x3555a2,_0x213331,_0x5950fc);}catch(_0x218dea){const _0x2e592e=await this['captureScreenshot'](!![]);return this[_0x3d26e1(0x200)]('FAIL',_0x290ed7,this[_0x3d26e1(0x207)](_0x218dea),_0x3555a2,_0x213331,_0x5950fc,_0x2e592e);}}}exports[a3_0x57301d(0x21b)]=a3_0x583864;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';function a4_0x2c56(){const _0x18932f=['C2XPy2u','AxHAAMO','uevlzNK','uwTnD1O','mtmYCfH2t2nX','uNvUign1C3rVBsbJB2rL','ndC0suTUBM5o','nZi5mdGWrhv2yKzg','z2v0u3rHCNruAw1L','CgfNzq','tevSu1m','xsdIGjqG','CNvUq3vZDg9Tq29KztOGy29Kzvn0CIaOzMLYC3qGyxjNDw1LBNqPigLZihjLCxvPCMvK','DMLZAwjSzq','q3vZDg9TignVzguGCMfUie9licG','n2zmr0nOtW','Dw5KzwzPBMvK','DhjPBq','mtHPCu5myuS','y2XLyxi','yNvPBgrszxn1Bhq','nJm4nZyZm0fqq1nlsG','D1DSr0O','q3vZDg9TignVzguGzxHLy3v0zwqUia','CNvUq3vZDg9Tq29Kzq','x19JDhHFxW','zMLSBa','mtaXnJGZndb6rxnuvMO','ice9psaNDw5KzwzPBMvKjWOGicaGicaGicaGpYa','rxHJzxb0Aw9Uigr1CMLUzYbJDxn0B20Gy29KzsbLEgvJDxrPB24G4Ocuia','BM93','D2fPDezVCG','BwvZC2fNzq','uMjSCu0','x19LC01VzhvSzq','ueftuW','sg1Iu3K','mteYnta5ntjkvwL2EuO','C2v0','DgvZDerHDge','ihWGy29KztOG','mte3nZC4mvPnrNbZtW','q3vZDg9TignVzguGzxHLy3v0zwqGC3vJy2vZC2z1BgX5','EhbHDgG9','mta2mZfdA0nqqMm','mJe5ndvvt1vsDvi','q3vZDg9Tq29KzuHHBMrSzxi','CMv0DxjUicHHC3LUyYaOx19JDhHFxYKGpt4GEYa','ih0Pkf9Fy3r4x18P','cIaGicaGicaGica6ihvUzgvMAw5LzdSkicaGicaG','EKnHtxC','lI9IyxnLsgfUzgXLCG','qMfZzuHHBMrSzxi','y0rjCgW','B1f1sM4','mJHJvNjpsLC','rKfjta'];a4_0x2c56=function(){return _0x18932f;};return a4_0x2c56();}const a4_0x3ca49a=a4_0x316d;function a4_0x316d(_0x38a47d,_0x2a34de){_0x38a47d=_0x38a47d-0x14c;const _0x2c5615=a4_0x2c56();let _0x316dec=_0x2c5615[_0x38a47d];if(a4_0x316d['TMAnds']===undefined){var _0xf3cbd8=function(_0x343e83){const _0x12aa9b='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x89ab9='',_0x4b59ec='';for(let _0x30cd7e=0x0,_0x4fac45,_0x1a2867,_0x16b535=0x0;_0x1a2867=_0x343e83['charAt'](_0x16b535++);~_0x1a2867&&(_0x4fac45=_0x30cd7e%0x4?_0x4fac45*0x40+_0x1a2867:_0x1a2867,_0x30cd7e++%0x4)?_0x89ab9+=String['fromCharCode'](0xff&_0x4fac45>>(-0x2*_0x30cd7e&0x6)):0x0){_0x1a2867=_0x12aa9b['indexOf'](_0x1a2867);}for(let _0x1679cf=0x0,_0x6de182=_0x89ab9['length'];_0x1679cf<_0x6de182;_0x1679cf++){_0x4b59ec+='%'+('00'+_0x89ab9['charCodeAt'](_0x1679cf)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4b59ec);};a4_0x316d['kqSyLj']=_0xf3cbd8,a4_0x316d['EPauvb']={},a4_0x316d['TMAnds']=!![];}const _0x27527a=_0x2c5615[0x0],_0x5a2680=_0x38a47d+_0x27527a,_0x5eb1e2=a4_0x316d['EPauvb'][_0x5a2680];return!_0x5eb1e2?(_0x316dec=a4_0x316d['kqSyLj'](_0x316dec),a4_0x316d['EPauvb'][_0x5a2680]=_0x316dec):_0x316dec=_0x5eb1e2,_0x316dec;}(function(_0x31e237,_0x5819da){const _0x15e65d=a4_0x316d,_0x276b65=_0x31e237();while(!![]){try{const _0x125d24=parseInt(_0x15e65d(0x156))/0x1*(parseInt(_0x15e65d(0x161))/0x2)+parseInt(_0x15e65d(0x175))/0x3*(parseInt(_0x15e65d(0x16a))/0x4)+parseInt(_0x15e65d(0x157))/0x5*(-parseInt(_0x15e65d(0x169))/0x6)+parseInt(_0x15e65d(0x172))/0x7*(parseInt(_0x15e65d(0x14f))/0x8)+parseInt(_0x15e65d(0x178))/0x9+-parseInt(_0x15e65d(0x17e))/0xa+parseInt(_0x15e65d(0x153))/0xb*(-parseInt(_0x15e65d(0x167))/0xc);if(_0x125d24===_0x5819da)break;else _0x276b65['push'](_0x276b65['shift']());}catch(_0x37708a){_0x276b65['push'](_0x276b65['shift']());}}}(a4_0x2c56,0xc783e));Object['defineProperty'](exports,a4_0x3ca49a(0x14c),{'value':!![]}),exports[a4_0x3ca49a(0x158)]=void 0x0;const a4_0x960265=require(a4_0x3ca49a(0x15d));class a4_0x2a174a extends a4_0x960265[a4_0x3ca49a(0x15e)]{[a4_0x3ca49a(0x16c)];[a4_0x3ca49a(0x151)];constructor(_0x2c8ffa,_0x574c9f){const _0x59e3ea=a4_0x3ca49a;super(),this[_0x59e3ea(0x16c)]=_0x2c8ffa,this[_0x59e3ea(0x151)]=_0x574c9f;}async[a4_0x3ca49a(0x17b)](_0x2d6994,_0x24e218,_0x4c3185,_0x40a8a2=a4_0x3ca49a(0x168)){const _0x3f5e8b=a4_0x3ca49a,_0x3fbaa3={'cDIpl':_0x3f5e8b(0x154),'ixZjj':_0x3f5e8b(0x162),'HmbSy':function(_0x327aea,_0xe3dd4d){return _0x327aea||_0xe3dd4d;},'PEKfy':_0x3f5e8b(0x173),'wWlGJ':_0x3f5e8b(0x17c),'QkMwZ':function(_0x1bce99,_0x1115de){return _0x1bce99(_0x1115de);},'zCaMw':function(_0x2042d6,_0x3f6c64){return _0x2042d6!==_0x3f6c64;},'oQuJn':function(_0x57cf47,_0x8d14){return _0x57cf47!==_0x8d14;},'WGibX':function(_0xd97ebc,_0xffc1f9){return _0xd97ebc(_0xffc1f9);},'LElSS':_0x3f5e8b(0x170),'RblqM':_0x3f5e8b(0x14d)},_0x48fcc5=Date[_0x3f5e8b(0x181)](),_0x361739=this[_0x3f5e8b(0x16b)](),_0x95a315=_0x3fbaa3[_0x3f5e8b(0x15f)];if(!_0x2d6994||!_0x2d6994[_0x3f5e8b(0x174)]())return this[_0x3f5e8b(0x177)](_0x3fbaa3[_0x3f5e8b(0x164)],_0x95a315,_0x3f5e8b(0x16f),_0x48fcc5,_0x361739,_0x40a8a2);try{const _0x2e7507={'page':this[_0x3f5e8b(0x16c)],'tSetup':this[_0x3f5e8b(0x16c)],'testData':this[_0x3f5e8b(0x151)]},_0x128467='\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x22use\x20strict\x22;\x0a\x20\x20\x20\x20\x20\x20\x20\x20const\x20{\x20page,\x20tSetup,\x20testData\x20}\x20=\x20__ctx__;\x0a\x20\x20\x20\x20\x20\x20\x20\x20'+_0x2d6994+'\x0a\x20\x20\x20\x20\x20\x20\x20\x20return\x20typeof\x20'+(_0x24e218||'__undefined__')+_0x3f5e8b(0x17f)+_0x3fbaa3[_0x3f5e8b(0x14e)](_0x24e218,_0x3fbaa3[_0x3f5e8b(0x165)])+_0x3f5e8b(0x15b),_0x11ec01=new Function(_0x3fbaa3[_0x3f5e8b(0x179)],_0x3f5e8b(0x159)+_0x128467+_0x3f5e8b(0x15a)),_0x178154=await _0x3fbaa3[_0x3f5e8b(0x166)](_0x11ec01,_0x2e7507);if(_0x24e218&&_0x3fbaa3[_0x3f5e8b(0x15c)](_0x178154,undefined)&&_0x3fbaa3[_0x3f5e8b(0x160)](_0x178154,null)){const _0x19064f=_0x3fbaa3['WGibX'](String,_0x178154);this[_0x3f5e8b(0x151)][_0x3f5e8b(0x150)](_0x24e218,_0x19064f);if(_0x4c3185&&_0x4c3185[_0x3f5e8b(0x174)]())try{const _0x4c10b9=this['page']['locator'](_0x3f5e8b(0x155)+_0x4c3185);await _0x4c10b9[_0x3f5e8b(0x182)]({'state':_0x3fbaa3[_0x3f5e8b(0x16d)],'timeout':0x2710}),await _0x4c10b9[_0x3f5e8b(0x176)](),await _0x4c10b9[_0x3f5e8b(0x17d)](_0x19064f);}catch(_0x3c2835){return this['buildResult']('FAIL',_0x95a315,_0x3f5e8b(0x171)+_0x24e218+'=\x22'+_0x19064f+'\x22)\x20but\x20failed\x20to\x20type\x20into\x20[xpath='+_0x4c3185+_0x3f5e8b(0x16e)+_0x3c2835[_0x3f5e8b(0x183)],_0x48fcc5,_0x361739,_0x40a8a2);}return this['buildResult'](_0x3fbaa3[_0x3f5e8b(0x184)],_0x95a315,_0x3f5e8b(0x17a)+_0x24e218+'\x20=\x20'+_0x19064f,_0x48fcc5,_0x361739,_0x40a8a2);}return this[_0x3f5e8b(0x177)]('PASS',_0x95a315,_0x95a315,_0x48fcc5,_0x361739,_0x40a8a2);}catch(_0x1e5c27){const _0x286269=String(_0x2d6994)[_0x3f5e8b(0x163)](0x0,0xc8);return this[_0x3f5e8b(0x177)](_0x3fbaa3[_0x3f5e8b(0x164)],_0x95a315,_0x3f5e8b(0x180)+_0x1e5c27['message']+_0x3f5e8b(0x152)+_0x286269,_0x48fcc5,_0x361739,_0x40a8a2);}}}exports[a4_0x3ca49a(0x158)]=a4_0x2a174a;
|