@mablhq/mabl-cli 2.49.1 → 2.50.0
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/core/execution/ApiTestUtils.js +1 -0
- package/execution/index.js +2 -2
- package/index.d.ts +21 -0
- package/package.json +1 -2
- package/proxy/index.js +1 -1
- package/mablscript/mobile/tests/steps/CreateVariableMobileStep.mobiletest.js +0 -298
- package/mablscript/mobile/tests/steps/EnterTextStep.mobiletest.js +0 -79
- package/mablscript/mobile/tests/steps/GeneralHumanization.mobiletest.js +0 -304
- package/mablscript/mobile/tests/steps/HideKeyboardStep.mobiletest.js +0 -27
- package/mablscript/mobile/tests/steps/InstallAppStep.mobiletest.js +0 -20
- package/mablscript/mobile/tests/steps/NavigateBackStep.mobiletest.js +0 -27
- package/mablscript/mobile/tests/steps/NavigateHomeStep.mobiletest.js +0 -27
- package/mablscript/mobile/tests/steps/OpenLinkStep.mobiletest.js +0 -20
- package/mablscript/mobile/tests/steps/PushFileStep.mobiletest.js +0 -55
- package/mablscript/mobile/tests/steps/ScrollStep.mobiletest.js +0 -386
- package/mablscript/mobile/tests/steps/SetOrientationStep.mobiletest.js +0 -32
- package/mablscript/mobile/tests/steps/TapStep.mobiletest.js +0 -57
- package/mablscript/mobile/tests/steps/UninstallAppStep.mobiletest.js +0 -20
package/index.d.ts
CHANGED
|
@@ -219,10 +219,31 @@ export declare function createMablFixtures(options?: MablToolsetOptions): {
|
|
|
219
219
|
mabl: ({context}: any, use: (arg0: MablToolset) => any) => Promise<void>;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
|
+
/**
|
|
223
|
+
* Options for finding an email
|
|
224
|
+
*/
|
|
222
225
|
export interface EmailFindOptions {
|
|
226
|
+
/**
|
|
227
|
+
* The subject of the email to find
|
|
228
|
+
*/
|
|
223
229
|
subject?: string;
|
|
230
|
+
/**
|
|
231
|
+
* The from address of the email to find
|
|
232
|
+
*/
|
|
224
233
|
from?: string;
|
|
234
|
+
/**
|
|
235
|
+
* The body of the email to find
|
|
236
|
+
*/
|
|
225
237
|
body?: string;
|
|
238
|
+
/**
|
|
239
|
+
* The amount of time to look back for an email in milliseconds.
|
|
240
|
+
* E.g. if lookbackTimeMs is 10_000, it will ignore any emails that were received before 10 seconds ago.
|
|
241
|
+
*/
|
|
242
|
+
lookbackTimeMs?: number;
|
|
243
|
+
/**
|
|
244
|
+
* The amount of time to wait for an email to be found in milliseconds.
|
|
245
|
+
* E.g. if timeoutMillis is 10_000, it will wait for 10 seconds for an email to be found.
|
|
246
|
+
*/
|
|
226
247
|
timeoutMillis?: number;
|
|
227
248
|
}
|
|
228
249
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mablhq/mabl-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.50.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The official mabl command line interface tool",
|
|
6
6
|
"main": "index.js",
|
|
@@ -58,7 +58,6 @@
|
|
|
58
58
|
"git-repo-info": "2.1.1",
|
|
59
59
|
"glob": "7.1.6",
|
|
60
60
|
"hpagent": "1.2.0",
|
|
61
|
-
"http-mitm-proxy": "1.1.0",
|
|
62
61
|
"humanize-duration": "3.23.0",
|
|
63
62
|
"inquirer": "8.2.5",
|
|
64
63
|
"js-yaml": "4.1.0",
|