@mablhq/mabl-cli 1.17.0 → 1.19.3
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/api/basicApiClient.js +7 -1
- package/api/featureSet.js +1 -4
- package/api/mablApiClient.js +3 -3
- package/browserLauncher/browserLauncherFactory.js +2 -3
- package/browserLauncher/playwrightBrowserLauncher/playwrightBrowser.js +3 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightBrowserLauncher.js +11 -9
- package/browserLauncher/playwrightBrowserLauncher/playwrightDom.js +1 -11
- package/browserLauncher/playwrightBrowserLauncher/playwrightFrame.js +18 -0
- package/browserLauncher/runnerType.js +0 -1
- package/commands/constants.js +3 -2
- package/commands/tests/testsUtil.js +11 -6
- package/commands/tests/tests_cmds/run.js +5 -0
- package/domUtil/index.js +1 -1
- package/domUtil/index.js.LICENSE.txt +5 -5
- package/execution/index.js +1 -1
- package/execution/index.js.LICENSE.txt +7 -5
- package/index.d.ts +0 -1
- package/mablscript/MablAction.js +1 -1
- package/mablscript/MablStep.js +21 -3
- package/mablscript/actions/AwaitPDFDownloadAction.js +2 -1
- package/mablscript/actions/ConditionAction.js +11 -3
- package/mablscript/actions/ExtractAction.js +16 -7
- package/mablscript/actions/FindAction.js +101 -69
- package/mablscript/actions/GenerateRandomStringAction.js +2 -1
- package/mablscript/actions/GetUrlAction.js +1 -1
- package/mablscript/actions/GetVariableValue.js +2 -2
- package/mablscript/diffing/diffingUtil.js +146 -0
- package/mablscript/importer.js +20 -2
- package/mablscript/steps/AccessibilityCheck.js +5 -5
- package/mablscript/steps/AssertStep.js +45 -31
- package/mablscript/steps/AssertStepOld.js +39 -21
- package/mablscript/steps/AwaitTabStep.js +7 -6
- package/mablscript/steps/ClickAndHoldStep.js +6 -6
- package/mablscript/steps/ClickStep.js +5 -5
- package/mablscript/steps/CreateVariableStep.js +2 -2
- package/mablscript/steps/DoubleClickStep.js +6 -6
- package/mablscript/steps/DownloadStep.js +3 -2
- package/mablscript/steps/EchoStep.js +3 -1
- package/mablscript/steps/ElseIfConditionStep.js +5 -2
- package/mablscript/steps/EnterTextStep.js +11 -8
- package/mablscript/steps/EvaluateFlowStep.js +40 -0
- package/mablscript/steps/HoverStep.js +5 -5
- package/mablscript/steps/IfConditionStep.js +6 -6
- package/mablscript/steps/ReleaseStep.js +7 -6
- package/mablscript/steps/RemoveCookieStep.js +2 -3
- package/mablscript/steps/SelectStep.js +5 -5
- package/mablscript/steps/SendHttpRequestStep.js +3 -3
- package/mablscript/steps/SendKeyStep.js +8 -8
- package/mablscript/steps/SetCookieStep.js +2 -4
- package/mablscript/steps/SetFilesStep.js +5 -5
- package/mablscript/steps/SetViewportStep.js +1 -1
- package/mablscript/steps/SwitchContextStep.js +3 -3
- package/mablscript/steps/VisitUrlStep.js +2 -1
- package/mablscript/steps/WaitStep.js +1 -4
- package/mablscript/steps/WaitUntilStep.js +3 -3
- package/{browserLauncher/puppeteerBrowserLauncher/internals.js → mablscript/types/EvaluateFlowStepDescriptor.js} +0 -0
- package/mablscript/types/GetCurrentLocationDescriptor.js +4 -3
- package/mablscriptFind/index.js +1 -1
- package/mablscriptFind/index.js.LICENSE.txt +5 -5
- package/package.json +3 -3
- package/resources/mablFind.js +1 -1
- package/resources/pdf-viewer/index.js +1 -1
- package/resources/pdf-viewer/libEmbeddedPdfHandler.js +11 -2
- package/util/actionabilityUtil.js +1 -24
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerBrowser.js +0 -134
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerBrowserLauncher.js +0 -45
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerElementHandle.js +0 -139
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerFrame.js +0 -115
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerHttpRequest.js +0 -38
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerHttpResponse.js +0 -27
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerJsHandle.js +0 -36
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerPage.js +0 -332
- package/browserLauncher/puppeteerBrowserLauncher/wrappers.js +0 -25
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* @license Complex.js v2.0.12
|
|
11
|
+
* @license Complex.js v2.0.15 12/05/2020
|
|
12
12
|
*
|
|
13
|
-
* Copyright (c)
|
|
13
|
+
* Copyright (c) 2020, Robert Eisele (robert@xarg.org)
|
|
14
14
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
15
15
|
**/
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* @license Fraction.js v4.
|
|
19
|
-
*
|
|
18
|
+
* @license Fraction.js v4.1.3 23/05/2021
|
|
19
|
+
* https://www.xarg.org/2014/03/rational-numbers-in-javascript/
|
|
20
20
|
*
|
|
21
|
-
* Copyright (c)
|
|
21
|
+
* Copyright (c) 2021, Robert Eisele (robert@xarg.org)
|
|
22
22
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
23
23
|
**/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mablhq/mabl-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The official mabl command line interface tool",
|
|
6
6
|
"main": "index.js",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"env-paths": "2.2.0",
|
|
48
48
|
"esprima": "4.0.1",
|
|
49
49
|
"estraverse": "4.3.0",
|
|
50
|
+
"fast-json-stable-stringify": "2.1.0",
|
|
50
51
|
"fastest-levenshtein": "1.0.12",
|
|
51
52
|
"fs-extra": "8.1.0",
|
|
52
53
|
"git-repo-info": "2.1.1",
|
|
@@ -54,7 +55,7 @@
|
|
|
54
55
|
"https-proxy-agent": "5.0.0",
|
|
55
56
|
"humanize-duration": "3.23.0",
|
|
56
57
|
"inquirer": "7.1.0",
|
|
57
|
-
"js-yaml": "
|
|
58
|
+
"js-yaml": "4.1.0",
|
|
58
59
|
"jsesc": "3.0.2",
|
|
59
60
|
"jwt-decode": "2.2.0",
|
|
60
61
|
"lodash.get": "4.4.2",
|
|
@@ -71,7 +72,6 @@
|
|
|
71
72
|
"pngjs": "6.0.0",
|
|
72
73
|
"portfinder": "1.0.26",
|
|
73
74
|
"postman-collection": "3.6.11",
|
|
74
|
-
"puppeteer-core": "7.1.0",
|
|
75
75
|
"query-string": "6.13.1",
|
|
76
76
|
"range_check": "2.0.4",
|
|
77
77
|
"retry": "0.13.1",
|