@mablhq/mabl-cli 1.17.0 → 1.17.6
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/browserLauncher/playwrightBrowserLauncher/playwrightBrowserLauncher.js +11 -9
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerBrowser.js +2 -1
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerBrowserLauncher.js +1 -1
- package/browserLauncher/puppeteerBrowserLauncher/puppeteerPage.js +3 -0
- 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 +5 -5
- package/mablscript/actions/FindAction.js +40 -39
- package/mablscript/steps/AccessibilityCheck.js +5 -5
- package/mablscript/steps/AssertStep.js +12 -12
- package/mablscript/steps/AssertStepOld.js +8 -8
- package/mablscript/steps/ClickAndHoldStep.js +5 -5
- package/mablscript/steps/ClickStep.js +5 -5
- package/mablscript/steps/CreateVariableStep.js +2 -2
- package/mablscript/steps/DoubleClickStep.js +6 -6
- package/mablscript/steps/EnterTextStep.js +7 -7
- package/mablscript/steps/HoverStep.js +5 -5
- package/mablscript/steps/IfConditionStep.js +6 -6
- package/mablscript/steps/ReleaseStep.js +5 -5
- package/mablscript/steps/SelectStep.js +5 -5
- package/mablscript/steps/SendKeyStep.js +6 -6
- package/mablscript/steps/SetFilesStep.js +5 -5
- package/mablscript/steps/SwitchContextStep.js +3 -3
- package/mablscript/steps/WaitUntilStep.js +3 -3
- package/mablscriptFind/index.js +1 -1
- package/mablscriptFind/index.js.LICENSE.txt +5 -5
- package/package.json +1 -1
- package/resources/mablFind.js +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Complex.js v2.0.12
|
|
2
|
+
* @license Complex.js v2.0.15 12/05/2020
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c)
|
|
4
|
+
* Copyright (c) 2020, Robert Eisele (robert@xarg.org)
|
|
5
5
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
6
6
|
**/
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* @license Fraction.js v4.
|
|
10
|
-
*
|
|
9
|
+
* @license Fraction.js v4.1.3 23/05/2021
|
|
10
|
+
* https://www.xarg.org/2014/03/rational-numbers-in-javascript/
|
|
11
11
|
*
|
|
12
|
-
* Copyright (c)
|
|
12
|
+
* Copyright (c) 2021, Robert Eisele (robert@xarg.org)
|
|
13
13
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
14
14
|
**/
|