@mablhq/playwright-tools 2.49.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/Globals.js +69 -0
- package/LICENSE.txt +29 -0
- package/README.md +219 -0
- package/api/ApiError.js +11 -0
- package/api/atlassian/bitBucketApiClient.js +81 -0
- package/api/atlassian/entities/CodeAnnotation.js +9 -0
- package/api/atlassian/entities/CodeReport.js +15 -0
- package/api/atlassian/entities/PullRequest.js +2 -0
- package/api/basicApiClient.js +293 -0
- package/api/entities/Browser.js +11 -0
- package/api/entities/Email.js +14 -0
- package/api/entities/FindStrategy.js +10 -0
- package/api/entities/Label.js +2 -0
- package/api/entities/VersionedObject.js +2 -0
- package/api/entities/Workspace.js +2 -0
- package/api/featureSet.js +44 -0
- package/api/mablApiClient.js +1070 -0
- package/api/mablApiClientFactory.js +79 -0
- package/api/types.js +10 -0
- package/auth/AuthClient.js +38 -0
- package/auth/OktaClient.js +97 -0
- package/browserEngines/browserEngine.js +41 -0
- package/browserEngines/browserEngines.js +14 -0
- package/browserEngines/chromiumBrowserEngine.js +177 -0
- package/browserEngines/firefoxBrowserEngine.js +134 -0
- package/browserEngines/unsupportedBrowserEngine.js +29 -0
- package/browserEngines/webkitBrowerEngine.js +50 -0
- package/browserLauncher/browser.js +2 -0
- package/browserLauncher/browserEvent.js +11 -0
- package/browserLauncher/browserLauncher.js +17 -0
- package/browserLauncher/browserLauncherEventEmitter.js +2 -0
- package/browserLauncher/browserLauncherFactory.js +30 -0
- package/browserLauncher/elementHandle.js +30 -0
- package/browserLauncher/errors.js +26 -0
- package/browserLauncher/frame.js +17 -0
- package/browserLauncher/frameBase.js +10 -0
- package/browserLauncher/httpRequest.js +2 -0
- package/browserLauncher/httpResponse.js +2 -0
- package/browserLauncher/jsHandle.js +2 -0
- package/browserLauncher/page.js +2 -0
- package/browserLauncher/pageEvent.js +17 -0
- package/browserLauncher/playwrightBrowserLauncher/browserDelegate.js +2 -0
- package/browserLauncher/playwrightBrowserLauncher/chromium/chromiumBrowserDelegate.js +61 -0
- package/browserLauncher/playwrightBrowserLauncher/chromium/chromiumElementHandleDelegate.js +129 -0
- package/browserLauncher/playwrightBrowserLauncher/chromium/chromiumFrameDelegate.js +24 -0
- package/browserLauncher/playwrightBrowserLauncher/chromium/chromiumPageDelegate.js +145 -0
- package/browserLauncher/playwrightBrowserLauncher/elementHandleDelegate.js +2 -0
- package/browserLauncher/playwrightBrowserLauncher/firefox/firefoxBrowserDelegate.js +50 -0
- package/browserLauncher/playwrightBrowserLauncher/firefox/firefoxElementHandleDelegate.js +11 -0
- package/browserLauncher/playwrightBrowserLauncher/firefox/firefoxFrameDelegate.js +36 -0
- package/browserLauncher/playwrightBrowserLauncher/firefox/firefoxPageDelegate.js +15 -0
- package/browserLauncher/playwrightBrowserLauncher/frameDelegate.js +2 -0
- package/browserLauncher/playwrightBrowserLauncher/internals.js +2 -0
- package/browserLauncher/playwrightBrowserLauncher/nonChromium/nonChromiumAbstractBrowserDelegate.js +15 -0
- package/browserLauncher/playwrightBrowserLauncher/nonChromium/nonChromiumAbstractElementHandleDelegate.js +73 -0
- package/browserLauncher/playwrightBrowserLauncher/nonChromium/nonChromiumAbstractFrameDelegate.js +13 -0
- package/browserLauncher/playwrightBrowserLauncher/nonChromium/nonChromiumAbstractPageDelegate.js +81 -0
- package/browserLauncher/playwrightBrowserLauncher/pageDelegate.js +2 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightApiResponse.js +18 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightBrowser.js +259 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightBrowserLauncher.js +97 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightDom.js +319 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightFrame.js +265 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightHttpRequest.js +76 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightHttpResponse.js +26 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightPage.js +377 -0
- package/browserLauncher/playwrightBrowserLauncher/simplePlaywrightLogger.js +36 -0
- package/browserLauncher/playwrightBrowserLauncher/webkit/webkitBrowserDelegate.js +50 -0
- package/browserLauncher/playwrightBrowserLauncher/webkit/webkitElementHandleDelegate.js +16 -0
- package/browserLauncher/playwrightBrowserLauncher/webkit/webkitFrameDelegate.js +19 -0
- package/browserLauncher/playwrightBrowserLauncher/webkit/webkitPageDelegate.js +15 -0
- package/browserLauncher/playwrightBrowserLauncher/wrappers.js +25 -0
- package/browserLauncher/types.js +28 -0
- package/browserLauncher/utils.js +9 -0
- package/cli.js +66 -0
- package/commands/applications/applications.js +5 -0
- package/commands/applications/applications_cmds/describe.js +21 -0
- package/commands/applications/applications_cmds/list.js +56 -0
- package/commands/auth/auth.js +5 -0
- package/commands/auth/auth_cmds/activate-key.js +38 -0
- package/commands/auth/auth_cmds/clear.js +10 -0
- package/commands/auth/auth_cmds/info.js +10 -0
- package/commands/auth/auth_cmds/login.js +10 -0
- package/commands/branches/branches.js +5 -0
- package/commands/branches/branches_cmds/create.js +56 -0
- package/commands/branches/branches_cmds/describe.js +50 -0
- package/commands/branches/branches_cmds/list.js +84 -0
- package/commands/branches/branches_cmds/merge.js +56 -0
- package/commands/browserTypes.js +20 -0
- package/commands/commandUtil/awaitCompletion.js +67 -0
- package/commands/commandUtil/branches.js +44 -0
- package/commands/commandUtil/codeInsights.js +181 -0
- package/commands/commandUtil/describe.js +32 -0
- package/commands/commandUtil/fileUtil.js +50 -0
- package/commands/commandUtil/interfaces.js +4 -0
- package/commands/commandUtil/list.js +70 -0
- package/commands/commandUtil/util.js +127 -0
- package/commands/commandUtil/versionUtil.js +33 -0
- package/commands/config/config.js +5 -0
- package/commands/config/config_cmds/configKeys.js +28 -0
- package/commands/config/config_cmds/delete.js +29 -0
- package/commands/config/config_cmds/get.js +52 -0
- package/commands/config/config_cmds/install.js +119 -0
- package/commands/config/config_cmds/list.js +39 -0
- package/commands/config/config_cmds/set.js +80 -0
- package/commands/constants.js +160 -0
- package/commands/credentials/credentials.js +5 -0
- package/commands/credentials/credentials_cmds/list.js +66 -0
- package/commands/datatables/datatables.js +5 -0
- package/commands/datatables/datatables_cmds/create.js +61 -0
- package/commands/datatables/datatables_cmds/describe.js +17 -0
- package/commands/datatables/datatables_cmds/export.js +86 -0
- package/commands/datatables/datatables_cmds/list.js +18 -0
- package/commands/datatables/datatables_cmds/scenarios.js +35 -0
- package/commands/datatables/datatables_cmds/update.js +120 -0
- package/commands/datatables/utils.js +145 -0
- package/commands/deploy/deploy.js +5 -0
- package/commands/deploy/deploy_cmds/awaitDeploymentCompletion.js +100 -0
- package/commands/deploy/deploy_cmds/create.js +342 -0
- package/commands/deploy/deploy_cmds/describe.js +54 -0
- package/commands/deploy/deploy_cmds/executionResultPresenter.js +117 -0
- package/commands/deploy/deploy_cmds/list.js +74 -0
- package/commands/deploy/deploy_cmds/watch.js +44 -0
- package/commands/environments/environments.js +5 -0
- package/commands/environments/environments_cmds/build-files.js +5 -0
- package/commands/environments/environments_cmds/build-files_cmds/add.js +73 -0
- package/commands/environments/environments_cmds/build-files_cmds/list.js +54 -0
- package/commands/environments/environments_cmds/build-files_cmds/update.js +71 -0
- package/commands/environments/environments_cmds/create.js +153 -0
- package/commands/environments/environments_cmds/delete.js +32 -0
- package/commands/environments/environments_cmds/describe.js +28 -0
- package/commands/environments/environments_cmds/list.js +56 -0
- package/commands/environments/environments_cmds/update.js +46 -0
- package/commands/environments/environments_cmds/urls.js +5 -0
- package/commands/environments/environments_cmds/urls_cmds/add.js +91 -0
- package/commands/environments/environments_cmds/urls_cmds/list.js +49 -0
- package/commands/flows/flows.js +5 -0
- package/commands/flows/flows_cmds/export.js +78 -0
- package/commands/flows/flows_cmds/list.js +64 -0
- package/commands/internal/internal.js +6 -0
- package/commands/link-agents/link-agents.js +5 -0
- package/commands/link-agents/link-agents_cmds/delete.js +38 -0
- package/commands/link-agents/link-agents_cmds/list.js +131 -0
- package/commands/link-agents/link-agents_cmds/terminate.js +31 -0
- package/commands/mobile-build-files/mobile-build-files.js +5 -0
- package/commands/mobile-build-files/mobile-build-files_cmds/delete.js +31 -0
- package/commands/mobile-build-files/mobile-build-files_cmds/download.js +50 -0
- package/commands/mobile-build-files/mobile-build-files_cmds/list.js +72 -0
- package/commands/mobile-build-files/mobile-build-files_cmds/upload.js +101 -0
- package/commands/plans/plans.js +5 -0
- package/commands/plans/plans_cmds/describe.js +23 -0
- package/commands/plans/plans_cmds/list.js +63 -0
- package/commands/test-runs/test-runs.js +5 -0
- package/commands/test-runs/test-runs_cmds/export.js +62 -0
- package/commands/tests/mobileEmulationUtil.js +46 -0
- package/commands/tests/tests.js +5 -0
- package/commands/tests/testsUtil.js +538 -0
- package/commands/tests/tests_cmds/create.js +130 -0
- package/commands/tests/tests_cmds/edit.js +111 -0
- package/commands/tests/tests_cmds/export.js +145 -0
- package/commands/tests/tests_cmds/import.js +5 -0
- package/commands/tests/tests_cmds/import_cmds/import_playwright.js +439 -0
- package/commands/tests/tests_cmds/import_cmds/import_selenium.js +295 -0
- package/commands/tests/tests_cmds/list.js +94 -0
- package/commands/tests/tests_cmds/run-cloud.js +314 -0
- package/commands/tests/tests_cmds/run-mobile.js +260 -0
- package/commands/tests/tests_cmds/run.js +314 -0
- package/commands/tests/tests_cmds/runUtils.js +60 -0
- package/commands/tests/tests_cmds/trainerUtil.js +12 -0
- package/commands/users/users.js +5 -0
- package/commands/users/users_cmds/list.js +58 -0
- package/commands/workspaces/workspace_cmds/copy.js +108 -0
- package/commands/workspaces/workspace_cmds/describe.js +21 -0
- package/commands/workspaces/workspace_cmds/list.js +67 -0
- package/commands/workspaces/workspaces.js +5 -0
- package/core/entityValidation/environmentsValidation.js +7 -0
- package/core/entityValidation/stepValidation.js +15 -0
- package/core/execution/ApiTestUtils.js +1060 -0
- package/core/execution/MailboxConstants.js +4 -0
- package/core/execution/PostmanUtils.js +53 -0
- package/core/execution/RunConfig.js +2 -0
- package/core/execution/TestResult.js +15 -0
- package/core/execution/VariableUtils.js +154 -0
- package/core/execution/VariablesSummary.js +2 -0
- package/core/execution/basic-types.js +2 -0
- package/core/execution/newman-types.js +42 -0
- package/core/messaging/actions/MobileTrainingActions.js +17 -0
- package/core/messaging/actions/pdfActions.js +27 -0
- package/core/messaging/actions/runnerActions.js +18 -0
- package/core/messaging/actions/trainingSessionActions.js +38 -0
- package/core/messaging/logLineMessaging.js +50 -0
- package/core/messaging/messaging.js +130 -0
- package/core/messaging/pageMessaging.js +9 -0
- package/core/trainer/openUtils.js +47 -0
- package/core/trainer/trainingSessions-types.js +35 -0
- package/core/trainer/trainingSessions.js +151 -0
- package/core/util.js +52 -0
- package/coreWebVitals/index.js +77 -0
- package/domUtil/index.js +1 -0
- package/env/defaultEnv.js +17 -0
- package/env/dev.js +17 -0
- package/env/env.js +76 -0
- package/env/local.js +17 -0
- package/env/prod.js +17 -0
- package/execution/index.js +8 -0
- package/execution/index.js.LICENSE.txt +254 -0
- package/execution/runAppiumServer.js +145 -0
- package/functions/apiTest/utils.js +47 -0
- package/functions/types.js +2 -0
- package/functions/utils.js +12 -0
- package/http/MablHttpAgent.js +73 -0
- package/http/RequestFilteringHttpAgent.js +119 -0
- package/http/RequestSecurityError.js +13 -0
- package/http/axiosProxyConfig.js +101 -0
- package/http/httpUtil.js +73 -0
- package/http/requestInterceptor.js +206 -0
- package/index.d.ts +241 -0
- package/index.js +14 -0
- package/mablApi/index.js +1 -0
- package/mablscript/MablAction.js +102 -0
- package/mablscript/MablStep.js +191 -0
- package/mablscript/MablStepV2.js +73 -0
- package/mablscript/MablSymbol.js +35 -0
- package/mablscript/actions/AwaitDownloadAction.js +14 -0
- package/mablscript/actions/AwaitPDFDownloadAction.js +19 -0
- package/mablscript/actions/ConditionAction.js +123 -0
- package/mablscript/actions/CountAction.js +16 -0
- package/mablscript/actions/ExtractAction.js +71 -0
- package/mablscript/actions/FindAction.js +301 -0
- package/mablscript/actions/GenerateEmailAddressAction.js +14 -0
- package/mablscript/actions/GenerateRandomStringAction.js +20 -0
- package/mablscript/actions/GetUrlAction.js +22 -0
- package/mablscript/actions/GetVariableValue.js +31 -0
- package/mablscript/actions/GetViewportAction.js +17 -0
- package/mablscript/actions/JavaScriptAction.js +219 -0
- package/mablscript/diffing/diffingUtil.js +229 -0
- package/mablscript/importer.js +576 -0
- package/mablscript/mobile/steps/CreateVariableMobileStep.js +53 -0
- package/mablscript/mobile/steps/EnterTextStep.js +45 -0
- package/mablscript/mobile/steps/HideKeyboardStep.js +20 -0
- package/mablscript/mobile/steps/InstallAppStep.js +22 -0
- package/mablscript/mobile/steps/NavigateBackStep.js +20 -0
- package/mablscript/mobile/steps/NavigateHomeStep.js +21 -0
- package/mablscript/mobile/steps/OpenAppStep.js +22 -0
- package/mablscript/mobile/steps/OpenLinkStep.js +19 -0
- package/mablscript/mobile/steps/PrepareSessionStep.js +19 -0
- package/mablscript/mobile/steps/PushFileStep.js +27 -0
- package/mablscript/mobile/steps/ScrollStep.js +87 -0
- package/mablscript/mobile/steps/SetOrientationStep.js +20 -0
- package/mablscript/mobile/steps/TapStep.js +37 -0
- package/mablscript/mobile/steps/UninstallAppStep.js +22 -0
- package/mablscript/mobile/steps/actions/MobileFindAction.js +23 -0
- package/mablscript/mobile/steps/stepUtil.js +113 -0
- package/mablscript/mobile/tests/StepTestsUtil.js +20 -0
- package/mablscript/mobile/tests/TestMobileFindDescriptors.js +282 -0
- package/mablscript/mobile/tests/steps/CreateVariableMobileStep.mobiletest.js +298 -0
- package/mablscript/mobile/tests/steps/EnterTextStep.mobiletest.js +79 -0
- package/mablscript/mobile/tests/steps/GeneralHumanization.mobiletest.js +304 -0
- package/mablscript/mobile/tests/steps/HideKeyboardStep.mobiletest.js +27 -0
- package/mablscript/mobile/tests/steps/InstallAppStep.mobiletest.js +20 -0
- package/mablscript/mobile/tests/steps/NavigateBackStep.mobiletest.js +27 -0
- package/mablscript/mobile/tests/steps/NavigateHomeStep.mobiletest.js +27 -0
- package/mablscript/mobile/tests/steps/OpenLinkStep.mobiletest.js +20 -0
- package/mablscript/mobile/tests/steps/PushFileStep.mobiletest.js +55 -0
- package/mablscript/mobile/tests/steps/ScrollStep.mobiletest.js +386 -0
- package/mablscript/mobile/tests/steps/SetOrientationStep.mobiletest.js +32 -0
- package/mablscript/mobile/tests/steps/TapStep.mobiletest.js +57 -0
- package/mablscript/mobile/tests/steps/UninstallAppStep.mobiletest.js +20 -0
- package/mablscript/steps/AbstractAssertionsAndVariablesStep.js +52 -0
- package/mablscript/steps/AccessibilityCheck.js +108 -0
- package/mablscript/steps/ActionsUtils.js +18 -0
- package/mablscript/steps/AssertStep.js +318 -0
- package/mablscript/steps/AssertStepOld.js +159 -0
- package/mablscript/steps/AwaitTabStep.js +69 -0
- package/mablscript/steps/AwaitUploadsStep.js +26 -0
- package/mablscript/steps/ClearCookiesStep.js +26 -0
- package/mablscript/steps/ClickAndHoldStep.js +76 -0
- package/mablscript/steps/ClickStep.js +58 -0
- package/mablscript/steps/CookieUtils.js +54 -0
- package/mablscript/steps/CreateVariableStep.js +236 -0
- package/mablscript/steps/DatabaseQueryStep.js +28 -0
- package/mablscript/steps/DoubleClickStep.js +64 -0
- package/mablscript/steps/DownloadStep.js +96 -0
- package/mablscript/steps/EchoStep.js +34 -0
- package/mablscript/steps/ElseIfConditionStep.js +32 -0
- package/mablscript/steps/ElseStep.js +27 -0
- package/mablscript/steps/EndStep.js +27 -0
- package/mablscript/steps/EnterAuthCodeStep.js +59 -0
- package/mablscript/steps/EnterTextStep.js +96 -0
- package/mablscript/steps/EvaluateFlowStep.js +51 -0
- package/mablscript/steps/EvaluateJavaScriptStep.js +50 -0
- package/mablscript/steps/HoverStep.js +63 -0
- package/mablscript/steps/IfConditionStep.js +191 -0
- package/mablscript/steps/NavigateStep.js +30 -0
- package/mablscript/steps/OpenEmailStep.js +46 -0
- package/mablscript/steps/ReleaseStep.js +76 -0
- package/mablscript/steps/RemoveCookieStep.js +36 -0
- package/mablscript/steps/RightClickStep.js +58 -0
- package/mablscript/steps/SelectStep.js +82 -0
- package/mablscript/steps/SendHttpRequestStep.js +48 -0
- package/mablscript/steps/SendKeyStep.js +84 -0
- package/mablscript/steps/SetCookieStep.js +70 -0
- package/mablscript/steps/SetFilesStep.js +71 -0
- package/mablscript/steps/SetViewportStep.js +38 -0
- package/mablscript/steps/SwitchContextStep.js +122 -0
- package/mablscript/steps/SyntheticStep.js +20 -0
- package/mablscript/steps/VisitUrlStep.js +68 -0
- package/mablscript/steps/WaitStep.js +37 -0
- package/mablscript/steps/WaitUntilStep.js +46 -0
- package/mablscript/types/AccessibilityCheckStepDescriptor.js +2 -0
- package/mablscript/types/AccessibilityCheckTypes.js +9 -0
- package/mablscript/types/AssertionsAndVariablesStepDescriptor.js +2 -0
- package/mablscript/types/AwaitTabDescriptor.js +2 -0
- package/mablscript/types/AwaitUploadStepDescriptor.js +2 -0
- package/mablscript/types/ClearCookiesStepDescriptor.js +2 -0
- package/mablscript/types/ClickAndHoldStepDescriptor.js +2 -0
- package/mablscript/types/ClickStepDescriptor.js +2 -0
- package/mablscript/types/ConditionDescriptor.js +133 -0
- package/mablscript/types/CountDescriptor.js +2 -0
- package/mablscript/types/CreateVariableStepDescriptor.js +12 -0
- package/mablscript/types/DownloadStepDescriptor.js +2 -0
- package/mablscript/types/EchoStepDescriptor.js +2 -0
- package/mablscript/types/EnterTextStepDescriptor.js +2 -0
- package/mablscript/types/EvaluateFlowStepDescriptor.js +2 -0
- package/mablscript/types/EvaluateJavaScriptStepDescriptor.js +2 -0
- package/mablscript/types/ExtractDescriptor.js +21 -0
- package/mablscript/types/GetCurrentLocationDescriptor.js +12 -0
- package/mablscript/types/GetVariableDescriptor.js +16 -0
- package/mablscript/types/GetViewportDescriptor.js +12 -0
- package/mablscript/types/HoverStepDescriptor.js +2 -0
- package/mablscript/types/NavigateStepDescriptor.js +7 -0
- package/mablscript/types/OpenEmailStepDescriptor.js +2 -0
- package/mablscript/types/OperatingSystemDescriptor.js +45 -0
- package/mablscript/types/ReleaseStepDescriptor.js +7 -0
- package/mablscript/types/RemoveCookieStepDescriptor.js +2 -0
- package/mablscript/types/SelectStepDescriptor.js +2 -0
- package/mablscript/types/SendHttpRequestTypes.js +2 -0
- package/mablscript/types/SendKeyStepDescriptor.js +30 -0
- package/mablscript/types/SetCookieStepDescriptor.js +2 -0
- package/mablscript/types/SetFilesStepDescriptor.js +2 -0
- package/mablscript/types/SetViewportStepDescriptor.js +2 -0
- package/mablscript/types/SnippetsDescriptor.js +36 -0
- package/mablscript/types/StepDescriptor.js +2 -0
- package/mablscript/types/SwitchContextStepDescriptor.js +15 -0
- package/mablscript/types/VariableNamespace.js +17 -0
- package/mablscript/types/VisitUrlStepDescriptor.js +2 -0
- package/mablscript/types/WaitStepDescriptor.js +2 -0
- package/mablscript/types/WaitUntilStepDescriptor.js +2 -0
- package/mablscript/types/mobile/CreateVariableMobileStepDescriptor.js +9 -0
- package/mablscript/types/mobile/EnterTextStepDescriptor.js +2 -0
- package/mablscript/types/mobile/HideKeyboardStepDescriptor.js +2 -0
- package/mablscript/types/mobile/InstallAppStepDescriptor.js +2 -0
- package/mablscript/types/mobile/NavigateBackStepDescriptor.js +2 -0
- package/mablscript/types/mobile/NavigateHomeStepDescriptor.js +2 -0
- package/mablscript/types/mobile/OpenAppStepDescriptor.js +2 -0
- package/mablscript/types/mobile/OpenLinkStepDescriptor.js +2 -0
- package/mablscript/types/mobile/PrepareSessionStepDescriptor.js +2 -0
- package/mablscript/types/mobile/PushFileDescriptor.js +2 -0
- package/mablscript/types/mobile/ScrollStepDescriptor.js +32 -0
- package/mablscript/types/mobile/SetOrientationStepDescriptor.js +8 -0
- package/mablscript/types/mobile/StepWithMobileFindDescriptor.js +8 -0
- package/mablscript/types/mobile/TapStepDescriptor.js +8 -0
- package/mablscript/types/mobile/UninstallAppStepDescriptor.js +2 -0
- package/mablscriptFind/index.js +2 -0
- package/mablscriptFind/index.js.LICENSE.txt +25 -0
- package/middleware.js +42 -0
- package/mobile/index.js +2 -0
- package/mobile/types.js +8 -0
- package/observers/ObserverBase.js +11 -0
- package/observers/mockObserver.js +47 -0
- package/package.json +107 -0
- package/popupDismissal/candidate.js +2 -0
- package/popupDismissal/index.js +255 -0
- package/providers/authenticationProvider.js +254 -0
- package/providers/cliConfigProvider.js +271 -0
- package/providers/exportRequestProvider.js +196 -0
- package/providers/logging/loggingProvider.js +90 -0
- package/providers/scmContextInterfaces.js +14 -0
- package/providers/scmContextProvider.js +335 -0
- package/providers/scmContextProviderV2.js +122 -0
- package/providers/types.js +9 -0
- package/proxy/index.js +2 -0
- package/proxy/index.js.LICENSE.txt +12 -0
- package/proxy/lib/xpath.js +1 -0
- package/reporters/__tests__/resources/sampleData.js +162 -0
- package/reporters/mochAwesome/interfaces.js +2 -0
- package/reporters/mochAwesome/mochAwesomeReporter.js +227 -0
- package/reporters/reporter.js +46 -0
- package/resources/actionabilityCheck.js +160 -0
- package/resources/coreWebVitals.js +1 -0
- package/resources/mablFind.js +2 -0
- package/resources/media/mabl_test_audio.wav +0 -0
- package/resources/media/mabl_test_pattern.y4m +3 -0
- package/resources/pdf-viewer/EmbeddedPdfHandler.js +1 -0
- package/resources/pdf-viewer/embeddedPdfDetection.js +225 -0
- package/resources/pdf-viewer/index.html +1 -0
- package/resources/pdf-viewer/index.js +2 -0
- package/resources/pdf-viewer/libEmbeddedPdfHandler.js +279 -0
- package/resources/pdf-viewer/libmablPdfViewer.js +21909 -0
- package/resources/pdf-viewer/mabl_attention_move.gif +0 -0
- package/resources/pdf-viewer/mabl_error_artwork_Unplugged.gif +0 -0
- package/resources/pdf-viewer/pdf.worker.9251738a897f697389be.js +2 -0
- package/resources/pdf-viewer/pdf.worker.9e2021092643447a5b9f.js +81 -0
- package/resources/popupDismissal.js +1 -0
- package/resources/webdriver.js +19 -0
- package/socketTunnel/index.js +2 -0
- package/socketTunnel/index.js.LICENSE.txt +68 -0
- package/upload/index.js +2 -0
- package/upload/index.js.LICENSE.txt +27 -0
- package/util/CloudStorageWriter.js +45 -0
- package/util/FileCache.js +180 -0
- package/util/IdentifierUtil.js +57 -0
- package/util/InternalMetricsTrackingSingleton.js +36 -0
- package/util/Lazy.js +90 -0
- package/util/MobileAppFileCache.js +103 -0
- package/util/RichPromise.js +53 -0
- package/util/TestOutputWriter.js +104 -0
- package/util/actionabilityUtil.js +165 -0
- package/util/analytics-events.js +14 -0
- package/util/analytics.js +176 -0
- package/util/asyncUtil.js +61 -0
- package/util/browserTestUtils.js +17 -0
- package/util/clickUtil.js +68 -0
- package/util/downloadUtil.js +87 -0
- package/util/encodingUtil.js +50 -0
- package/util/fileUploadUtil.js +146 -0
- package/util/javaScriptStepMigration.js +115 -0
- package/util/jestUtil.js +21 -0
- package/util/logUtils.js +131 -0
- package/util/markdownUtil.js +125 -0
- package/util/postInstallMessage.js +14 -0
- package/util/pureUtil.js +175 -0
- package/util/resourceUtil.js +90 -0
- package/util/timeUtil.js +31 -0
- package/utilities.js +7 -0
- package/webdriver/index.js +44 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.convertObjectToMablscriptArgs = exports.distinctStrings = exports.parseArgument = exports.argumentIsMablVariable = exports.MablAction = void 0;
|
|
4
|
+
const domUtil_1 = require("../domUtil");
|
|
5
|
+
const MablSymbol_1 = require("./MablSymbol");
|
|
6
|
+
class MablAction {
|
|
7
|
+
constructor(name, actionCode, args) {
|
|
8
|
+
this.name = name;
|
|
9
|
+
this.args = args;
|
|
10
|
+
this.actionCode = actionCode;
|
|
11
|
+
}
|
|
12
|
+
getActionArgs() {
|
|
13
|
+
return this.args ? this.args : [];
|
|
14
|
+
}
|
|
15
|
+
setActionSourceIndexInStep(index) {
|
|
16
|
+
this.actionSourceIndexInStep = index;
|
|
17
|
+
}
|
|
18
|
+
getActionSourceIndexInStep() {
|
|
19
|
+
return this.actionSourceIndexInStep;
|
|
20
|
+
}
|
|
21
|
+
getActionCode() {
|
|
22
|
+
return this.actionCode;
|
|
23
|
+
}
|
|
24
|
+
subVariable(argument) {
|
|
25
|
+
if (argumentIsMablVariable(argument)) {
|
|
26
|
+
const matches = argument.match(MablSymbol_1.SINGLE_VARIABLE_PATTERN_REGEX);
|
|
27
|
+
if (matches) {
|
|
28
|
+
return matches[1];
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
return `${argument}`;
|
|
32
|
+
}
|
|
33
|
+
getActionName() {
|
|
34
|
+
return this.name;
|
|
35
|
+
}
|
|
36
|
+
toMablscript() {
|
|
37
|
+
return '';
|
|
38
|
+
}
|
|
39
|
+
static findUniqueVariableReferencesInValue(value) {
|
|
40
|
+
const variableReferences = [];
|
|
41
|
+
if ((0, MablSymbol_1.isMablSymbolObject)(value)) {
|
|
42
|
+
return [value.name];
|
|
43
|
+
}
|
|
44
|
+
else if (typeof value === 'string') {
|
|
45
|
+
variableReferences.push(...(0, domUtil_1.findVariables)(value));
|
|
46
|
+
}
|
|
47
|
+
else if (Array.isArray(value)) {
|
|
48
|
+
variableReferences.push(...value.flatMap((v) => MablAction.findUniqueVariableReferencesInValue(v)));
|
|
49
|
+
}
|
|
50
|
+
else if (typeof value === 'object') {
|
|
51
|
+
variableReferences.push(...Object.values(value).flatMap((v) => MablAction.findUniqueVariableReferencesInValue(v)));
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
return [];
|
|
55
|
+
}
|
|
56
|
+
return distinctStrings(variableReferences);
|
|
57
|
+
}
|
|
58
|
+
getInputVariables() {
|
|
59
|
+
return [];
|
|
60
|
+
}
|
|
61
|
+
getOutputVariables() {
|
|
62
|
+
return [];
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.MablAction = MablAction;
|
|
66
|
+
function argumentIsMablVariable(argument) {
|
|
67
|
+
return MablSymbol_1.SINGLE_VARIABLE_PATTERN_REGEX.test(argument);
|
|
68
|
+
}
|
|
69
|
+
exports.argumentIsMablVariable = argumentIsMablVariable;
|
|
70
|
+
function parseArgument(arg) {
|
|
71
|
+
var _a;
|
|
72
|
+
if (typeof arg === 'string') {
|
|
73
|
+
const name = (_a = MablSymbol_1.SINGLE_VARIABLE_PATTERN_REGEX.exec(arg)) === null || _a === void 0 ? void 0 : _a[1];
|
|
74
|
+
if (name) {
|
|
75
|
+
return new MablSymbol_1.MablSymbol(name);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return arg;
|
|
79
|
+
}
|
|
80
|
+
exports.parseArgument = parseArgument;
|
|
81
|
+
function distinctStrings(values) {
|
|
82
|
+
return Array.from(new Set(values));
|
|
83
|
+
}
|
|
84
|
+
exports.distinctStrings = distinctStrings;
|
|
85
|
+
function convertObjectToMablscriptArgs(objectArgs) {
|
|
86
|
+
const mablArgs = Object.keys(objectArgs)
|
|
87
|
+
.sort()
|
|
88
|
+
.filter((key) => (objectArgs === null || objectArgs === void 0 ? void 0 : objectArgs[key]) !== undefined)
|
|
89
|
+
.map((key) => {
|
|
90
|
+
switch (typeof objectArgs[key]) {
|
|
91
|
+
case 'object':
|
|
92
|
+
return `${key}: ${convertObjectToMablscriptArgs(objectArgs[key])}`;
|
|
93
|
+
case 'boolean':
|
|
94
|
+
case 'number':
|
|
95
|
+
return `${key}: ${objectArgs[key]}`;
|
|
96
|
+
default:
|
|
97
|
+
return `${key}: "${(0, domUtil_1.escapeMablscriptString)(objectArgs[key])}"`;
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
return `{${mablArgs.join(', ')}}`;
|
|
101
|
+
}
|
|
102
|
+
exports.convertObjectToMablscriptArgs = convertObjectToMablscriptArgs;
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.isMablStepV1 = exports.buildObjectString = exports.buildSourceRepresentationOfObject = exports.MablStep = void 0;
|
|
7
|
+
const domUtil_1 = require("../domUtil");
|
|
8
|
+
const MablAction_1 = require("./MablAction");
|
|
9
|
+
const MablSymbol_1 = require("./MablSymbol");
|
|
10
|
+
const fast_json_stable_stringify_1 = __importDefault(require("fast-json-stable-stringify"));
|
|
11
|
+
class MablStep extends MablAction_1.MablAction {
|
|
12
|
+
constructor(name, args, actions, actionCode) {
|
|
13
|
+
super(name, actionCode, args);
|
|
14
|
+
this.stepVersion = 1;
|
|
15
|
+
this.actions = actions;
|
|
16
|
+
}
|
|
17
|
+
getStepVersion() {
|
|
18
|
+
return this.stepVersion;
|
|
19
|
+
}
|
|
20
|
+
setStepId(id) {
|
|
21
|
+
this.id = id;
|
|
22
|
+
}
|
|
23
|
+
stepId() {
|
|
24
|
+
return this.id;
|
|
25
|
+
}
|
|
26
|
+
canContinueOnFailure() {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
canFailAtEnd() {
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
getStepName() {
|
|
33
|
+
return 'UnimplementedStep';
|
|
34
|
+
}
|
|
35
|
+
isDisabled() {
|
|
36
|
+
return !!this.disabled;
|
|
37
|
+
}
|
|
38
|
+
setDisabled(disabled) {
|
|
39
|
+
this.disabled = disabled;
|
|
40
|
+
}
|
|
41
|
+
setAnnotation(annotation) {
|
|
42
|
+
this.annotation = annotation;
|
|
43
|
+
}
|
|
44
|
+
getAnnotation() {
|
|
45
|
+
return this.annotation;
|
|
46
|
+
}
|
|
47
|
+
setDescription(description) {
|
|
48
|
+
this.description = description;
|
|
49
|
+
}
|
|
50
|
+
getDescription() {
|
|
51
|
+
return this.description;
|
|
52
|
+
}
|
|
53
|
+
setStepSourceIndexInFlow(index) {
|
|
54
|
+
this.stepSourceIndexInFlow = index;
|
|
55
|
+
}
|
|
56
|
+
getStepSourceIndexInFlow() {
|
|
57
|
+
return this.stepSourceIndexInFlow;
|
|
58
|
+
}
|
|
59
|
+
getDescriptionForLogging() {
|
|
60
|
+
var _a;
|
|
61
|
+
return (((_a = this.annotation) === null || _a === void 0 ? void 0 : _a.description) || this.description || this.getStepName());
|
|
62
|
+
}
|
|
63
|
+
substituteMablscriptVariable(argument) {
|
|
64
|
+
if ((0, MablSymbol_1.isMablSymbolObject)(argument)) {
|
|
65
|
+
return argument.name;
|
|
66
|
+
}
|
|
67
|
+
if ((0, MablAction_1.argumentIsMablVariable)(argument)) {
|
|
68
|
+
const matches = argument.match(MablSymbol_1.SINGLE_VARIABLE_PATTERN_REGEX);
|
|
69
|
+
if (matches) {
|
|
70
|
+
return matches[1];
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return `"${argument}"`;
|
|
74
|
+
}
|
|
75
|
+
toStepDescriptor(_fullLocatorsOn) {
|
|
76
|
+
const formatted = {
|
|
77
|
+
names: this.actions.map((action) => action.getActionName()),
|
|
78
|
+
};
|
|
79
|
+
formatted.names.push(this.getActionName());
|
|
80
|
+
return formatted;
|
|
81
|
+
}
|
|
82
|
+
annotationsOnStep() {
|
|
83
|
+
var _a, _b;
|
|
84
|
+
return !!((_a = this.annotation) === null || _a === void 0 ? void 0 : _a.note) || !!((_b = this.annotation) === null || _b === void 0 ? void 0 : _b.description);
|
|
85
|
+
}
|
|
86
|
+
annotationsAsYml() {
|
|
87
|
+
const result = {};
|
|
88
|
+
if (this.annotationsOnStep()) {
|
|
89
|
+
result.annotation = this.annotation;
|
|
90
|
+
}
|
|
91
|
+
if (this.description) {
|
|
92
|
+
result.description = this.description;
|
|
93
|
+
}
|
|
94
|
+
if (this.isDisabled()) {
|
|
95
|
+
result.disabled = this.isDisabled();
|
|
96
|
+
}
|
|
97
|
+
return result;
|
|
98
|
+
}
|
|
99
|
+
getFormattedStep(fullLocatorsOn) {
|
|
100
|
+
const formatted = {};
|
|
101
|
+
formatted[this.getStepName()] =
|
|
102
|
+
this.annotationsAsYml();
|
|
103
|
+
const { actionCode, ...stepDescriptor } = this.toStepDescriptor(fullLocatorsOn);
|
|
104
|
+
Object.assign(formatted[this.getStepName()], stepDescriptor);
|
|
105
|
+
if (this.stepId()) {
|
|
106
|
+
formatted[this.getStepName()].id = this.stepId();
|
|
107
|
+
}
|
|
108
|
+
return formatted;
|
|
109
|
+
}
|
|
110
|
+
toMablscript() {
|
|
111
|
+
return '';
|
|
112
|
+
}
|
|
113
|
+
toLineDiffFormat() {
|
|
114
|
+
const lineDiffProperties = {
|
|
115
|
+
annotation: this.annotation,
|
|
116
|
+
disabled: this.isDisabled(),
|
|
117
|
+
mablscript: this.toMablscript(),
|
|
118
|
+
};
|
|
119
|
+
return this.stringify(lineDiffProperties);
|
|
120
|
+
}
|
|
121
|
+
stringify(value) {
|
|
122
|
+
return (0, fast_json_stable_stringify_1.default)(value);
|
|
123
|
+
}
|
|
124
|
+
static cloneAndRemoveUndefinedEntriesFromObject(obj) {
|
|
125
|
+
const clone = {};
|
|
126
|
+
Object.entries(obj).forEach(([key, value]) => {
|
|
127
|
+
if (value !== undefined) {
|
|
128
|
+
if (typeof value !== 'object' || Array.isArray(value)) {
|
|
129
|
+
clone[key] = value;
|
|
130
|
+
}
|
|
131
|
+
else {
|
|
132
|
+
clone[key] = MablStep.cloneAndRemoveUndefinedEntriesFromObject(value);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
return clone;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
exports.MablStep = MablStep;
|
|
140
|
+
MablStep.mablScriptStepNames = ['mablStep'];
|
|
141
|
+
MablStep.yamlMablScriptNames = ['MablStep'];
|
|
142
|
+
function buildSourceRepresentationOfObject(object) {
|
|
143
|
+
const stringedValues = Object.entries(object).map(([key, value]) => {
|
|
144
|
+
if (Array.isArray(value)) {
|
|
145
|
+
return `${key}: [${value
|
|
146
|
+
.map((arrayVal) => buildSourceRepresentationOfObject(arrayVal))
|
|
147
|
+
.join(', ')}]`;
|
|
148
|
+
}
|
|
149
|
+
else if (typeof value !== 'object') {
|
|
150
|
+
if (typeof value === 'number') {
|
|
151
|
+
return `${key}: ${value}`;
|
|
152
|
+
}
|
|
153
|
+
return `${key}: "${(0, domUtil_1.escapeMablscriptString)(value)}"`;
|
|
154
|
+
}
|
|
155
|
+
return `${key}: ${buildSourceRepresentationOfObject(value)}`;
|
|
156
|
+
});
|
|
157
|
+
return `{${stringedValues.join(', ')}}`;
|
|
158
|
+
}
|
|
159
|
+
exports.buildSourceRepresentationOfObject = buildSourceRepresentationOfObject;
|
|
160
|
+
function buildObjectString(objectString) {
|
|
161
|
+
const final = [];
|
|
162
|
+
Object.keys(objectString)
|
|
163
|
+
.filter((key) => key !== 'value')
|
|
164
|
+
.forEach((key) => {
|
|
165
|
+
if (typeof objectString[key] === 'undefined') {
|
|
166
|
+
return final;
|
|
167
|
+
}
|
|
168
|
+
if (typeof objectString[key] === 'string') {
|
|
169
|
+
return final.push(`${key}: "${(0, domUtil_1.escapeMablscriptString)(objectString[key])}"`);
|
|
170
|
+
}
|
|
171
|
+
else if (typeof objectString[key] === 'number') {
|
|
172
|
+
return final.push(`${key}: ${objectString[key]}`);
|
|
173
|
+
}
|
|
174
|
+
else if (Array.isArray(objectString[key])) {
|
|
175
|
+
return final.push(`"${key}": [${objectString[key]
|
|
176
|
+
.map((arrayVal) => `"${(0, domUtil_1.escapeMablscriptString)(arrayVal)}"`)
|
|
177
|
+
.join(', ')}]`);
|
|
178
|
+
}
|
|
179
|
+
return final.push(`${key}: {${buildObjectString(objectString[key])}}`);
|
|
180
|
+
});
|
|
181
|
+
return final;
|
|
182
|
+
}
|
|
183
|
+
exports.buildObjectString = buildObjectString;
|
|
184
|
+
function isMablStepV1(value) {
|
|
185
|
+
if (value === undefined || value === null) {
|
|
186
|
+
return false;
|
|
187
|
+
}
|
|
188
|
+
const mablStep = value;
|
|
189
|
+
return !!mablStep.getStepVersion && mablStep.getStepVersion() === 1;
|
|
190
|
+
}
|
|
191
|
+
exports.isMablStepV1 = isMablStepV1;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isMablStepV2WithMobileFindDescriptor = exports.isMablStepV2 = exports.MablStepV2 = void 0;
|
|
4
|
+
const MablStep_1 = require("./MablStep");
|
|
5
|
+
const StepWithMobileFindDescriptor_1 = require("./types/mobile/StepWithMobileFindDescriptor");
|
|
6
|
+
class MablStepV2 extends MablStep_1.MablStep {
|
|
7
|
+
constructor(name, descriptor, actionCode) {
|
|
8
|
+
super(name, [], [], actionCode);
|
|
9
|
+
this.stepVersion = 2;
|
|
10
|
+
this.descriptor = descriptor;
|
|
11
|
+
}
|
|
12
|
+
stepId() {
|
|
13
|
+
return this.descriptor.id;
|
|
14
|
+
}
|
|
15
|
+
setStepId(id) {
|
|
16
|
+
this.descriptor.id = id;
|
|
17
|
+
}
|
|
18
|
+
static fromYaml(stepName, stepDescriptor, actionCode) {
|
|
19
|
+
return new MablStepV2(stepName, stepDescriptor, actionCode);
|
|
20
|
+
}
|
|
21
|
+
getStepName() {
|
|
22
|
+
return this.name;
|
|
23
|
+
}
|
|
24
|
+
toStepDescriptor() {
|
|
25
|
+
return this.descriptor;
|
|
26
|
+
}
|
|
27
|
+
getFormattedStep(_fullLocatorsOn) {
|
|
28
|
+
return {
|
|
29
|
+
[this.getStepName()]: {
|
|
30
|
+
description: this.stepDescription(),
|
|
31
|
+
...this.descriptor,
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
stepDescription() {
|
|
36
|
+
throw new Error('Step description not implemented');
|
|
37
|
+
}
|
|
38
|
+
isDisabled() {
|
|
39
|
+
return !!this.descriptor.disabled;
|
|
40
|
+
}
|
|
41
|
+
setDisabled(disabled) {
|
|
42
|
+
this.descriptor.disabled = disabled;
|
|
43
|
+
}
|
|
44
|
+
getDescriptionForLogging() {
|
|
45
|
+
var _a;
|
|
46
|
+
return (((_a = this.annotation) === null || _a === void 0 ? void 0 : _a.description) ||
|
|
47
|
+
this.stepDescription() ||
|
|
48
|
+
this.getStepName());
|
|
49
|
+
}
|
|
50
|
+
toLineDiffFormat() {
|
|
51
|
+
const lineDiffProperties = {
|
|
52
|
+
annotation: this.annotation,
|
|
53
|
+
disabled: this.isDisabled(),
|
|
54
|
+
descriptor: this.toStepDescriptor(),
|
|
55
|
+
};
|
|
56
|
+
return this.stringify(lineDiffProperties);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.MablStepV2 = MablStepV2;
|
|
60
|
+
MablStepV2.mablScriptStepNames = [];
|
|
61
|
+
MablStepV2.yamlMablScriptNames = ['MablStepV2'];
|
|
62
|
+
function isMablStepV2(value) {
|
|
63
|
+
if (value === undefined || value === null) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
const mablStep = value;
|
|
67
|
+
return !!mablStep.getStepVersion && mablStep.getStepVersion() === 2;
|
|
68
|
+
}
|
|
69
|
+
exports.isMablStepV2 = isMablStepV2;
|
|
70
|
+
function isMablStepV2WithMobileFindDescriptor(value) {
|
|
71
|
+
return !!(isMablStepV2(value) && (0, StepWithMobileFindDescriptor_1.isStepWithMobileFindDescriptor)(value === null || value === void 0 ? void 0 : value.descriptor));
|
|
72
|
+
}
|
|
73
|
+
exports.isMablStepV2WithMobileFindDescriptor = isMablStepV2WithMobileFindDescriptor;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isMablSymbolObject = exports.formatSymbol = exports.MablSymbol = exports.SINGLE_VARIABLE_PATTERN_REGEX = exports.VARIABLE_PATTERN_REGEX = void 0;
|
|
4
|
+
exports.VARIABLE_PATTERN_REGEX = /{{@([_.a-zA-Z0-9]+)}}/g;
|
|
5
|
+
exports.SINGLE_VARIABLE_PATTERN_REGEX = /^{{@([_.a-zA-Z0-9]+)}}$/;
|
|
6
|
+
class MablSymbol {
|
|
7
|
+
constructor(fullyQualifiedName) {
|
|
8
|
+
this.name = fullyQualifiedName;
|
|
9
|
+
this.tokens = fullyQualifiedName.split('.');
|
|
10
|
+
}
|
|
11
|
+
static fromString(formatted) {
|
|
12
|
+
const regEx = '{{@(?<name>.*)}}';
|
|
13
|
+
const found = formatted.match(regEx);
|
|
14
|
+
if (!(found === null || found === void 0 ? void 0 : found.groups)) {
|
|
15
|
+
throw new Error(`Invalid MablSymbol format: ${formatted}`);
|
|
16
|
+
}
|
|
17
|
+
const name = found.groups.name;
|
|
18
|
+
return new MablSymbol(name);
|
|
19
|
+
}
|
|
20
|
+
toString() {
|
|
21
|
+
return formatSymbol(this);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.MablSymbol = MablSymbol;
|
|
25
|
+
function formatSymbol(symbol) {
|
|
26
|
+
if (isMablSymbolObject(symbol)) {
|
|
27
|
+
return '{{@' + symbol.name + '}}';
|
|
28
|
+
}
|
|
29
|
+
return '{{@' + symbol + '}}';
|
|
30
|
+
}
|
|
31
|
+
exports.formatSymbol = formatSymbol;
|
|
32
|
+
function isMablSymbolObject(value) {
|
|
33
|
+
return !!((value === null || value === void 0 ? void 0 : value.name) && (value === null || value === void 0 ? void 0 : value.tokens));
|
|
34
|
+
}
|
|
35
|
+
exports.isMablSymbolObject = isMablSymbolObject;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AwaitDownloadAction = void 0;
|
|
4
|
+
const MablAction_1 = require("../MablAction");
|
|
5
|
+
class AwaitDownloadAction extends MablAction_1.MablAction {
|
|
6
|
+
constructor(name, args) {
|
|
7
|
+
super(name, 'await_download', args);
|
|
8
|
+
}
|
|
9
|
+
toMablscript() {
|
|
10
|
+
return 'await_download()';
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.AwaitDownloadAction = AwaitDownloadAction;
|
|
14
|
+
AwaitDownloadAction.mablScriptStepNames = ['await_download'];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AwaitPDFDownloadAction = void 0;
|
|
4
|
+
const AwaitDownloadAction_1 = require("./AwaitDownloadAction");
|
|
5
|
+
const domUtil_1 = require("../../domUtil");
|
|
6
|
+
class AwaitPDFDownloadAction extends AwaitDownloadAction_1.AwaitDownloadAction {
|
|
7
|
+
constructor(name, args) {
|
|
8
|
+
super(name, args);
|
|
9
|
+
this.pdfUUID = this.getActionArgs()[0].uuid;
|
|
10
|
+
}
|
|
11
|
+
toMablscript() {
|
|
12
|
+
return `await_pdf(${(0, domUtil_1.buildStepArgumentString)({
|
|
13
|
+
params: { uuid: this.pdfUUID },
|
|
14
|
+
legacy: true,
|
|
15
|
+
})})`;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.AwaitPDFDownloadAction = AwaitPDFDownloadAction;
|
|
19
|
+
AwaitPDFDownloadAction.mablScriptStepNames = ['await_pdf'];
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ConditionAction = void 0;
|
|
4
|
+
const domUtil_1 = require("../../domUtil");
|
|
5
|
+
const MablAction_1 = require("../MablAction");
|
|
6
|
+
const ConditionDescriptor_1 = require("../types/ConditionDescriptor");
|
|
7
|
+
class ConditionAction extends MablAction_1.MablAction {
|
|
8
|
+
constructor(name, args) {
|
|
9
|
+
super(name, name, args);
|
|
10
|
+
this.hasOptionsAtInstantiation = false;
|
|
11
|
+
this.conditionDescriptor = this.getConditionDescriptor();
|
|
12
|
+
}
|
|
13
|
+
getConditionDescriptor() {
|
|
14
|
+
switch (this.name) {
|
|
15
|
+
case 'evaluate_condition':
|
|
16
|
+
return this.getEvaluateCondition();
|
|
17
|
+
case 'evaluate_presence':
|
|
18
|
+
return this.getEvaluatePresence();
|
|
19
|
+
case 'evaluate_ai_prompt':
|
|
20
|
+
return this.getEvaluateAIPrompt();
|
|
21
|
+
default:
|
|
22
|
+
throw new Error(`Unexpected condition name: ${this.name}`);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
getEvaluateCondition() {
|
|
26
|
+
const conditionActionArgs = this.getActionArgs();
|
|
27
|
+
let conditionAttribute;
|
|
28
|
+
let conditionValueAttribute;
|
|
29
|
+
let options;
|
|
30
|
+
if (conditionActionArgs) {
|
|
31
|
+
[conditionAttribute, conditionValueAttribute, options] =
|
|
32
|
+
this.getActionArgs();
|
|
33
|
+
}
|
|
34
|
+
if (conditionValueAttribute === undefined) {
|
|
35
|
+
throw new Error('Invalid equality condition. Missing value to compare.');
|
|
36
|
+
}
|
|
37
|
+
if (conditionAttribute === undefined) {
|
|
38
|
+
throw new Error('Invalid equality condition. Missing comparison type.');
|
|
39
|
+
}
|
|
40
|
+
if (!(0, ConditionDescriptor_1.isComparisonType)(conditionAttribute)) {
|
|
41
|
+
throw new Error(`Invalid equality condition. Invalid comparison type: ${conditionAttribute}`);
|
|
42
|
+
}
|
|
43
|
+
if (options) {
|
|
44
|
+
this.hasOptionsAtInstantiation = true;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
conditionType: ConditionDescriptor_1.ConditionType.Comparison,
|
|
48
|
+
comparisonType: conditionAttribute,
|
|
49
|
+
comparatorValue: (0, MablAction_1.parseArgument)(conditionValueAttribute),
|
|
50
|
+
caseInsensitive: options === null || options === void 0 ? void 0 : options.caseInsensitive,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
getEvaluatePresence() {
|
|
54
|
+
const conditionActionArgs = this.getActionArgs();
|
|
55
|
+
let conditionAttribute;
|
|
56
|
+
if (conditionActionArgs) {
|
|
57
|
+
[conditionAttribute] = this.getActionArgs();
|
|
58
|
+
}
|
|
59
|
+
if (!conditionAttribute) {
|
|
60
|
+
throw new Error('Invalid evaluate presence condition. Missing evaluation_type.');
|
|
61
|
+
}
|
|
62
|
+
return {
|
|
63
|
+
conditionType: ConditionDescriptor_1.ConditionType.Presence,
|
|
64
|
+
presenceType: ConditionDescriptor_1.PresenceEvaluationType.fromString(conditionAttribute),
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
getEvaluateAIPrompt() {
|
|
68
|
+
const conditionActionArgs = this.getActionArgs();
|
|
69
|
+
let userPrompt;
|
|
70
|
+
let options;
|
|
71
|
+
if (conditionActionArgs) {
|
|
72
|
+
[userPrompt, options] = this.getActionArgs();
|
|
73
|
+
}
|
|
74
|
+
if (userPrompt === undefined) {
|
|
75
|
+
throw new Error('Invalid ai prompt condition. Missing user prompt');
|
|
76
|
+
}
|
|
77
|
+
return {
|
|
78
|
+
conditionType: ConditionDescriptor_1.ConditionType.AIPrompt,
|
|
79
|
+
userPrompt,
|
|
80
|
+
metaPrompt: typeof options === 'string' ? options : options === null || options === void 0 ? void 0 : options.metaPrompt,
|
|
81
|
+
criteria: options === null || options === void 0 ? void 0 : options.criteria,
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
generateEvaluateConditionMablscript() {
|
|
85
|
+
var _a;
|
|
86
|
+
const comparatorValue = (0, ConditionDescriptor_1.getOptionalComparatorValue)(this.conditionDescriptor);
|
|
87
|
+
let value = '';
|
|
88
|
+
if (comparatorValue !== undefined) {
|
|
89
|
+
if (!(0, MablAction_1.argumentIsMablVariable)(comparatorValue)) {
|
|
90
|
+
value = `, "${(0, domUtil_1.escapeMablscriptString)(comparatorValue)}"`;
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
value = `, ${this.subVariable(comparatorValue)}`;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
const conditionOptionsString = this.hasOptionsAtInstantiation
|
|
97
|
+
? `, ${(0, MablAction_1.convertObjectToMablscriptArgs)((_a = (0, ConditionDescriptor_1.getOptionalConditionOptions)(this.conditionDescriptor)) !== null && _a !== void 0 ? _a : {})}`
|
|
98
|
+
: '';
|
|
99
|
+
return `${this.name}("${(0, ConditionDescriptor_1.getAssertionConditionFieldFromDescriptor)(this.conditionDescriptor)}"${value}${conditionOptionsString})`;
|
|
100
|
+
}
|
|
101
|
+
toMablscript() {
|
|
102
|
+
return `${this.generateEvaluateConditionMablscript()}`;
|
|
103
|
+
}
|
|
104
|
+
getInputVariables() {
|
|
105
|
+
var _a;
|
|
106
|
+
const fields = [];
|
|
107
|
+
fields.push((_a = (0, ConditionDescriptor_1.getOptionalComparatorValue)(this.conditionDescriptor)) !== null && _a !== void 0 ? _a : '');
|
|
108
|
+
if ((0, ConditionDescriptor_1.isAIPromptCondition)(this.conditionDescriptor)) {
|
|
109
|
+
if (this.conditionDescriptor.criteria) {
|
|
110
|
+
fields.push(...this.conditionDescriptor.criteria);
|
|
111
|
+
}
|
|
112
|
+
fields.push(this.conditionDescriptor.userPrompt);
|
|
113
|
+
}
|
|
114
|
+
return MablAction_1.MablAction.findUniqueVariableReferencesInValue(fields);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
exports.ConditionAction = ConditionAction;
|
|
118
|
+
ConditionAction.mablScriptStepNames = [
|
|
119
|
+
'evaluate_condition',
|
|
120
|
+
'evaluate_presence',
|
|
121
|
+
'evaluate_ai_prompt',
|
|
122
|
+
];
|
|
123
|
+
ConditionAction.yamlMablScriptNames = ['ConditionAction'];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CountAction = void 0;
|
|
4
|
+
const MablAction_1 = require("../MablAction");
|
|
5
|
+
class CountAction extends MablAction_1.MablAction {
|
|
6
|
+
constructor(name, args) {
|
|
7
|
+
super(name, 'count', args);
|
|
8
|
+
this.countDescriptor = { count: true };
|
|
9
|
+
}
|
|
10
|
+
toMablscript() {
|
|
11
|
+
return `count()`;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.CountAction = CountAction;
|
|
15
|
+
CountAction.mablScriptStepNames = ['count'];
|
|
16
|
+
CountAction.yamlMablScriptNames = ['CountAction'];
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExtractAction = exports.ExtractTypeName = exports.CSS_EXTRACTION_VALUE = exports.EXTRACTION_TYPE_KEY = void 0;
|
|
4
|
+
const MablAction_1 = require("../MablAction");
|
|
5
|
+
const ExtractDescriptor_1 = require("../types/ExtractDescriptor");
|
|
6
|
+
exports.EXTRACTION_TYPE_KEY = 'extraction_type';
|
|
7
|
+
exports.CSS_EXTRACTION_VALUE = 'css';
|
|
8
|
+
var ExtractTypeName;
|
|
9
|
+
(function (ExtractTypeName) {
|
|
10
|
+
ExtractTypeName["CssProperty"] = "CssProperty";
|
|
11
|
+
ExtractTypeName["ElementAttribute"] = "ElementAttribute";
|
|
12
|
+
ExtractTypeName["EmailAttribute"] = "EmailAttribute";
|
|
13
|
+
})(ExtractTypeName || (exports.ExtractTypeName = ExtractTypeName = {}));
|
|
14
|
+
class ExtractAction extends MablAction_1.MablAction {
|
|
15
|
+
constructor(name, args) {
|
|
16
|
+
super(name, name, args);
|
|
17
|
+
if (this.name === ExtractDescriptor_1.ExtractType.EXTRACT_INNER_TEXT) {
|
|
18
|
+
this.name = ExtractDescriptor_1.ExtractType.EXTRACT_ATTRIBUTE;
|
|
19
|
+
this.extractionAttribute = 'innerText';
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
this.extractionAttribute = this.getActionArgs()[0];
|
|
23
|
+
}
|
|
24
|
+
if (this.name === ExtractDescriptor_1.ExtractType.EXTRACT_ATTRIBUTE && this.args.length > 1) {
|
|
25
|
+
const extractionOptions = this.args[1];
|
|
26
|
+
const metaExtractionType = extractionOptions.extraction_type;
|
|
27
|
+
if ((metaExtractionType === null || metaExtractionType === void 0 ? void 0 : metaExtractionType.toLowerCase()) === exports.CSS_EXTRACTION_VALUE) {
|
|
28
|
+
this.extractionType = ExtractDescriptor_1.ExtractType.EXTRACT_CSS_PROPERTIES.toString();
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
this.extractionType = this.name;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
this.extractionType = this.name;
|
|
36
|
+
}
|
|
37
|
+
this.extractDescriptor = this.getExtractDescriptor();
|
|
38
|
+
}
|
|
39
|
+
getExtractDescriptor() {
|
|
40
|
+
if (!this.extractionAttribute) {
|
|
41
|
+
throw new Error(`Attribute name is required for extract attribute action.`);
|
|
42
|
+
}
|
|
43
|
+
if (typeof this.extractionAttribute !== 'string') {
|
|
44
|
+
throw new Error(`Invalid attribute provided for extract attribute extractor: ${this.extractionAttribute}`);
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
extractType: ExtractDescriptor_1.ExtractType.fromString(this.extractionType),
|
|
48
|
+
attributeName: this.extractionAttribute,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
toMablscript() {
|
|
52
|
+
if (this.extractionType === ExtractDescriptor_1.ExtractType.EXTRACT_CSS_PROPERTIES) {
|
|
53
|
+
return `extract_attribute("${this.extractionAttribute}", {${exports.EXTRACTION_TYPE_KEY}: "${exports.CSS_EXTRACTION_VALUE}"})`;
|
|
54
|
+
}
|
|
55
|
+
return `${this.extractionType}("${this.extractionAttribute}")`;
|
|
56
|
+
}
|
|
57
|
+
static mablScriptTypeFromYamlType(yamlType) {
|
|
58
|
+
return (Object.keys(ExtractAction.mablscriptToYamlType).find((key) => ExtractAction.mablscriptToYamlType[key] === yamlType) || 'extract_attribute');
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.ExtractAction = ExtractAction;
|
|
62
|
+
ExtractAction.mablScriptStepNames = [
|
|
63
|
+
'extract_attribute',
|
|
64
|
+
'extract_email_attribute',
|
|
65
|
+
'extract_inner_text',
|
|
66
|
+
];
|
|
67
|
+
ExtractAction.mablscriptToYamlType = {
|
|
68
|
+
extract_attribute: ExtractTypeName.ElementAttribute,
|
|
69
|
+
extract_css_property: ExtractTypeName.CssProperty,
|
|
70
|
+
extract_email_attribute: ExtractTypeName.EmailAttribute,
|
|
71
|
+
};
|