browserstack-node-sdk 1.22.0 → 1.23.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/ats/src/CFTemplates/aws-eks-cluster-dep.yaml +202 -0
- package/ats/src/CFTemplates/s3-create.yaml +20 -0
- package/ats/src/CFTemplates/subnet-create.yaml +85 -0
- package/ats/src/CFTemplates/subnet-import.yaml +15 -0
- package/ats/src/CFTemplates/vpc-create.yaml +27 -0
- package/ats/src/CFTemplates/vpc-import.yaml +5 -0
- package/ats/src/commands/configure.js +1 -0
- package/ats/src/commands/connect.js +1 -0
- package/ats/src/commands/connect_commands/grid.js +1 -0
- package/ats/src/commands/create.js +1 -0
- package/ats/src/commands/create_commands/grid.js +1 -0
- package/ats/src/commands/delete.js +1 -0
- package/ats/src/commands/delete_commands/grid.js +1 -0
- package/ats/src/commands/init.js +1 -0
- package/ats/src/commands/list.js +1 -0
- package/ats/src/commands/list_commands/grid_profiles.js +1 -0
- package/ats/src/commands/list_commands/grids.js +1 -0
- package/ats/src/config/constants.js +1 -0
- package/ats/src/config/instanceTypes.json +554 -0
- package/ats/src/config/logger.js +1 -0
- package/ats/src/index.js +2 -0
- package/ats/src/templates/KubeConfigTemplate.yaml +33 -0
- package/ats/src/templates/autoscaler/cluster-role-binding.yaml +15 -0
- package/ats/src/templates/autoscaler/clusterrole.yaml +56 -0
- package/ats/src/templates/autoscaler/deployment.yaml +66 -0
- package/ats/src/templates/autoscaler/role-binding.yaml +16 -0
- package/ats/src/templates/autoscaler/role.yaml +17 -0
- package/ats/src/templates/autoscaler/sa.yaml +10 -0
- package/ats/src/templates/autoscaler-role-creation.yaml +185 -0
- package/ats/src/templates/aws-auth-cm.yaml +13 -0
- package/ats/src/templates/cluster-role-binding.yaml +12 -0
- package/ats/src/templates/hub-deployment.yaml +76 -0
- package/ats/src/templates/hub-service.yaml +26 -0
- package/ats/src/utils/AWSUtils.js +1 -0
- package/ats/src/utils/createAutoscalerStack.js +1 -0
- package/ats/src/utils/createClusterStack.js +1 -0
- package/ats/src/utils/createk8sClient.js +1 -0
- package/ats/src/utils/deleteStack.js +1 -0
- package/ats/src/utils/gridComponents.js +1 -0
- package/ats/src/utils/hstUtils.js +1 -0
- package/ats/src/utils/instrumentationUtils.js +1 -0
- package/ats/src/utils/userInput.js +1 -0
- package/ats/src/utils/utilityMethods.js +1 -0
- package/ats/src/utils/webSocketUtils.js +1 -0
- package/package.json +1 -1
- package/src/bin/codeceptjs/BrowserStackPlugin.js +1 -1
- package/src/bin/codeceptjs/command.js +1 -1
- package/src/bin/cucumber-js/command.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter_old_versions.js +1 -1
- package/src/bin/cucumber-js/test.setup.js +1 -1
- package/src/bin/cucumber-js/test_old.setup.js +1 -1
- package/src/bin/cucumber-js/timeout.setup.js +1 -1
- package/src/bin/jest/command.js +1 -1
- package/src/bin/jest/customEnvironment.js +1 -1
- package/src/bin/jest/customTestRunnerTemplate.js +1 -1
- package/src/bin/jest/jest.setup.js +1 -1
- package/src/bin/jest/test_before.setup.js +1 -1
- package/src/bin/launcher/launcher.js +1 -1
- package/src/bin/mocha/bstack-reporter/customReporter.js +1 -1
- package/src/bin/mocha/command.js +1 -1
- package/src/bin/mocha/test-observability/builderPatch.js +1 -1
- package/src/bin/mocha/test-observability/data-hooks.js +1 -1
- package/src/bin/mocha/test-observability/mochaUtils.js +1 -1
- package/src/bin/mocha/test.setup.js +1 -1
- package/src/bin/nightwatch/command.js +1 -1
- package/src/bin/playwright/command.js +1 -1
- package/src/bin/playwright/globalSetup.js +1 -1
- package/src/bin/playwright/mock-process.js +1 -1
- package/src/bin/playwright/reporter/pwUtils.js +1 -1
- package/src/bin/playwright/reporter/reporter.js +1 -1
- package/src/bin/playwright/reporter/test-details.js +1 -1
- package/src/bin/runner.js +1 -1
- package/src/bin/setup.js +1 -1
- package/src/bin/test-runner/index.js +1 -1
- package/src/bin/test-runner/runTest.js +1 -1
- package/src/bin/test-runner/testWorker.js +1 -1
- package/src/bin/utils/constants.js +1 -1
- package/src/bin/utils/log4jsAppender.js +1 -1
- package/src/bin/utils/logPatcher.js +1 -1
- package/src/bin/utils/logReportingAPI.js +1 -1
- package/src/bin/vanilla-js/command.js +1 -1
- package/src/helpers/BrowserStackSetup.js +1 -1
- package/src/helpers/capsMapping.js +1 -1
- package/src/helpers/helper.js +1 -1
- package/src/helpers/logger.js +1 -1
- package/src/helpers/patchHelpers.js +1 -1
- package/src/helpers/request-spy.js +1 -1
- package/src/helpers/setKeepAlive.js +1 -1
- package/src/helpers/test-observability/constants.js +1 -1
- package/src/helpers/test-observability/error-handler.js +1 -1
- package/src/helpers/test-observability/performance-tester.js +1 -1
- package/src/helpers/test-observability/requestQueueHandler.js +1 -1
- package/src/helpers/test-observability/sessionHandler.js +1 -1
- package/src/helpers/test-observability/utils.js +1 -1
- package/src/helpers/w3cMapping.js +1 -1
- package/src/hubAllocationMethods.js +1 -1
- package/src/index.js +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
function a30_0x17f4(_0x5ae4ae,_0x12a5fd){const _0x25d2b5=a30_0x25d2();return a30_0x17f4=function(_0x17f455,_0x8bd25b){_0x17f455=_0x17f455-0x125;let _0xdb163c=_0x25d2b5[_0x17f455];return _0xdb163c;},a30_0x17f4(_0x5ae4ae,_0x12a5fd);}const a30_0x349fa2=a30_0x17f4;(function(_0x250d5a,_0x4fc7d7){const _0x12be04=a30_0x17f4,_0x17f108=_0x250d5a();while(!![]){try{const _0x510d15=-parseInt(_0x12be04(0x12b))/0x1*(-parseInt(_0x12be04(0x132))/0x2)+-parseInt(_0x12be04(0x13d))/0x3*(-parseInt(_0x12be04(0x135))/0x4)+parseInt(_0x12be04(0x128))/0x5*(-parseInt(_0x12be04(0x125))/0x6)+parseInt(_0x12be04(0x126))/0x7*(parseInt(_0x12be04(0x13b))/0x8)+-parseInt(_0x12be04(0x134))/0x9+-parseInt(_0x12be04(0x130))/0xa+-parseInt(_0x12be04(0x139))/0xb*(-parseInt(_0x12be04(0x137))/0xc);if(_0x510d15===_0x4fc7d7)break;else _0x17f108['push'](_0x17f108['shift']());}catch(_0xa0c2a2){_0x17f108['push'](_0x17f108['shift']());}}}(a30_0x25d2,0x9dbcf),exports[a30_0x349fa2(0x13c)]=async(_0x24b713,_0xfe6a4a)=>{const _0x4af23b=a30_0x349fa2,_0x492b32={'pZDUc':function(_0x44a1a2,_0x17a702){return _0x44a1a2(_0x17a702);},'EnCLM':_0x4af23b(0x131),'CYvuh':_0x4af23b(0x142)},_0x43998e=_0x492b32[_0x4af23b(0x12f)](require,_0x492b32[_0x4af23b(0x129)]),_0x1ea3f4=new _0x43998e(_0x492b32[_0x4af23b(0x12a)],_0x24b713,_0xfe6a4a);return await _0x1ea3f4[_0x4af23b(0x13e)]();},exports[a30_0x349fa2(0x138)]=async(_0x5efa45,_0x355c2d,_0x2a10e9,_0x4631d9,_0x5af8d8)=>{const _0x184aa4=a30_0x349fa2,_0x577e2a={'EnmDU':function(_0x442966,_0x20dbe0){return _0x442966(_0x20dbe0);},'GjAdJ':'../launcher/launcher','PhjSe':_0x184aa4(0x133)},_0x3db7b3={'capability':_0x5efa45,..._0x355c2d},_0x4fa6aa={};_0x4fa6aa[_0x184aa4(0x12e)]=_0x3db7b3,_0x4fa6aa[_0x184aa4(0x136)]=_0x5af8d8;let _0xb923f7=_0x4fa6aa;const _0x2a45a4=_0x577e2a[_0x184aa4(0x12d)](require,_0x577e2a[_0x184aa4(0x141)]),_0x5f2ae0=new _0x2a45a4(_0x577e2a[_0x184aa4(0x12c)],_0xb923f7,_0x2a10e9,_0x4631d9);return await _0x5f2ae0['run']();},exports[a30_0x349fa2(0x127)]=async _0x18d328=>{const _0x58976f=a30_0x349fa2,_0x59dcd0={'yEVEC':function(_0x5e3a4d,_0x2d5447){return _0x5e3a4d(_0x2d5447);},'ahYnZ':_0x58976f(0x131),'mlsBW':_0x58976f(0x13a)},_0x1ebb18=_0x59dcd0[_0x58976f(0x13f)](require,_0x59dcd0[_0x58976f(0x140)]),_0x35aaa0=new _0x1ebb18(_0x59dcd0['mlsBW'],_0x18d328);return await _0x35aaa0[_0x58976f(0x13e)]();});function a30_0x25d2(){const _0x37c64a=['runTest','102576TtIoRS','run','yEVEC','ahYnZ','GjAdJ','mocha','6dySiNU','430801cGfumk','runVanillaTest','5046245VFqRZS','EnCLM','CYvuh','586437xmaSQi','PhjSe','EnmDU','configuration','pZDUc','9998350HoJXTM','../launcher/launcher','2qJeWbA','cucumber-js','9373329VzSRLI','8uPgoMT','formatter','780ZKRTnk','runCucumberTest','431453DljXHb','vanilla','64lfGLln'];a30_0x25d2=function(){return _0x37c64a;};return a30_0x25d2();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
const a31_0x33865d=a31_0x5cf3;(function(_0x20608b,_0x645f2d){const _0x1f3351=a31_0x5cf3,_0x3edda5=_0x20608b();while(!![]){try{const _0x2735e1=-parseInt(_0x1f3351(0xc4))/0x1+-parseInt(_0x1f3351(0xc7))/0x2+-parseInt(_0x1f3351(0xc1))/0x3+parseInt(_0x1f3351(0xb9))/0x4+-parseInt(_0x1f3351(0xc5))/0x5*(parseInt(_0x1f3351(0xbb))/0x6)+parseInt(_0x1f3351(0xc3))/0x7*(-parseInt(_0x1f3351(0xbf))/0x8)+parseInt(_0x1f3351(0xc2))/0x9;if(_0x2735e1===_0x645f2d)break;else _0x3edda5['push'](_0x3edda5['shift']());}catch(_0x596ff8){_0x3edda5['push'](_0x3edda5['shift']());}}}(a31_0x4f43,0x8f865));function a31_0x5cf3(_0x25a030,_0x3512a0){const _0x4f436e=a31_0x4f43();return a31_0x5cf3=function(_0x5cf335,_0x2ceefc){_0x5cf335=_0x5cf335-0xb9;let _0x3cf9c2=_0x4f436e[_0x5cf335];return _0x3cf9c2;},a31_0x5cf3(_0x25a030,_0x3512a0);}const {runTest,runCucumberTest,runVanillaTest}=require(a31_0x33865d(0xc0));exports[a31_0x33865d(0xbd)]=async(_0x10adc1,_0x1f1cfb)=>{const _0x459019=a31_0x33865d,_0x6f629e={'PmCyj':function(_0xf1bcc8,_0x1a7dc2,_0x5a820c){return _0xf1bcc8(_0x1a7dc2,_0x5a820c);}};return await _0x6f629e[_0x459019(0xc6)](runTest,_0x10adc1,_0x1f1cfb);},exports['cucumberWorker']=async(_0x275cc8,_0x48f2ae,_0x50a744,_0x4fa4c9,_0x772583)=>{const _0x5b4f5c=a31_0x33865d,_0x42b51a={'PTKzJ':function(_0x14e8ab,_0x152eb7,_0x488723,_0x383d45,_0x1249e3,_0x123221){return _0x14e8ab(_0x152eb7,_0x488723,_0x383d45,_0x1249e3,_0x123221);}};return await _0x42b51a[_0x5b4f5c(0xbc)](runCucumberTest,_0x275cc8,_0x48f2ae,_0x50a744,_0x4fa4c9,_0x772583);},exports[a31_0x33865d(0xbe)]=async _0x43d3b9=>{const _0x48e846=a31_0x33865d,_0x4411b8={'ViIjL':function(_0x44e3e1,_0x5668b2){return _0x44e3e1(_0x5668b2);}};return await _0x4411b8[_0x48e846(0xba)](runVanillaTest,_0x43d3b9);};function a31_0x4f43(){const _0x40fe49=['ViIjL','7578SZQPuw','PTKzJ','worker','vanillaWorker','1578088eHQRJX','./runTest','837348pahDka','10276164fHwxEC','7JBfxvz','60947EMUsEJ','1805vfBMOF','PmCyj','1439264ruGgWx','4635920wOberb'];a31_0x4f43=function(){return _0x40fe49;};return a31_0x4f43();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var a32_0x374a68=a32_0x43c8;(function(_0x717afe,_0xa829af){var _0x302239=a32_0x43c8,_0x133d19=_0x717afe();while(!![]){try{var _0x4b89c7=-parseInt(_0x302239(0x1a0))/0x1*(parseInt(_0x302239(0x17e))/0x2)+parseInt(_0x302239(0x166))/0x3+-parseInt(_0x302239(0x19f))/0x4+-parseInt(_0x302239(0x19c))/0x5*(parseInt(_0x302239(0x1a1))/0x6)+parseInt(_0x302239(0x196))/0x7*(-parseInt(_0x302239(0x16b))/0x8)+parseInt(_0x302239(0x161))/0x9*(-parseInt(_0x302239(0x18a))/0xa)+parseInt(_0x302239(0x16c))/0xb;if(_0x4b89c7===_0xa829af)break;else _0x133d19['push'](_0x133d19['shift']());}catch(_0x4b4f03){_0x133d19['push'](_0x133d19['shift']());}}}(a32_0x33bd,0xbb267));var a32_0x542d0b={};function a32_0x43c8(_0x4695ce,_0x17fea3){var _0x33bdfe=a32_0x33bd();return a32_0x43c8=function(_0x43c866,_0x4ebd95){_0x43c866=_0x43c866-0x154;var _0x28c1b2=_0x33bdfe[_0x43c866];return _0x28c1b2;},a32_0x43c8(_0x4695ce,_0x17fea3);}a32_0x542d0b[a32_0x374a68(0x183)]=a32_0x374a68(0x17b),a32_0x542d0b[a32_0x374a68(0x168)]=a32_0x374a68(0x159);var a32_0x1682be={};a32_0x1682be[a32_0x374a68(0x183)]=a32_0x374a68(0x180);function a32_0x33bd(){var _0x45555a=['ERR_FAILED','ERR_TUNNEL_CONNECTION_FAILED','7GAGEBN','VALID_APP_EXTENSION','CUCUMBER','CODECEPTJS','^[a-zA-Z0-9_.-]*/[a-zA-Z0-9_.-]*$','APP_AUTOMATE','101695wDExkG','FUNNEL_INSTRUMENTATION_API_URL','acceptSslCerts','1533028nsPAhJ','1HuPrww','330SPJLBB','NUDGE_LOCAL_ERRORS','ERR_ADDRESS_UNREACHABLE','.ipa','chromeOptions','ERR_SOCKS_CONNECTION_HOST_UNREACHABLE','ERR_CONNECTION_CLOSED','SHAREABLE_ID_REGEX','Specify\x20--help\x20for\x20available\x20options','ERR_BLOCKED_BY_CLIENT','timeouts','BROWSERSTACK_API_URL','observability','ERR_SOCKET_NOT_CONNECTED','Run\x20nightwatch\x20tests\x20on\x20browserstack','hubUrl','11979243unagND','^[a-zA-Z0-9_.-]*$','PLAYWRIGHT','JEST','Run\x20playwright\x20tests\x20with\x20Observability','4515480BIjASL','Run\x20js\x20tests\x20on\x20browserstack','HELP','Playwright','unhandledPromptBehavior','11845528Wlwvfl','53936454tfcjmg','ERR_NAME_RESOLUTION_FAILED','pageLoadStrategy','https://api-cloud.browserstack.com','ERR_SOCKS_CONNECTION_FAILED','AUTOMATE_PRODUCTS','MOCHA','ERR_MANDATORY_PROXY_CONFIGURATION_FAILED','CI_ARTIFACTS_PATH','Create\x20and\x20Manage\x20scalable\x20browser\x20automation\x20grids\x20for\x20Functional\x20Testing','ieOptions','ERR_ADDRESS_INVALID','ROOT_CAPS','ERR_NAME_NOT_RESOLVED','exports','shows\x20version\x20information','ERR_CONNECTION_ABORTED','edgeOptions','2656574FeaqPw','ERR_PROXY_CONNECTION_FAILED','Run\x20jest\x20tests\x20on\x20browserstack','app-automate','Run\x20codeceptjs\x20tests\x20on\x20browserstack','INFO','ERR_CONNECTION_TIMED_OUT','OBSERVABILITY_SUPPORTED_FWS','sdk/v1/event','strictFileInteractability','APP_AUTOMATE_PRODUCTS','mocha','10hUVbCB','browserVersion','PRIVATE_DOMAIN_OR_IP_REGEX','acceptInsecureCerts','browserName','HST','ERR_NETWORK_CHANGED','.aab','Run\x20cucumber-js\x20tests\x20on\x20browserstack','PRODUCT_IF_NOT_BROWSERSTACK_INFRA'];a32_0x33bd=function(){return _0x45555a;};return a32_0x33bd();}var a32_0x4fe26f={};a32_0x4fe26f[a32_0x374a68(0x183)]='Run\x20mocha\x20tests\x20on\x20browserstack';var a32_0x1f68ac={};a32_0x1f68ac['INFO']=a32_0x374a68(0x192);var a32_0x55fa18={};a32_0x55fa18[a32_0x374a68(0x183)]=a32_0x374a68(0x167);var a32_0x353fad={};a32_0x353fad[a32_0x374a68(0x183)]=a32_0x374a68(0x15f);var a32_0x32f702={};a32_0x32f702[a32_0x374a68(0x183)]=a32_0x374a68(0x165);var a32_0x1c5a18={};a32_0x1c5a18['INFO']=a32_0x374a68(0x182);var a32_0x948b2e={};a32_0x948b2e['INFO']=a32_0x374a68(0x175);var a32_0x4def9f={};a32_0x4def9f['VERSION']=a32_0x542d0b,a32_0x4def9f[a32_0x374a68(0x164)]=a32_0x1682be,a32_0x4def9f[a32_0x374a68(0x172)]=a32_0x4fe26f,a32_0x4def9f[a32_0x374a68(0x198)]=a32_0x1f68ac,a32_0x4def9f['VANILLA']=a32_0x55fa18,a32_0x4def9f['NIGHTWATCH']=a32_0x353fad,a32_0x4def9f[a32_0x374a68(0x163)]=a32_0x32f702,a32_0x4def9f[a32_0x374a68(0x199)]=a32_0x1c5a18,a32_0x4def9f[a32_0x374a68(0x18f)]=a32_0x948b2e,a32_0x4def9f['BSTACK_DELTA']=0xf*0x3c*0x3e8,a32_0x4def9f[a32_0x374a68(0x160)]='https://hub.browserstack.com/wd/hub',a32_0x4def9f[a32_0x374a68(0x178)]=[a32_0x374a68(0x18d),a32_0x374a68(0x16e),a32_0x374a68(0x187),a32_0x374a68(0x16a),a32_0x374a68(0x15b),a32_0x374a68(0x18e),a32_0x374a68(0x18b),a32_0x374a68(0x19e),'acceptSslCert',a32_0x374a68(0x155),'firefoxOptions',a32_0x374a68(0x17d),a32_0x374a68(0x176)],a32_0x4def9f['ROOT_REGEX']=/^[\w-]+:.*$/,a32_0x4def9f[a32_0x374a68(0x18c)]=[/localhost/,/bs-local.com/,/^127\./,/^10\./,/^172\.1[6-9]\./,/^172\.2[0-9]\./,/^172\.3[0-1]\./,/^192\.168\./],a32_0x4def9f[a32_0x374a68(0x15c)]='https://api.browserstack.com',a32_0x4def9f['APP_UPLOAD_URL']=a32_0x374a68(0x16f),a32_0x4def9f[a32_0x374a68(0x19d)]=a32_0x374a68(0x186),a32_0x4def9f[a32_0x374a68(0x171)]=['automate',a32_0x374a68(0x15d)],a32_0x4def9f[a32_0x374a68(0x188)]=[a32_0x374a68(0x181),a32_0x374a68(0x15d)],a32_0x4def9f[a32_0x374a68(0x193)]=[a32_0x374a68(0x15d)],a32_0x4def9f[a32_0x374a68(0x185)]=[a32_0x374a68(0x189),a32_0x374a68(0x169)],a32_0x4def9f['AUTOMATE']=['automate'],a32_0x4def9f[a32_0x374a68(0x19b)]=[a32_0x374a68(0x181)],a32_0x4def9f[a32_0x374a68(0x1a2)]=[a32_0x374a68(0x194),'ERR_TIMED_OUT',a32_0x374a68(0x15a),a32_0x374a68(0x190),a32_0x374a68(0x15e),a32_0x374a68(0x157),'ERR_CONNECTION_RESET','ERR_CONNECTION_REFUSED',a32_0x374a68(0x17c),'ERR_CONNECTION_FAILED',a32_0x374a68(0x179),a32_0x374a68(0x177),a32_0x374a68(0x1a3),a32_0x374a68(0x195),a32_0x374a68(0x184),a32_0x374a68(0x170),a32_0x374a68(0x156),a32_0x374a68(0x17f),a32_0x374a68(0x179),a32_0x374a68(0x16d),a32_0x374a68(0x173)],a32_0x4def9f[a32_0x374a68(0x197)]=['.apk',a32_0x374a68(0x191),a32_0x374a68(0x154)],a32_0x4def9f['CUSTOM_ID_REGEX']=a32_0x374a68(0x162),a32_0x4def9f[a32_0x374a68(0x158)]=a32_0x374a68(0x19a),a32_0x4def9f[a32_0x374a68(0x174)]='./browserstack-artifacts/',module[a32_0x374a68(0x17a)]=a32_0x4def9f;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
function a33_0x1dc1(){const _0x53d07a=['21592khAfBC','5057JuIWVY','layout','7695968itRxSG','join','33165KCoqjE','data','colouredLayout','type','274hZVhFG','798sDyBKC','timezoneOffset','3RioUpS','9672124zcondm','level','910TtSPGf','levelStr','3551282XbNqgT','./logReportingAPI','CtRTI','7930onRKKt','configure'];a33_0x1dc1=function(){return _0x53d07a;};return a33_0x1dc1();}function a33_0x4373(_0x26448f,_0x48d01c){const _0x1dc148=a33_0x1dc1();return a33_0x4373=function(_0x4373a9,_0x30e6d9){_0x4373a9=_0x4373a9-0x1d1;let _0x590ce0=_0x1dc148[_0x4373a9];return _0x590ce0;},a33_0x4373(_0x26448f,_0x48d01c);}const a33_0xc85dad=a33_0x4373;(function(_0x3f9847,_0x184f7f){const _0x460ab6=a33_0x4373,_0x2ce477=_0x3f9847();while(!![]){try{const _0x255713=parseInt(_0x460ab6(0x1dd))/0x1*(parseInt(_0x460ab6(0x1e5))/0x2)+-parseInt(_0x460ab6(0x1d2))/0x3*(-parseInt(_0x460ab6(0x1dc))/0x4)+parseInt(_0x460ab6(0x1da))/0x5*(-parseInt(_0x460ab6(0x1e6))/0x6)+parseInt(_0x460ab6(0x1d7))/0x7+-parseInt(_0x460ab6(0x1df))/0x8+-parseInt(_0x460ab6(0x1e1))/0x9*(parseInt(_0x460ab6(0x1d5))/0xa)+parseInt(_0x460ab6(0x1d3))/0xb;if(_0x255713===_0x184f7f)break;else _0x2ce477['push'](_0x2ce477['shift']());}catch(_0x3dc60b){_0x2ce477['push'](_0x2ce477['shift']());}}}(a33_0x1dc1,0x8cc24));const logReportingAPI=require(a33_0xc85dad(0x1d8)),BSTestOpsLogger=new logReportingAPI({});function BSTestOpsLog4JSAppender(_0x5e7667,_0x75b443){return _0x2a1cfd=>{const _0x1c4b9c=a33_0x4373;BSTestOpsLogger['log']({'level':_0x2a1cfd[_0x1c4b9c(0x1d4)]?_0x2a1cfd[_0x1c4b9c(0x1d4)][_0x1c4b9c(0x1d6)]:null,'message':_0x2a1cfd[_0x1c4b9c(0x1e2)]?_0x2a1cfd['data'][_0x1c4b9c(0x1e0)]('\x20'):null});};}exports[a33_0xc85dad(0x1db)]=(_0x487953,_0x1d9b87)=>{const _0x5d9def=a33_0xc85dad,_0x273e94={'CtRTI':function(_0x246d0f,_0x1af48b,_0x1b1d62){return _0x246d0f(_0x1af48b,_0x1b1d62);}};let _0x26fb38=_0x1d9b87[_0x5d9def(0x1e3)];return _0x487953[_0x5d9def(0x1de)]&&(_0x26fb38=_0x1d9b87['layout'](_0x487953[_0x5d9def(0x1de)][_0x5d9def(0x1e4)],_0x487953[_0x5d9def(0x1de)])),_0x273e94[_0x5d9def(0x1d9)](BSTestOpsLog4JSAppender,_0x26fb38,_0x487953[_0x5d9def(0x1d1)]);};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a34_0x2a7ca4=a34_0x2a2c;(function(_0x423a6f,_0x397c1a){const _0x1cff93=a34_0x2a2c,_0x4c29bb=_0x423a6f();while(!![]){try{const _0x265900=-parseInt(_0x1cff93(0x70))/0x1*(-parseInt(_0x1cff93(0x7d))/0x2)+parseInt(_0x1cff93(0x6e))/0x3*(-parseInt(_0x1cff93(0x7b))/0x4)+parseInt(_0x1cff93(0x76))/0x5+-parseInt(_0x1cff93(0x6f))/0x6*(-parseInt(_0x1cff93(0x81))/0x7)+-parseInt(_0x1cff93(0x80))/0x8*(parseInt(_0x1cff93(0x84))/0x9)+-parseInt(_0x1cff93(0x7e))/0xa+-parseInt(_0x1cff93(0x7c))/0xb;if(_0x265900===_0x397c1a)break;else _0x4c29bb['push'](_0x4c29bb['shift']());}catch(_0x34d6b9){_0x4c29bb['push'](_0x4c29bb['shift']());}}}(a34_0x3b0a,0xb54e0));const Transport=require(a34_0x2a7ca4(0x82)),{consoleHolder}=require(a34_0x2a7ca4(0x77)),a34_0x4b6cda={};a34_0x4b6cda[a34_0x2a7ca4(0x79)]=a34_0x2a7ca4(0x79),a34_0x4b6cda[a34_0x2a7ca4(0x78)]=a34_0x2a7ca4(0x78),a34_0x4b6cda[a34_0x2a7ca4(0x7f)]='DEBUG',a34_0x4b6cda['TRACE']='TRACE',a34_0x4b6cda[a34_0x2a7ca4(0x75)]=a34_0x2a7ca4(0x75);const LOG_LEVELS=a34_0x4b6cda;class logPatcher extends Transport{constructor(_0x41ad14){super(_0x41ad14);}[a34_0x2a7ca4(0x7a)]=(_0xe9f597=LOG_LEVELS[a34_0x2a7ca4(0x79)],_0x54ebe3=[''])=>{const _0x24d967=a34_0x2a7ca4,_0x505341={};_0x505341['Fmljl']='TEST_LOG';const _0x52d7de=_0x505341;consoleHolder[_0xe9f597[_0x24d967(0x86)]()](..._0x54ebe3),process['emit'](_0x24d967(0x85)+process['pid'],{'timestamp':new Date()[_0x24d967(0x87)](),'level':_0xe9f597[_0x24d967(0x72)](),'message':'\x22'+_0x54ebe3[_0x24d967(0x6d)](',\x20')+'\x22','kind':_0x52d7de[_0x24d967(0x83)],'http_response':{}});};[a34_0x2a7ca4(0x74)]=(..._0x5a1123)=>{const _0x2f87de=a34_0x2a7ca4;this[_0x2f87de(0x7a)](LOG_LEVELS['TRACE'],_0x5a1123);};['debug']=(..._0x154eba)=>{const _0x4cb27d=a34_0x2a7ca4;this['logToTestOps'](LOG_LEVELS[_0x4cb27d(0x7f)],_0x154eba);};['info']=(..._0x440084)=>{const _0x57de9f=a34_0x2a7ca4;this[_0x57de9f(0x7a)](LOG_LEVELS[_0x57de9f(0x79)],_0x440084);};['warn']=(..._0x84f0d4)=>{const _0x4f5e90=a34_0x2a7ca4;this[_0x4f5e90(0x7a)](LOG_LEVELS['WARN'],_0x84f0d4);};[a34_0x2a7ca4(0x88)]=(..._0x1d866b)=>{const _0x6dd728=a34_0x2a7ca4;this[_0x6dd728(0x7a)](LOG_LEVELS[_0x6dd728(0x78)],_0x1d866b);};[a34_0x2a7ca4(0x73)]=(..._0x54373f)=>{const _0x4eae46=a34_0x2a7ca4;this[_0x4eae46(0x7a)](LOG_LEVELS[_0x4eae46(0x79)],_0x54373f);};};module[a34_0x2a7ca4(0x71)]=logPatcher;function a34_0x2a2c(_0x1b03eb,_0x12a1e7){const _0x3b0ad5=a34_0x3b0a();return a34_0x2a2c=function(_0x2a2c0a,_0x113e18){_0x2a2c0a=_0x2a2c0a-0x6d;let _0x40cc7a=_0x3b0ad5[_0x2a2c0a];return _0x40cc7a;},a34_0x2a2c(_0x1b03eb,_0x12a1e7);}function a34_0x3b0a(){const _0x1f7f90=['DEBUG','8mesVrF','3361666WlSITi','winston-transport','Fmljl','3266883YCKMvH','bs:addLog:','toLowerCase','toISOString','error','join','21jkpkdf','6BwvBCW','87aCNsjY','exports','toUpperCase','log','trace','WARN','6900250ZzKsYS','../../helpers/test-observability/constants','ERROR','INFO','logToTestOps','660496azbJgP','6096277uwqbur','24286QLzruE','1010430WkbAFa'];a34_0x3b0a=function(){return _0x1f7f90;};return a34_0x3b0a();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a35_0x16cea6=a35_0x5f4a;(function(_0x2bbf82,_0x537c11){const _0xff4cc3=a35_0x5f4a,_0x1ff566=_0x2bbf82();while(!![]){try{const _0x5baec7=parseInt(_0xff4cc3(0x99))/0x1+parseInt(_0xff4cc3(0x9d))/0x2+parseInt(_0xff4cc3(0x8c))/0x3*(parseInt(_0xff4cc3(0x8e))/0x4)+-parseInt(_0xff4cc3(0x73))/0x5+-parseInt(_0xff4cc3(0x77))/0x6+-parseInt(_0xff4cc3(0x9c))/0x7+parseInt(_0xff4cc3(0x7b))/0x8;if(_0x5baec7===_0x537c11)break;else _0x1ff566['push'](_0x1ff566['shift']());}catch(_0x3d0d1d){_0x1ff566['push'](_0x1ff566['shift']());}}}(a35_0x2a25,0x68647));const Transport=require(a35_0x16cea6(0x76)),{consoleHolder}=require(a35_0x16cea6(0x74)),a35_0x3e0b3e={};a35_0x3e0b3e['INFO']='INFO',a35_0x3e0b3e[a35_0x16cea6(0x9b)]=a35_0x16cea6(0x9b),a35_0x3e0b3e[a35_0x16cea6(0x84)]=a35_0x16cea6(0x84),a35_0x3e0b3e[a35_0x16cea6(0x85)]='TRACE',a35_0x3e0b3e['WARN']=a35_0x16cea6(0x78);function a35_0x5f4a(_0x4836c4,_0x3c5dd8){const _0x2a2550=a35_0x2a25();return a35_0x5f4a=function(_0x5f4a57,_0x3f34fc){_0x5f4a57=_0x5f4a57-0x73;let _0x2c087c=_0x2a2550[_0x5f4a57];return _0x2c087c;},a35_0x5f4a(_0x4836c4,_0x3c5dd8);}const LOG_LEVELS=a35_0x3e0b3e;class logReportingAPI extends Transport{constructor(_0x3d8307){super(_0x3d8307);}[a35_0x16cea6(0x7c)](_0x22cf96,_0x2e9e87){const _0x398b9a=a35_0x16cea6,_0x32c1d0={'gVdXI':function(_0x3fa90c,_0x53eb6c){return _0x3fa90c!==_0x53eb6c;},'EtVcl':_0x398b9a(0x83),'dZbVP':_0x398b9a(0x9a),'CPFyb':_0x398b9a(0x8a),'UvSBm':function(_0x408966,_0x2f2d53){return _0x408966(_0x2f2d53);},'geAMU':function(_0x59a45b,_0x460ebc){return _0x59a45b===_0x460ebc;},'rCbOa':'object','cBmCd':_0x398b9a(0x93),'NtxzH':_0x398b9a(0x8f),'onqXV':_0x398b9a(0x7e),'uQttg':function(_0x1d3852){return _0x1d3852();}};_0x32c1d0[_0x398b9a(0x91)](setImmediate,()=>{const _0x4b7f75=_0x398b9a;_0x32c1d0[_0x4b7f75(0x7d)](_0x32c1d0['EtVcl'],_0x32c1d0[_0x4b7f75(0x88)])?this[_0x4b7f75(0x80)](_0x32c1d0[_0x4b7f75(0x94)],_0x22cf96):this[_0x4b7f75(0x75)](_0x1db38a[_0x4b7f75(0x85)],_0x140437);});_0x32c1d0[_0x398b9a(0x7f)](typeof _0x22cf96,_0x32c1d0[_0x398b9a(0x98)])?_0x32c1d0[_0x398b9a(0x7d)](_0x32c1d0[_0x398b9a(0x95)],_0x32c1d0[_0x398b9a(0x92)])?this[_0x398b9a(0x75)](_0x22cf96['level']||LOG_LEVELS[_0x398b9a(0x86)],_0x22cf96['message'],![]):this['logToTestOps'](_0x2365a0[_0x398b9a(0x84)],_0x2bb424):_0x32c1d0[_0x398b9a(0x7d)](_0x32c1d0[_0x398b9a(0x8d)],_0x32c1d0[_0x398b9a(0x8d)])?this[_0x398b9a(0x75)](_0xa32adc[_0x398b9a(0x9b)],_0x57308d):this[_0x398b9a(0x75)](LOG_LEVELS['INFO'],_0x22cf96);if(_0x2e9e87)_0x32c1d0['uQttg'](_0x2e9e87);}[a35_0x16cea6(0x75)]=(_0x5de02e=LOG_LEVELS[a35_0x16cea6(0x86)],_0x4539c3='',_0x59514f=!![])=>{const _0x22f31c=a35_0x16cea6,_0x27c0be={};_0x27c0be[_0x22f31c(0x87)]='TEST_LOG';const _0x4cbc71=_0x27c0be;if(_0x59514f)consoleHolder[_0x5de02e[_0x22f31c(0x8b)]()](_0x4539c3);process[_0x22f31c(0x80)](_0x22f31c(0x96)+process[_0x22f31c(0x90)],{'timestamp':new Date()['toISOString'](),'level':_0x5de02e[_0x22f31c(0x79)](),'message':_0x4539c3,'kind':_0x4cbc71[_0x22f31c(0x87)],'http_response':{}});};[a35_0x16cea6(0x81)]=(_0x498431,_0xf195b1)=>{const _0x9a2b85=a35_0x16cea6;this[_0x9a2b85(0x75)](LOG_LEVELS[_0x9a2b85(0x85)],_0x498431);};['debug']=(_0x32083e,_0xba0797)=>{const _0x5b3a9f=a35_0x16cea6;this[_0x5b3a9f(0x75)](LOG_LEVELS[_0x5b3a9f(0x84)],_0x32083e);};[a35_0x16cea6(0x82)]=(_0x430fd1,_0x2ca457)=>{const _0x2c5510=a35_0x16cea6;this[_0x2c5510(0x75)](LOG_LEVELS['INFO'],_0x430fd1);};[a35_0x16cea6(0x7a)]=(_0x56e4bc,_0x5b2a1c)=>{const _0x280a4f=a35_0x16cea6;this['logToTestOps'](LOG_LEVELS[_0x280a4f(0x78)],_0x56e4bc);};[a35_0x16cea6(0x97)]=(_0x347732,_0x2afc2b)=>{const _0x51b4e1=a35_0x16cea6;this[_0x51b4e1(0x75)](LOG_LEVELS['ERROR'],_0x347732);};};function a35_0x2a25(){const _0x280422=['pid','UvSBm','NtxzH','lFxhj','CPFyb','cBmCd','bs:addLog:','error','rCbOa','333600JoPbBX','qVhEp','ERROR','1694945FfkpEJ','1606518UOjFPz','1448235ypsEdk','../../helpers/test-observability/constants','logToTestOps','winston-transport','1655604IqtjGD','WARN','toUpperCase','warn','384584dbvBmC','log','gVdXI','mNOXP','geAMU','emit','trace','info','qViyJ','DEBUG','TRACE','INFO','mshqH','dZbVP','exports','logged','toLowerCase','3RZfNNn','onqXV','201500HNYqFo','VNBWD'];a35_0x2a25=function(){return _0x280422;};return a35_0x2a25();}module[a35_0x16cea6(0x89)]=logReportingAPI;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
'use strict';const
|
|
2
|
+
'use strict';const a36_0x2d943b=a36_0x6f92;(function(_0x46a0c8,_0xc10b18){const _0x215840=a36_0x6f92,_0x84b3bc=_0x46a0c8();while(!![]){try{const _0x40dc3b=-parseInt(_0x215840(0xf0))/0x1+-parseInt(_0x215840(0xea))/0x2*(parseInt(_0x215840(0x107))/0x3)+-parseInt(_0x215840(0x10e))/0x4*(parseInt(_0x215840(0xf6))/0x5)+-parseInt(_0x215840(0x110))/0x6*(-parseInt(_0x215840(0xfd))/0x7)+parseInt(_0x215840(0xeb))/0x8+parseInt(_0x215840(0xe5))/0x9*(parseInt(_0x215840(0x104))/0xa)+-parseInt(_0x215840(0xf4))/0xb*(-parseInt(_0x215840(0x108))/0xc);if(_0x40dc3b===_0xc10b18)break;else _0x84b3bc['push'](_0x84b3bc['shift']());}catch(_0x3f5a52){_0x84b3bc['push'](_0x84b3bc['shift']());}}}(a36_0xe913,0xd0280));function a36_0x6f92(_0x422014,_0x6f76f2){const _0xe91324=a36_0xe913();return a36_0x6f92=function(_0x6f927b,_0x17d6f9){_0x6f927b=_0x6f927b-0xe0;let _0x13f2df=_0xe91324[_0x6f927b];return _0x13f2df;},a36_0x6f92(_0x422014,_0x6f76f2);}function a36_0xe913(){const _0x1fd69b=['config','175334KpdBCQ','8002016aAoFEv','tFczv','setUpHubUrl','existsSync','args','276425oIxuyb','push','aqMaN','anfCq','33QEnsKU','bzyCK','5PpEMEh','RKxDU','File\x20path\x20is\x20required','Config\x20yml\x20is\x20required','handleApp','hubUrl','Gkwgo','21mmSqsn','efuuZ','yWaDo','VkoUy','parallelsPerPlatform','length','isUndefined','210170ZmwrEx','../../helpers/helper','cwd','51zOcKan','6248148kFTlel','finally','proxySettings','jrMUb','GPLBY','XxAZP','3967532nsgWoU','BFJlQ','1383354dXqJpC','modifyBrowserStackCaps','configuration','platforms','getPlatformName','modifyBrowserStackW3CCaps','sHURH','fiuKD','vHOcw','JiYqd','exports','SBalC','vanilla','jViOC','RBbTT','forEach','file','File\x20','153lwyHsd','ntESl','server','JqpIk'];a36_0xe913=function(){return _0x1fd69b;};return a36_0xe913();}const fs=require('fs'),{default:BrowserStackSetup}=require('../../helpers/BrowserStackSetup'),helper=require(a36_0x2d943b(0x105)),constants=require('../utils/constants'),{parallelVanillaRun}=require('../test-runner');async function run(_0x4ad1b5,_0x432760){const _0x10ef11=a36_0x2d943b,_0x3de758={'yWaDo':_0x10ef11(0x11c),'bzyCK':function(_0x480be7,_0xfa8c22){return _0x480be7!==_0xfa8c22;},'anfCq':_0x10ef11(0xf2),'RBbTT':'kpEKo','VkoUy':_0x10ef11(0x11b),'GPLBY':function(_0x49f1e9,_0x209880){return _0x49f1e9(_0x209880);},'jViOC':_0x10ef11(0xf8),'Gkwgo':function(_0x293378,_0x32e4c0){return _0x293378(_0x32e4c0);},'sHURH':function(_0x300a75,_0x11d86c){return _0x300a75(_0x11d86c);},'RKxDU':_0x10ef11(0xf9),'jrMUb':function(_0x313696,_0x3957d4){return _0x313696>_0x3957d4;},'JiYqd':function(_0x4681b4,_0x1a0618){return _0x4681b4===_0x1a0618;},'JqpIk':'XKmoh','wApQa':function(_0xeeb283,_0x19af9d){return _0xeeb283!==_0x19af9d;},'BFJlQ':_0x10ef11(0x117),'qMapK':_0x10ef11(0x118),'tFczv':_0x10ef11(0xe6),'efuuZ':function(_0x7a03b4,_0x26e767){return _0x7a03b4*_0x26e767;},'XxAZP':function(_0x7ea6d7,_0x20802e,_0x42274){return _0x7ea6d7(_0x20802e,_0x42274);}},_0x19e569=new BrowserStackSetup(_0x4ad1b5,_0x3de758[_0x10ef11(0xff)]);await _0x19e569[_0x10ef11(0xed)](),await helper[_0x10ef11(0xfa)](_0x19e569['config']);let _0x179f38=[];if(helper[_0x10ef11(0x103)](_0x4ad1b5['_'][0x1]))throw _0x3de758[_0x10ef11(0x10c)](Error,_0x3de758[_0x10ef11(0xe0)]);const _0x35d87e=path['join'](process[_0x10ef11(0x106)](),_0x4ad1b5['_'][0x1]);if(!fs[_0x10ef11(0xee)](_0x35d87e))throw _0x3de758[_0x10ef11(0xfc)](Error,_0x10ef11(0xe4)+_0x4ad1b5['_'][0x1]+'\x20doesn\x27t\x20exist');if(!_0x19e569[_0x10ef11(0xe9)])throw _0x3de758[_0x10ef11(0x116)](Error,_0x3de758[_0x10ef11(0xf7)]);let _0x526db1=helper['useW3C'](_0x19e569['config']);if(_0x19e569[_0x10ef11(0xe9)][_0x10ef11(0x113)]&&_0x3de758[_0x10ef11(0x10b)](_0x19e569[_0x10ef11(0xe9)]['platforms'][_0x10ef11(0x102)],0x0)){if(_0x3de758['JiYqd'](_0x3de758['JqpIk'],_0x3de758[_0x10ef11(0xe8)]))_0x19e569[_0x10ef11(0xe9)][_0x10ef11(0x113)][_0x10ef11(0xe2)]((_0x2a25ff,_0xf7de96)=>{const _0xfff1fa=_0x10ef11;if(_0x3de758['bzyCK'](_0x3de758[_0xfff1fa(0xf3)],_0x3de758[_0xfff1fa(0xf3)])){if(_0x4ff5ac)_0x19a804[_0xfff1fa(0xf1)](_0x3d6cf8[_0xfff1fa(0x115)](_0x56bf1b[_0xfff1fa(0xe9)],_0x3de758[_0xfff1fa(0xff)],_0x4729c4));else _0x25d231['push'](_0x52ed27[_0xfff1fa(0x111)](_0x449eb6['config'],_0x3de758['yWaDo'],_0x269f9d));}else{if(_0x526db1)_0x179f38['push'](helper['modifyBrowserStackW3CCaps'](_0x19e569[_0xfff1fa(0xe9)],_0x3de758[_0xfff1fa(0xff)],_0xf7de96));else _0x179f38[_0xfff1fa(0xf1)](helper[_0xfff1fa(0x111)](_0x19e569[_0xfff1fa(0xe9)],_0x3de758[_0xfff1fa(0xff)],_0xf7de96));}});else{let _0x5e07cc;if(_0x138ba8)_0x5e07cc=_0x40b1ee[_0x10ef11(0x115)](_0x42c436[_0x10ef11(0xe9)],_0x3de758[_0x10ef11(0xff)],0x0);else _0x5e07cc=_0x400f63['modifyBrowserStackCaps'](_0x412258[_0x10ef11(0xe9)],_0x3de758[_0x10ef11(0xff)],0x0);const _0x46e0f1={};_0x46e0f1[_0x10ef11(0xe7)]=_0x1b075c['hubUrl'],_0x46e0f1[_0x10ef11(0x10a)]=_0x576ba1[_0x10ef11(0xe9)][_0x10ef11(0x10a)],_0x15b92e=_0x46e0f1;const _0x443651={'capability':_0x5e07cc,..._0xe58c55};_0x443651['file']=_0x105edd,_0x443651[_0x10ef11(0xef)]=_0x36038b;const _0x642c4={};_0x642c4[_0x10ef11(0x112)]=_0x443651,_0x6db64d=_0x642c4,_0x8aa571[_0x10ef11(0xf1)](_0x48bfd2);}}let _0x26969b,_0x26b38e;const _0x2a006b=[];if(_0x3de758[_0x10ef11(0x10b)](_0x179f38[_0x10ef11(0x102)],0x0))_0x3de758['wApQa'](_0x3de758['BFJlQ'],_0x3de758[_0x10ef11(0x10f)])?_0x1de8bd[_0x10ef11(0xe9)]['platforms'][_0x10ef11(0xe2)]((_0x48c077,_0x5de259)=>{const _0x58abf4=_0x10ef11;if(_0x16db4a)_0x1376a2[_0x58abf4(0xf1)](_0x495de4[_0x58abf4(0x115)](_0x1ed768[_0x58abf4(0xe9)],_0x3de758['yWaDo'],_0x5de259));else _0x34d7a6[_0x58abf4(0xf1)](_0x599f28['modifyBrowserStackCaps'](_0x5bc1c6[_0x58abf4(0xe9)],_0x3de758[_0x58abf4(0xff)],_0x5de259));}):_0x179f38[_0x10ef11(0xe2)](_0x336339=>{const _0x361b40=_0x10ef11;if(_0x3de758[_0x361b40(0xf5)](_0x3de758[_0x361b40(0xe1)],_0x3de758[_0x361b40(0x100)])){_0x26969b={'server':constants['hubUrl'],'proxySettings':_0x19e569['config'][_0x361b40(0x10a)],'platform':helper[_0x361b40(0x114)](_0x336339)};const _0x6ec27a={'capability':_0x336339,..._0x26969b};_0x6ec27a['file']=_0x35d87e,_0x6ec27a[_0x361b40(0xef)]=_0x432760;const _0x562835={};_0x562835[_0x361b40(0x112)]=_0x6ec27a,_0x26b38e=_0x562835,_0x2a006b[_0x361b40(0xf1)](_0x26b38e);}else{_0x208f62={'server':_0x302a45[_0x361b40(0xfb)],'proxySettings':_0x43d97e[_0x361b40(0xe9)]['proxySettings'],'platform':_0x4ae990[_0x361b40(0x114)](_0x328701)};const _0x1f5459={'capability':_0x511de1,..._0x2ed02d};_0x1f5459[_0x361b40(0xe3)]=_0x35ed0e,_0x1f5459[_0x361b40(0xef)]=_0x51848d;const _0x56aa40={};_0x56aa40[_0x361b40(0x112)]=_0x1f5459,_0x20d846=_0x56aa40,_0x5af925[_0x361b40(0xf1)](_0x468b55);}});else{if(_0x3de758[_0x10ef11(0x119)](_0x3de758['qMapK'],_0x3de758[_0x10ef11(0xec)]))_0x14014d[_0x10ef11(0xe2)](_0x387184=>{const _0x2d4943=_0x10ef11;_0x30bfb4={'server':_0x16e364['hubUrl'],'proxySettings':_0x5e6ed9['config'][_0x2d4943(0x10a)],'platform':_0x8eb0eb[_0x2d4943(0x114)](_0x387184)};const _0x4c647d={'capability':_0x387184,..._0x12ba55};_0x4c647d['file']=_0x475d30,_0x4c647d['args']=_0x11b28c;const _0x29240d={};_0x29240d['configuration']=_0x4c647d,_0x57d5ad=_0x29240d,_0x2962c3['push'](_0x6f83cd);});else{let _0x56eff6;if(_0x526db1)_0x56eff6=helper[_0x10ef11(0x115)](_0x19e569[_0x10ef11(0xe9)],_0x3de758[_0x10ef11(0xff)],0x0);else _0x56eff6=helper[_0x10ef11(0x111)](_0x19e569[_0x10ef11(0xe9)],_0x3de758['yWaDo'],0x0);const _0x18a359={};_0x18a359[_0x10ef11(0xe7)]=constants[_0x10ef11(0xfb)],_0x18a359['proxySettings']=_0x19e569[_0x10ef11(0xe9)][_0x10ef11(0x10a)],_0x26969b=_0x18a359;const _0x172b16={'capability':_0x56eff6,..._0x26969b};_0x172b16[_0x10ef11(0xe3)]=_0x35d87e,_0x172b16[_0x10ef11(0xef)]=_0x432760;const _0x37ee54={};_0x37ee54[_0x10ef11(0x112)]=_0x172b16,_0x26b38e=_0x37ee54,_0x2a006b[_0x10ef11(0xf1)](_0x26b38e);}}const _0x58ce2f=_0x3de758[_0x10ef11(0xfe)](_0x19e569[_0x10ef11(0xe9)]['platforms'][_0x10ef11(0x102)]||0x1,_0x19e569[_0x10ef11(0xe9)][_0x10ef11(0x101)]);_0x3de758[_0x10ef11(0x10d)](parallelVanillaRun,_0x2a006b,_0x58ce2f)['then'](_0xe81d0b=>{})[_0x10ef11(0x109)](async()=>{await helper['finalExecution'](_0x19e569);});}module[a36_0x2d943b(0x11a)]=run;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function a37_0x21f8(_0x282509,_0x308c6b){const _0x5a19f8=a37_0x5a19();return a37_0x21f8=function(_0x21f8d5,_0x22916f){_0x21f8d5=_0x21f8d5-0x115;let _0x31b1f1=_0x5a19f8[_0x21f8d5];return _0x31b1f1;},a37_0x21f8(_0x282509,_0x308c6b);}function a37_0x5a19(){const _0x2c9abf=['util','wxOrM','ifVcN','cliConfig','startLocalBinarySync','AQHCW','envConfig','Error\x20occured\x20while\x20stopping\x20local\x20binary','dXFxO','8QLyXis','eykxd','KVzTt','nAFNH','dxtfD','lCgmj','4579694JwlVsw','4580620ERYUQY','localOptions','constructor','getUserName','WYNCl','DEmsq','eXlUn','jguyT','parallelsPerPlatform','UFnOz','sXZYb','RurMA','Error\x20in\x20Fire\x20SDKTestAttempted.\x20Stacktrace:\x20','WvcDb','getConfigPath','hvNwc','YURig','getAccessKey','jNRSW','getFinalCaps','getPackageVersion','setLogLevel','unhandledErrors','JyNIK','ZEcXS','VlJxQ','vsTsA','length','bpAhs','YmlEU','mzWrL','unhandledRejection','36DOzXGt','3057980RYjfMr','QEGFT','setProxySettings','bBPYQ','MXOAq','hPysz','UNEDV','./helper','generateLocalIdentifier','format','HYUSn','localIdentifier','Few\x20SDK\x20features\x20were\x20not\x20activated\x20as\x20platforms\x20object\x20was\x20not\x20defined','userName\x20or\x20accessKey\x20is\x20not\x20defined','UHkJB','framework','FXICo','Tmohv','toString','./logger','BoPJQ','browserStackLocalOptions','LUTug','pIwNJ','sOdDb','VEqKs','push','Local\x20binary\x20stopped','CTRBQ','tCrSF','SDKTestAttempted','YzaWY','bwPrA','TjilZ','2996658sMWFfB','OLffl','selenium-webdriver','stopLocalBinary','20312eZwNUy','jHjyq','46UPIczM','handleExceptions','GXlos','dMCdL','isBrowserstackInfra','qxcVJ','error','message','env','setupKeepAlive','../hubAllocationMethods','dMBSD','315rRdJXq','fireFunnelTestEvent','YUSOB','LrgOr','isRunning','info','iHEIO','jkNqR','yypYB','isUndefined','setupBrowserstackLocal','config','KBnFn','setEnvCaps','FRAMEWORK','HEvuF','gQUDf','default','platforms','xqUgu','TQcDS','3920srBplG','browserstackLocal','hyNKE','ZuEvR','useW3C','qFENI','beforeExit','sanitizeCaps','stopBrowserstackLocal','eYqcz','DVxim','fuFtj','parallelsPerPlatform\x20was\x20ignored\x20as\x20platforms\x20object\x20was\x20not\x20defined','AkwYa','obunY','JsHLu','SIGINT','warn','wjMMQ','5488380bHGBXk','YQMMA','BVNbi','Avxku','nABHU','SRixO','BQccw','OLtFh','debug','lmSwA','./setKeepAlive','readConfig'];a37_0x5a19=function(){return _0x2c9abf;};return a37_0x5a19();}const a37_0xc6aea7=a37_0x21f8;(function(_0x357c98,_0x33ddcf){const _0x588942=a37_0x21f8,_0x4d379e=_0x357c98();while(!![]){try{const _0x174e2e=-parseInt(_0x588942(0x15a))/0x1*(-parseInt(_0x588942(0x15c))/0x2)+parseInt(_0x588942(0x156))/0x3+-parseInt(_0x588942(0x17d))/0x4*(parseInt(_0x588942(0x168))/0x5)+-parseInt(_0x588942(0x190))/0x6+-parseInt(_0x588942(0x1ab))/0x7*(parseInt(_0x588942(0x1a5))/0x8)+parseInt(_0x588942(0x133))/0x9*(parseInt(_0x588942(0x134))/0xa)+-parseInt(_0x588942(0x1ac))/0xb;if(_0x174e2e===_0x33ddcf)break;else _0x4d379e['push'](_0x4d379e['shift']());}catch(_0x12a3e5){_0x4d379e['push'](_0x4d379e['shift']());}}}(a37_0x5a19,0x9cc4a));const util=require(a37_0xc6aea7(0x19c)),logger=require(a37_0xc6aea7(0x147))['winstonLogger'],helper=require(a37_0xc6aea7(0x13b)),hubAllocator=require(a37_0xc6aea7(0x166));class BrowserStackSetup{constructor(_0x507441,_0x9218d){const _0x4eb1a7=a37_0xc6aea7,_0x40fd7b={'sOdDb':function(_0x7a6f4d,_0x277b65){return _0x7a6f4d<_0x277b65;},'pIwNJ':function(_0x2ca873,_0x1f5c52){return _0x2ca873(_0x1f5c52);},'kuCKB':_0x4eb1a7(0x158),'MXOAq':function(_0xd5c0a1,_0x2b6a6d){return _0xd5c0a1>=_0x2b6a6d;},'YAtMI':'./setKeepAlive','jHjyq':_0x4eb1a7(0x189),'NhRLZ':_0x4eb1a7(0x1a3),'FXICo':_0x4eb1a7(0x132),'Tmohv':'uncaughtException','ifVcN':_0x4eb1a7(0x152),'RgJzF':function(_0x496120,_0x1117f1){return _0x496120===_0x1117f1;},'XNidV':'No\x20config\x20provided.','qFENI':function(_0x334342,_0x122042){return _0x334342!==_0x122042;},'WAxBl':'uwPWo','pGCYz':'oceUP','ZuEvR':function(_0x39ea16,_0x54439d){return _0x39ea16!==_0x54439d;},'sXZYb':_0x4eb1a7(0x16e),'vsTsA':function(_0x35ec05,_0x3531ad){return _0x35ec05===_0x3531ad;},'JsHLu':'maGRG','eykxd':function(_0x150b94,_0x464a98){return _0x150b94===_0x464a98;},'jkNqR':_0x4eb1a7(0x161),'RurMA':function(_0x32c022,_0x5b0ac1){return _0x32c022<_0x5b0ac1;},'yypYB':function(_0x501c07,_0x3531c7){return _0x501c07(_0x3531c7);},'HEvuF':function(_0x5039f0,_0x73ad19){return _0x5039f0!==_0x73ad19;},'jNRSW':_0x4eb1a7(0x193),'UJcnA':function(_0x36816d,_0x3e2867){return _0x36816d(_0x3e2867);},'eYqcz':'RbaCD','TjilZ':_0x4eb1a7(0x1a7),'QEGFT':_0x4eb1a7(0x137),'TQcDS':_0x4eb1a7(0x187),'wRasm':_0x4eb1a7(0x12b),'Mfkxt':_0x4eb1a7(0x140),'jguyT':function(_0xa27afb,_0x28c003){return _0xa27afb===_0x28c003;},'DEmsq':_0x4eb1a7(0x18a),'HYUSn':_0x4eb1a7(0x199),'YURig':_0x4eb1a7(0x1a8),'pJITy':_0x4eb1a7(0x141),'dXFxO':_0x4eb1a7(0x17b),'hLQSt':_0x4eb1a7(0x197),'nABHU':function(_0x523255,_0x60612b){return _0x523255===_0x60612b;},'UrnUa':function(_0x399b72,_0x1fe659){return _0x399b72===_0x1fe659;},'LUTug':_0x4eb1a7(0x1a1),'lCgmj':'CYqWH','KBnFn':_0x4eb1a7(0x167),'YQMMA':_0x4eb1a7(0x154),'gQUDf':'SmuGZ'};this[_0x4eb1a7(0x129)]=[],this[_0x4eb1a7(0x19f)]=helper['setCLICaps'](_0x507441),this[_0x4eb1a7(0x1a2)]=helper[_0x4eb1a7(0x175)](),this['browserstackLocal']=null,this[_0x4eb1a7(0x173)]=helper[_0x4eb1a7(0x19b)](helper[_0x4eb1a7(0x121)](_0x507441)),global[_0x4eb1a7(0x173)]=this['config'],global['framework']=_0x9218d,helper[_0x4eb1a7(0x184)](this['config']),this[_0x4eb1a7(0x143)]=_0x9218d;if(helper[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)]))throw new Error(_0x40fd7b['XNidV']);if(this['config'][_0x4eb1a7(0x162)])throw new Error(this['config'][_0x4eb1a7(0x162)]);this[_0x4eb1a7(0x15d)]();if(!helper[_0x4eb1a7(0x160)]()){if(_0x40fd7b['qFENI'](_0x40fd7b['WAxBl'],_0x40fd7b['pGCYz'])){try{_0x40fd7b['ZuEvR'](_0x40fd7b[_0x4eb1a7(0x11d)],_0x40fd7b[_0x4eb1a7(0x11d)])?(_0x40fd7b[_0x4eb1a7(0x14c)](_0x40fd7b[_0x4eb1a7(0x14b)](_0xa1f9b6,_0x5e72f5[_0x4eb1a7(0x127)](_0x40fd7b['kuCKB'])),0x3)&&(this[_0x4eb1a7(0x173)][_0x4eb1a7(0x181)]=![]),_0x40fd7b[_0x4eb1a7(0x138)](_0x40fd7b[_0x4eb1a7(0x14b)](_0x30f0f8,_0x508ee1[_0x4eb1a7(0x127)](_0x40fd7b['kuCKB'])),4.5)&&(this[_0x4eb1a7(0x173)]['useW3C']=!![])):(process[_0x4eb1a7(0x164)][_0x4eb1a7(0x176)]=_0x9218d,helper['fireFunnelTestEvent'](_0x40fd7b[_0x4eb1a7(0x19e)],{},this[_0x4eb1a7(0x173)],this[_0x4eb1a7(0x143)]));}catch(_0x31c2a0){_0x40fd7b[_0x4eb1a7(0x12d)](_0x40fd7b[_0x4eb1a7(0x18c)],_0x40fd7b['JsHLu'])?logger[_0x4eb1a7(0x198)](_0x4eb1a7(0x11f)+_0x31c2a0):_0x3449d8[_0x4eb1a7(0x198)]('Error\x20in\x20Fire\x20SDKTestAttempted.\x20Stacktrace:\x20'+_0x3c451b);}return;}else this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)][_0x4eb1a7(0x13f)]=_0x3470b8[_0x4eb1a7(0x13c)]();}helper[_0x4eb1a7(0x126)](this[_0x4eb1a7(0x173)],this['cliConfig'],this[_0x4eb1a7(0x1a2)]);helper['requireSeleniumWebdriverCheck'](_0x9218d)&&(_0x40fd7b[_0x4eb1a7(0x1a6)](_0x40fd7b[_0x4eb1a7(0x16f)],_0x40fd7b[_0x4eb1a7(0x16f)])?(_0x40fd7b[_0x4eb1a7(0x11e)](_0x40fd7b[_0x4eb1a7(0x170)](parseInt,helper['getPackageVersion'](_0x40fd7b['kuCKB'])),0x3)&&(_0x40fd7b[_0x4eb1a7(0x177)](_0x40fd7b[_0x4eb1a7(0x125)],_0x40fd7b[_0x4eb1a7(0x125)])?this['config'][_0x4eb1a7(0x181)]=!![]:this[_0x4eb1a7(0x173)]['useW3C']=![]),_0x40fd7b[_0x4eb1a7(0x138)](_0x40fd7b['UJcnA'](parseInt,helper[_0x4eb1a7(0x127)](_0x40fd7b['kuCKB'])),4.5)&&(_0x40fd7b[_0x4eb1a7(0x180)](_0x40fd7b['eYqcz'],_0x40fd7b[_0x4eb1a7(0x186)])?_0x40fd7b['pIwNJ'](_0xd6c47e,_0x40fd7b['YAtMI'])():this['config']['useW3C']=!![])):_0x398753['debug'](_0x4eb1a7(0x11f)+_0xf00bfb));if(helper[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)][_0x4eb1a7(0x17a)])||helper[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)][_0x4eb1a7(0x17a)][_0x4eb1a7(0x12e)])){if(_0x40fd7b[_0x4eb1a7(0x177)](_0x40fd7b[_0x4eb1a7(0x155)],_0x40fd7b[_0x4eb1a7(0x135)]))helper[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)][_0x4eb1a7(0x11b)])?_0x40fd7b[_0x4eb1a7(0x1a6)](_0x40fd7b[_0x4eb1a7(0x17c)],_0x40fd7b['wRasm'])?_0x1f4860[_0x4eb1a7(0x18e)](_0x40fd7b[_0x4eb1a7(0x15b)]):logger['info'](_0x40fd7b['Mfkxt']):_0x40fd7b[_0x4eb1a7(0x11a)](_0x40fd7b[_0x4eb1a7(0x118)],_0x40fd7b[_0x4eb1a7(0x13e)])?_0x4a0a35['error'](_0x40fd7b['NhRLZ'],_0x2f788a[_0x4eb1a7(0x163)]):logger[_0x4eb1a7(0x18e)](_0x40fd7b['jHjyq']),this[_0x4eb1a7(0x173)]['platforms']=[];else{_0x40415c[_0x4eb1a7(0x198)](_0x4cfa65);throw new _0xeed158(_0x25e7c8[_0x4eb1a7(0x146)]());}}!this[_0x4eb1a7(0x173)]['browserStackLocalOptions']&&(this['config']['browserStackLocalOptions']=this[_0x4eb1a7(0x173)][_0x4eb1a7(0x1ad)]||{}),!this['config']['testContextOptions']&&(this[_0x4eb1a7(0x173)]['testContextOptions']={});if(helper[_0x4eb1a7(0x171)](helper[_0x4eb1a7(0x116)](this[_0x4eb1a7(0x173)]))||helper['isUndefined'](helper[_0x4eb1a7(0x124)](this['config']))){if(_0x40fd7b['eykxd'](_0x40fd7b[_0x4eb1a7(0x123)],_0x40fd7b['YURig']))throw new Error(_0x40fd7b['pJITy']);else this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)]={'localIdentifier':_0x1024c9[_0x4eb1a7(0x13c)]()};}if(helper['getLocalConfig'](this[_0x4eb1a7(0x173)])&&helper[_0x4eb1a7(0x171)](helper['getLocalIdentifier'](this[_0x4eb1a7(0x173)]))){if(_0x40fd7b[_0x4eb1a7(0x180)](_0x40fd7b[_0x4eb1a7(0x1a4)],_0x40fd7b['hLQSt'])){if(!helper[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)]['browserStackLocalOptions'])&&_0x40fd7b[_0x4eb1a7(0x194)](this['config'][_0x4eb1a7(0x149)][_0x4eb1a7(0x115)],Object))_0x40fd7b['UrnUa'](_0x40fd7b[_0x4eb1a7(0x14a)],_0x40fd7b[_0x4eb1a7(0x1aa)])?(_0xaebe5e['error'](_0x2bd62a[_0x4eb1a7(0x163)]),_0x2e9d74[_0x4eb1a7(0x198)](_0x30fdc5[_0x4eb1a7(0x13d)](_0x564363)),this[_0x4eb1a7(0x129)][_0x4eb1a7(0x14e)](_0x370084[_0x4eb1a7(0x13d)]('%j',_0x1ad84c))):this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)][_0x4eb1a7(0x13f)]=helper[_0x4eb1a7(0x13c)]();else{if(_0x40fd7b[_0x4eb1a7(0x182)](_0x40fd7b[_0x4eb1a7(0x174)],_0x40fd7b[_0x4eb1a7(0x174)])){const _0x1a595a=_0x264338=>{const _0x3936a0=_0x4eb1a7;_0x42db76['error'](_0x264338[_0x3936a0(0x163)]),_0x307605[_0x3936a0(0x198)](_0x35e46f[_0x3936a0(0x13d)](_0x264338)),this[_0x3936a0(0x129)][_0x3936a0(0x14e)](_0x379c99['format']('%j',_0x264338));};_0x59cb25['on'](_0x40fd7b[_0x4eb1a7(0x144)],_0x1a595a),_0x14971c['on'](_0x40fd7b[_0x4eb1a7(0x145)],_0x1a595a);}else this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)]={'localIdentifier':helper[_0x4eb1a7(0x13c)]()};}}else _0x1b32f9[_0x4eb1a7(0x164)][_0x4eb1a7(0x176)]=_0x5700d4['_'][0x0],_0x1da24c[_0x4eb1a7(0x169)](_0x40fd7b[_0x4eb1a7(0x19e)],{},this['config'],this[_0x4eb1a7(0x143)]);}helper[_0x4eb1a7(0x128)](this[_0x4eb1a7(0x173)],this['cliConfig'],this[_0x4eb1a7(0x1a2)]),helper[_0x4eb1a7(0x136)](this[_0x4eb1a7(0x173)]);try{_0x40fd7b[_0x4eb1a7(0x11a)](_0x40fd7b['YQMMA'],_0x40fd7b[_0x4eb1a7(0x191)])?(process['env'][_0x4eb1a7(0x176)]=_0x507441['_'][0x0],helper[_0x4eb1a7(0x169)](_0x40fd7b[_0x4eb1a7(0x19e)],{},this[_0x4eb1a7(0x173)],this[_0x4eb1a7(0x143)])):!_0x1015e7[_0x4eb1a7(0x171)](this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)])&&_0x40fd7b['RgJzF'](this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)][_0x4eb1a7(0x115)],_0x5ed8c0)?this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)]['localIdentifier']=_0x56efb0[_0x4eb1a7(0x13c)]():this[_0x4eb1a7(0x173)][_0x4eb1a7(0x149)]={'localIdentifier':_0x23bb3d['generateLocalIdentifier']()};}catch(_0x218554){_0x40fd7b['qFENI'](_0x40fd7b[_0x4eb1a7(0x178)],_0x40fd7b[_0x4eb1a7(0x178)])?(_0x3b1b6c[_0x4eb1a7(0x164)][_0x4eb1a7(0x176)]=_0x56cf41,_0x2ebea1[_0x4eb1a7(0x169)](_0x40fd7b[_0x4eb1a7(0x19e)],{},this[_0x4eb1a7(0x173)],this[_0x4eb1a7(0x143)])):logger[_0x4eb1a7(0x198)](_0x4eb1a7(0x11f)+_0x218554);}this[_0x4eb1a7(0x172)](),this[_0x4eb1a7(0x165)]();}[a37_0xc6aea7(0x172)](){const _0x589265=a37_0xc6aea7,_0x30a1ed={};_0x30a1ed['paEnY']=_0x589265(0x140),_0x30a1ed['LrgOr']=_0x589265(0x189),_0x30a1ed['WYNCl']=function(_0x456c2d,_0x2a3f48){return _0x456c2d!==_0x2a3f48;},_0x30a1ed[_0x589265(0x18b)]=_0x589265(0x15e),_0x30a1ed['JyNIK']=_0x589265(0x14d),_0x30a1ed[_0x589265(0x1a9)]=function(_0x2b395c,_0x2551b2){return _0x2b395c==_0x2551b2;},_0x30a1ed['ZcsnR']=_0x589265(0x152),_0x30a1ed['oiXyD']=function(_0x366264,_0x13440b){return _0x366264==_0x13440b;},_0x30a1ed[_0x589265(0x157)]=function(_0x4a550e,_0x1a58ba){return _0x4a550e===_0x1a58ba;},_0x30a1ed['hvNwc']='XSsSV',_0x30a1ed[_0x589265(0x12c)]=_0x589265(0x131),_0x30a1ed[_0x589265(0x119)]=_0x589265(0x11c),_0x30a1ed['WvcDb']=_0x589265(0x150),_0x30a1ed[_0x589265(0x153)]='Local\x20binary\x20started\x20successfully',_0x30a1ed['UNEDV']=_0x589265(0x183),_0x30a1ed[_0x589265(0x15f)]=_0x589265(0x18d),_0x30a1ed['QUYZI']='SIGTERM',_0x30a1ed[_0x589265(0x19d)]=_0x589265(0x148),_0x30a1ed[_0x589265(0x18f)]=_0x589265(0x12f);const _0x4a4aa4=_0x30a1ed;if(_0x4a4aa4['oiXyD'](this['config'][_0x589265(0x17e)],!![])&&(!this[_0x589265(0x17e)]||!this[_0x589265(0x17e)][_0x589265(0x16c)]())){if(_0x4a4aa4['OLffl'](_0x4a4aa4[_0x589265(0x122)],_0x4a4aa4[_0x589265(0x12c)]))this['config'][_0x589265(0x181)]=![];else try{if(_0x4a4aa4[_0x589265(0x157)](_0x4a4aa4[_0x589265(0x119)],_0x4a4aa4[_0x589265(0x120)]))_0x11db41[_0x589265(0x171)](this[_0x589265(0x173)][_0x589265(0x11b)])?_0x3f2a48[_0x589265(0x16d)](_0x4a4aa4['paEnY']):_0x265cdd[_0x589265(0x18e)](_0x4a4aa4[_0x589265(0x16b)]),this[_0x589265(0x173)][_0x589265(0x17a)]=[];else{this['browserstackLocal']=helper[_0x589265(0x1a0)](this[_0x589265(0x173)]),logger[_0x589265(0x16d)](_0x4a4aa4['YzaWY']);let _0x1c364c=0x0;const _0x57a69e=async()=>{const _0x5d7138=_0x589265;_0x4a4aa4[_0x5d7138(0x117)](_0x4a4aa4[_0x5d7138(0x18b)],_0x4a4aa4[_0x5d7138(0x12a)])?(_0x1c364c++,_0x4a4aa4[_0x5d7138(0x1a9)](_0x1c364c,0x1)&&await this[_0x5d7138(0x185)]()):_0x44df12[_0x5d7138(0x16d)](_0x4a4aa4['paEnY']);};process['on'](_0x4a4aa4[_0x589265(0x13a)],_0x57a69e),process['on'](_0x4a4aa4[_0x589265(0x15f)],_0x57a69e),process['on'](_0x4a4aa4['QUYZI'],_0x57a69e);}}catch(_0xbf3a9c){if(_0x4a4aa4[_0x589265(0x157)](_0x4a4aa4[_0x589265(0x19d)],_0x4a4aa4[_0x589265(0x18f)])){try{_0x22209d[_0x589265(0x164)][_0x589265(0x176)]=_0x25e86e,_0x858e9[_0x589265(0x169)](_0x4a4aa4['ZcsnR'],{},this[_0x589265(0x173)],this[_0x589265(0x143)]);}catch(_0x416791){_0x219a4c[_0x589265(0x198)](_0x589265(0x11f)+_0x416791);}return;}else{logger[_0x589265(0x198)](_0xbf3a9c);throw new Error(_0xbf3a9c['toString']());}}}}async[a37_0xc6aea7(0x185)](){const _0x3bc8a8=a37_0xc6aea7,_0x1a7be8={};_0x1a7be8[_0x3bc8a8(0x139)]=_0x3bc8a8(0x141),_0x1a7be8[_0x3bc8a8(0x130)]=function(_0x5a0679,_0x857519){return _0x5a0679===_0x857519;},_0x1a7be8[_0x3bc8a8(0x195)]=_0x3bc8a8(0x17f),_0x1a7be8[_0x3bc8a8(0x142)]='UtFRQ',_0x1a7be8[_0x3bc8a8(0x196)]=_0x3bc8a8(0x14f),_0x1a7be8[_0x3bc8a8(0x151)]=_0x3bc8a8(0x1a3);const _0x5ead92=_0x1a7be8;if(this['browserstackLocal']&&this[_0x3bc8a8(0x17e)]['isRunning']())try{if(_0x5ead92[_0x3bc8a8(0x130)](_0x5ead92[_0x3bc8a8(0x195)],_0x5ead92[_0x3bc8a8(0x142)]))throw new _0x5aa2a4(_0x5ead92[_0x3bc8a8(0x139)]);else await helper[_0x3bc8a8(0x159)](this['browserstackLocal']),logger[_0x3bc8a8(0x16d)](_0x5ead92[_0x3bc8a8(0x196)]);}catch(_0x2e8a42){logger[_0x3bc8a8(0x162)](_0x5ead92[_0x3bc8a8(0x151)],_0x2e8a42[_0x3bc8a8(0x163)]);}}async['setUpHubUrl'](){await hubAllocator['allocateHub'](this['config']);}[a37_0xc6aea7(0x165)](){const _0x35872f=a37_0xc6aea7,_0x100905={'Strjb':function(_0x1de949,_0x65aff4){return _0x1de949(_0x65aff4);},'YUSOB':_0x35872f(0x19a)};_0x100905['Strjb'](require,_0x100905[_0x35872f(0x16a)])();}[a37_0xc6aea7(0x15d)](){const _0xad4ac=a37_0xc6aea7,_0x34c47b={};_0x34c47b['fuFtj']=_0xad4ac(0x132),_0x34c47b[_0xad4ac(0x192)]='uncaughtException';const _0x4eed70=_0x34c47b,_0x2110b1=_0x3b5190=>{const _0x5769bd=_0xad4ac;logger[_0x5769bd(0x162)](_0x3b5190[_0x5769bd(0x163)]),logger[_0x5769bd(0x198)](util[_0x5769bd(0x13d)](_0x3b5190)),this['unhandledErrors'][_0x5769bd(0x14e)](util['format']('%j',_0x3b5190));};process['on'](_0x4eed70[_0xad4ac(0x188)],_0x2110b1),process['on'](_0x4eed70[_0xad4ac(0x192)],_0x2110b1);}}exports[a37_0xc6aea7(0x179)]=BrowserStackSetup;
|
|
1
|
+
function a37_0x7a23(_0x5abe94,_0x38f977){const _0x1d1ee0=a37_0x1d1e();return a37_0x7a23=function(_0x7a2367,_0x5bf78c){_0x7a2367=_0x7a2367-0x81;let _0x1ac4f0=_0x1d1ee0[_0x7a2367];return _0x1ac4f0;},a37_0x7a23(_0x5abe94,_0x38f977);}const a37_0xca879d=a37_0x7a23;(function(_0x90fc98,_0x10973d){const _0x5a17a3=a37_0x7a23,_0x2b7b08=_0x90fc98();while(!![]){try{const _0x214c7b=parseInt(_0x5a17a3(0xa2))/0x1+parseInt(_0x5a17a3(0xba))/0x2+parseInt(_0x5a17a3(0xd8))/0x3*(-parseInt(_0x5a17a3(0x109))/0x4)+-parseInt(_0x5a17a3(0x9c))/0x5*(parseInt(_0x5a17a3(0x110))/0x6)+parseInt(_0x5a17a3(0xbc))/0x7*(parseInt(_0x5a17a3(0xb9))/0x8)+parseInt(_0x5a17a3(0xda))/0x9*(parseInt(_0x5a17a3(0xde))/0xa)+parseInt(_0x5a17a3(0x101))/0xb*(-parseInt(_0x5a17a3(0xfb))/0xc);if(_0x214c7b===_0x10973d)break;else _0x2b7b08['push'](_0x2b7b08['shift']());}catch(_0x63b4b1){_0x2b7b08['push'](_0x2b7b08['shift']());}}}(a37_0x1d1e,0x8cb29));function a37_0x1d1e(){const _0x4e6608=['MWWYL','tTdLZ','bzZXn','SIGINT','XorFm','VtEzS','CRaHi','isUndefined','QWSBD','PXPqn','length','saugx','testContextOptions','5KfwhUu','config','./setKeepAlive','erWaW','format','Local\x20binary\x20stopped','503003oDZZMR','HHxfO','CIPkR','YdFra','KnbIp','KxoaL','NMieL','setLogLevel','QfMgv','YMuJy','sanitizeCaps','WPuKT','nBhNc','localOptions','aboMJ','MhBfr','QBsXQ','VeGUd','qEFQD','dUwVx','JpQHp','Few\x20SDK\x20features\x20were\x20not\x20activated\x20as\x20platforms\x20object\x20was\x20not\x20defined','wwdzL','136SZcLuj','575942jAMesi','platforms','20979iLSHdi','rAoNB','CFmii','WXywY','push','lXDIa','qUpLW','lpCcE','info','PAqbG','constructor','ZrGZd','./logger','uygHA','Error\x20occured\x20while\x20stopping\x20local\x20binary','ISZNU','cCaHg','JXmbm','requireSeleniumWebdriverCheck','onEOb','parallelsPerPlatform','generateLocalIdentifier','getUserName','getAccessKey','FRAMEWORK','SghbN','drtTO','uncaughtException','1125078ASXuYi','debug','9EtJjzf','Fpnhk','stopBrowserstackLocal','qACkW','7632210xSiLmu','iFtnH','parallelsPerPlatform\x20was\x20ignored\x20as\x20platforms\x20object\x20was\x20not\x20defined','VZEPQ','selenium-webdriver','TZtkl','tmDdp','gKvZc','winstonLogger','readConfig','UBCts','localIdentifier','iEYko','unhandledRejection','Modto','UzgbD','SDKTestAttempted','./helper','error','rDjCk','kCtvj','env','stopLocalBinary','Error\x20in\x20Fire\x20SDKTestAttempted.\x20Stacktrace:\x20','rdBvL','qGRYh','allocateHub','browserstackLocal','AouEi','144iLnCAY','AnagC','tfgOz','message','LSTjz','isBrowserstackInfra','424512tBuGtM','jEVGq','useW3C','BawHc','fireFunnelTestEvent','uaFNx','browserStackLocalOptions','startLocalBinarySync','4IBhChu','framework','getFinalCaps','QXVlp','QglpJ','ZwZxj','pPSrH','1144302BvvfNm','getPackageVersion','wwdhT','../hubAllocationMethods','cliConfig','xkmrs','kjRSd','FyPJd','handleExceptions','ZWdkS','uCKyZ','No\x20config\x20provided.','XSXzN','iVRrn','tkqQO','beforeExit','VRqCG','setupBrowserstackLocal','XJbYd','envConfig','userName\x20or\x20accessKey\x20is\x20not\x20defined','dwGso','onJsP','iXEnZ','gZRDO','isRunning','ZistO','LETCe','unhandledErrors','util','CxyTs','setProxySettings','FCsju','XzwCM','EzOMr','toString','Local\x20binary\x20started\x20successfully'];a37_0x1d1e=function(){return _0x4e6608;};return a37_0x1d1e();}const util=require(a37_0xca879d(0x87)),logger=require(a37_0xca879d(0xc8))[a37_0xca879d(0xe6)],helper=require(a37_0xca879d(0xef)),hubAllocator=require(a37_0xca879d(0x113));class BrowserStackSetup{constructor(_0x320028,_0x2134d0){const _0x539110=a37_0xca879d,_0x27b91b={'qUpLW':_0x539110(0xb7),'pPSrH':_0x539110(0xe0),'PaQBt':function(_0x9cabf,_0x55efec){return _0x9cabf<_0x55efec;},'uaFNx':function(_0x2a35d2,_0x4d4b2d){return _0x2a35d2(_0x4d4b2d);},'gZRDO':_0x539110(0xe2),'kCtvj':function(_0x123e90,_0x34dabe){return _0x123e90>=_0x34dabe;},'bzZXn':_0x539110(0xeb),'NMieL':_0x539110(0xd7),'FCsju':_0x539110(0x124),'JXmbm':_0x539110(0xca),'KnbIp':function(_0x55dd05,_0x230633){return _0x55dd05===_0x230633;},'Modto':_0x539110(0x9e),'BawHc':_0x539110(0xee),'uygHA':_0x539110(0x11b),'MhBfr':function(_0x344d87,_0x2924cf){return _0x344d87!==_0x2924cf;},'VZEPQ':_0x539110(0xbe),'QXVlp':_0x539110(0x10d),'iVRrn':function(_0x4ef8f8,_0x57b44f){return _0x4ef8f8!==_0x57b44f;},'wwdhT':_0x539110(0xa3),'rdBvL':function(_0x586f82,_0x23d43b){return _0x586f82===_0x23d43b;},'tkqQO':'hmjgL','ZWdkS':_0x539110(0x125),'VeGUd':_0x539110(0xb5),'gKvZc':function(_0x4f4c1e,_0x45fb5d){return _0x4f4c1e<_0x45fb5d;},'saugx':'Qlxdh','CxyTs':function(_0xddbb1b,_0x224f5d){return _0xddbb1b>=_0x224f5d;},'PAqbG':function(_0x6e7c9,_0x50c47f){return _0x6e7c9(_0x50c47f);},'xkmrs':_0x539110(0xdb),'tTdLZ':_0x539110(0x9f),'PXPqn':_0x539110(0x11a),'qACkW':_0x539110(0xad),'CRaHi':function(_0x1f495e,_0x28298b){return _0x1f495e===_0x28298b;},'VtEzS':_0x539110(0x81),'yKkwb':_0x539110(0xb0),'UzgbD':function(_0x3dc782,_0x276d4e){return _0x3dc782===_0x276d4e;},'onJsP':_0x539110(0xf1),'ZKtKS':_0x539110(0xd5),'ZrGZd':_0x539110(0x84),'XJbYd':'GDunl','YdFra':_0x539110(0xcf),'gQowk':function(_0x579dfb,_0x481de1){return _0x579dfb!==_0x481de1;},'TZtkl':_0x539110(0xfc),'qGRYh':_0x539110(0xab),'WXywY':'uEkXo','lpCcE':_0x539110(0x120)};this[_0x539110(0x86)]=[],this[_0x539110(0x114)]=helper['setCLICaps'](_0x320028),this[_0x539110(0x123)]=helper['setEnvCaps'](),this[_0x539110(0xf9)]=null,this[_0x539110(0x9d)]=helper[_0x539110(0xe7)](helper['getConfigPath'](_0x320028)),global[_0x539110(0x9d)]=this[_0x539110(0x9d)],global[_0x539110(0x10a)]=_0x2134d0,helper[_0x539110(0xac)](this[_0x539110(0x9d)]),this[_0x539110(0x10a)]=_0x2134d0;if(helper[_0x539110(0x96)](this[_0x539110(0x9d)]))throw new Error(_0x27b91b[_0x539110(0xc9)]);if(this[_0x539110(0x9d)][_0x539110(0xf0)])throw new Error(this[_0x539110(0x9d)]['error']);this['handleExceptions']();if(!helper[_0x539110(0x100)]()){if(_0x27b91b[_0x539110(0xb1)](_0x27b91b[_0x539110(0xe1)],_0x27b91b[_0x539110(0x10c)])){try{_0x27b91b['iVRrn'](_0x27b91b[_0x539110(0x112)],_0x27b91b[_0x539110(0x112)])?(_0x6a5e34[_0x539110(0x96)](this[_0x539110(0x9d)][_0x539110(0xd0)])?_0x5a1195[_0x539110(0xc4)](_0x27b91b['qUpLW']):_0x406b6b['warn'](_0x27b91b[_0x539110(0x10f)]),this[_0x539110(0x9d)][_0x539110(0xbb)]=[]):(process[_0x539110(0xf3)][_0x539110(0xd4)]=_0x2134d0,helper[_0x539110(0x105)](_0x27b91b['BawHc'],{},this[_0x539110(0x9d)],this[_0x539110(0x10a)]));}catch(_0x1f2c8d){_0x27b91b[_0x539110(0xf6)](_0x27b91b[_0x539110(0x11e)],_0x27b91b['tkqQO'])?logger[_0x539110(0xd9)](_0x539110(0xf5)+_0x1f2c8d):(_0x27b91b['PaQBt'](_0x27b91b['uaFNx'](_0x37061a,_0x3f577d[_0x539110(0x111)](_0x27b91b['gZRDO'])),0x3)&&(this['config'][_0x539110(0x103)]=![]),_0x27b91b[_0x539110(0xf2)](_0x27b91b[_0x539110(0x106)](_0x5db52d,_0xff79f1[_0x539110(0x111)](_0x27b91b[_0x539110(0x82)])),4.5)&&(this[_0x539110(0x9d)][_0x539110(0x103)]=!![]));}return;}else{const _0x3e2d2d=_0x57bdb5=>{const _0x40f820=_0x539110;_0x59333a['error'](_0x57bdb5[_0x40f820(0xfe)]),_0x204819[_0x40f820(0xd9)](_0x298266[_0x40f820(0xa0)](_0x57bdb5)),this[_0x40f820(0x86)][_0x40f820(0xc0)](_0x5bc541['format']('%j',_0x57bdb5));};_0x520fca['on'](_0x27b91b[_0x539110(0x91)],_0x3e2d2d),_0x1b3094['on'](_0x27b91b[_0x539110(0xa8)],_0x3e2d2d);}}helper[_0x539110(0x10b)](this['config'],this[_0x539110(0x114)],this[_0x539110(0x123)]);if(helper[_0x539110(0xce)](_0x2134d0)){if(_0x27b91b[_0x539110(0xa6)](_0x27b91b[_0x539110(0x119)],_0x27b91b[_0x539110(0xb3)]))_0x81ef09[_0x539110(0xd9)](_0x539110(0xf5)+_0x5af514);else{if(_0x27b91b[_0x539110(0xe5)](_0x27b91b[_0x539110(0x106)](parseInt,helper[_0x539110(0x111)](_0x27b91b[_0x539110(0x82)])),0x3)){if(_0x27b91b[_0x539110(0xa6)](_0x27b91b[_0x539110(0x9a)],_0x27b91b['saugx']))this[_0x539110(0x9d)][_0x539110(0x103)]=![];else throw new _0x36c222(_0x27b91b[_0x539110(0x8a)]);}_0x27b91b[_0x539110(0x88)](_0x27b91b[_0x539110(0xc5)](parseInt,helper['getPackageVersion'](_0x27b91b[_0x539110(0x82)])),4.5)&&(_0x27b91b[_0x539110(0x11d)](_0x27b91b[_0x539110(0x115)],_0x27b91b[_0x539110(0x115)])?(_0x5b62aa[_0x539110(0xf0)](_0x38ae54[_0x539110(0xfe)]),_0x147470[_0x539110(0xd9)](_0x479ff8['format'](_0x31716c)),this[_0x539110(0x86)][_0x539110(0xc0)](_0xad98d4[_0x539110(0xa0)]('%j',_0x2236c1))):this[_0x539110(0x9d)][_0x539110(0x103)]=!![]);}}if(helper[_0x539110(0x96)](this[_0x539110(0x9d)][_0x539110(0xbb)])||helper[_0x539110(0x96)](this[_0x539110(0x9d)]['platforms'][_0x539110(0x99)])){if(_0x27b91b[_0x539110(0x11d)](_0x27b91b[_0x539110(0x90)],_0x27b91b[_0x539110(0x98)]))helper['isUndefined'](this['config'][_0x539110(0xd0)])?_0x27b91b['iVRrn'](_0x27b91b[_0x539110(0xdd)],_0x27b91b[_0x539110(0xdd)])?_0x493f40[_0x539110(0xf0)](_0x27b91b[_0x539110(0xcd)],_0x15c5da[_0x539110(0xfe)]):logger[_0x539110(0xc4)](_0x27b91b[_0x539110(0xc2)]):_0x27b91b['CRaHi'](_0x27b91b[_0x539110(0x94)],_0x27b91b['yKkwb'])?_0x59a379['warn'](_0x27b91b[_0x539110(0x10f)]):logger['warn'](_0x27b91b[_0x539110(0x10f)]),this[_0x539110(0x9d)][_0x539110(0xbb)]=[];else{_0x1bfc7e['debug'](_0x151a99);throw new _0x33d92e(_0x3fe5d5['toString']());}}!this[_0x539110(0x9d)][_0x539110(0x107)]&&(this[_0x539110(0x9d)][_0x539110(0x107)]=this[_0x539110(0x9d)][_0x539110(0xaf)]||{}),!this[_0x539110(0x9d)][_0x539110(0x9b)]&&(this['config'][_0x539110(0x9b)]={});if(helper['isUndefined'](helper[_0x539110(0xd2)](this[_0x539110(0x9d)]))||helper[_0x539110(0x96)](helper[_0x539110(0xd3)](this[_0x539110(0x9d)]))){if(_0x27b91b[_0x539110(0xed)](_0x27b91b[_0x539110(0x126)],_0x27b91b['ZKtKS']))this[_0x539110(0x9d)]['browserStackLocalOptions'][_0x539110(0xe9)]=_0x4f8460['generateLocalIdentifier']();else throw new Error(_0x27b91b[_0x539110(0x8a)]);}helper['getLocalConfig'](this[_0x539110(0x9d)])&&helper[_0x539110(0x96)](helper['getLocalIdentifier'](this[_0x539110(0x9d)]))&&(_0x27b91b['CRaHi'](_0x27b91b[_0x539110(0xc7)],_0x27b91b[_0x539110(0x122)])?!_0x3d2d06[_0x539110(0x96)](this['config'][_0x539110(0x107)])&&_0x27b91b[_0x539110(0xa6)](this['config'][_0x539110(0x107)][_0x539110(0xc6)],_0x27b28e)?this[_0x539110(0x9d)][_0x539110(0x107)][_0x539110(0xe9)]=_0xbf65a1[_0x539110(0xd1)]():this[_0x539110(0x9d)][_0x539110(0x107)]={'localIdentifier':_0x38f692[_0x539110(0xd1)]()}:!helper[_0x539110(0x96)](this['config']['browserStackLocalOptions'])&&_0x27b91b[_0x539110(0x95)](this[_0x539110(0x9d)][_0x539110(0x107)][_0x539110(0xc6)],Object)?_0x27b91b[_0x539110(0xa6)](_0x27b91b[_0x539110(0xa5)],_0x27b91b['YdFra'])?this[_0x539110(0x9d)]['browserStackLocalOptions'][_0x539110(0xe9)]=helper[_0x539110(0xd1)]():_0x27b91b[_0x539110(0x106)](_0x3572e7,_0x27b91b[_0x539110(0xec)])():_0x27b91b['gQowk'](_0x27b91b['TZtkl'],_0x27b91b[_0x539110(0xe3)])?_0xd44f19[_0x539110(0xc4)](_0x27b91b['qUpLW']):this[_0x539110(0x9d)][_0x539110(0x107)]={'localIdentifier':helper['generateLocalIdentifier']()});helper[_0x539110(0xa9)](this[_0x539110(0x9d)],this['cliConfig'],this['envConfig']),helper[_0x539110(0x89)](this[_0x539110(0x9d)]);try{if(_0x27b91b[_0x539110(0xa6)](_0x27b91b['qGRYh'],_0x27b91b[_0x539110(0xf7)]))process[_0x539110(0xf3)][_0x539110(0xd4)]=_0x320028['_'][0x0],helper[_0x539110(0x105)](_0x27b91b['BawHc'],{},this[_0x539110(0x9d)],this[_0x539110(0x10a)]);else{try{_0x3eb249['env'][_0x539110(0xd4)]=_0x5b258e,_0x24c147['fireFunnelTestEvent'](_0x27b91b['BawHc'],{},this[_0x539110(0x9d)],this[_0x539110(0x10a)]);}catch(_0x2b510d){_0x224fc5[_0x539110(0xd9)]('Error\x20in\x20Fire\x20SDKTestAttempted.\x20Stacktrace:\x20'+_0x2b510d);}return;}}catch(_0x1fb5f3){_0x27b91b[_0x539110(0xa6)](_0x27b91b[_0x539110(0xbf)],_0x27b91b[_0x539110(0xc3)])?(_0x112523[_0x539110(0xf3)][_0x539110(0xd4)]=_0x2e78dc,_0x212f9a['fireFunnelTestEvent'](_0x27b91b[_0x539110(0x104)],{},this[_0x539110(0x9d)],this[_0x539110(0x10a)])):logger[_0x539110(0xd9)](_0x539110(0xf5)+_0x1fb5f3);}this[_0x539110(0x121)](),this['setupKeepAlive']();}[a37_0xca879d(0x121)](){const _0x420c0e=a37_0xca879d,_0x3c2b1e={};_0x3c2b1e[_0x420c0e(0xea)]=function(_0x9b6157,_0x350e09){return _0x9b6157===_0x350e09;},_0x3c2b1e['XzwCM']=_0x420c0e(0x85),_0x3c2b1e[_0x420c0e(0xb6)]=_0x420c0e(0x11c),_0x3c2b1e[_0x420c0e(0xfd)]=function(_0x48caeb,_0x30f5b4){return _0x48caeb==_0x30f5b4;},_0x3c2b1e['XmKvE']=_0x420c0e(0xee),_0x3c2b1e[_0x420c0e(0x117)]=function(_0x5469fd,_0x29c90b){return _0x5469fd!==_0x29c90b;},_0x3c2b1e[_0x420c0e(0x10e)]=_0x420c0e(0xa4),_0x3c2b1e[_0x420c0e(0x97)]=_0x420c0e(0xe8),_0x3c2b1e[_0x420c0e(0xfa)]=function(_0x186e94,_0x4422fc){return _0x186e94!==_0x4422fc;},_0x3c2b1e['drtTO']=_0x420c0e(0xbd),_0x3c2b1e['lgKLb']=_0x420c0e(0x102),_0x3c2b1e[_0x420c0e(0xdf)]=_0x420c0e(0x8e),_0x3c2b1e['nYwmq']=_0x420c0e(0x11f),_0x3c2b1e[_0x420c0e(0xaa)]=_0x420c0e(0x92),_0x3c2b1e[_0x420c0e(0xc1)]='SIGTERM',_0x3c2b1e[_0x420c0e(0x8f)]=function(_0x55221e,_0x50bf30){return _0x55221e===_0x50bf30;},_0x3c2b1e['XorFm']=_0x420c0e(0xb4),_0x3c2b1e[_0x420c0e(0xae)]=_0x420c0e(0xcb);const _0x2463ef=_0x3c2b1e;if(_0x2463ef[_0x420c0e(0xfd)](this[_0x420c0e(0x9d)][_0x420c0e(0xf9)],!![])&&(!this[_0x420c0e(0xf9)]||!this[_0x420c0e(0xf9)]['isRunning']())){if(_0x2463ef[_0x420c0e(0x117)](_0x2463ef[_0x420c0e(0x10e)],_0x2463ef[_0x420c0e(0x97)]))try{if(_0x2463ef[_0x420c0e(0xfa)](_0x2463ef[_0x420c0e(0xd6)],_0x2463ef['lgKLb'])){this[_0x420c0e(0xf9)]=helper[_0x420c0e(0x108)](this['config']),logger[_0x420c0e(0xc4)](_0x2463ef[_0x420c0e(0xdf)]);let _0x58c044=0x0;const _0x202db9=async()=>{const _0x55bd3f=_0x420c0e;_0x2463ef[_0x55bd3f(0xea)](_0x2463ef[_0x55bd3f(0x8b)],_0x2463ef[_0x55bd3f(0xb6)])?this[_0x55bd3f(0x9d)][_0x55bd3f(0x107)]={'localIdentifier':_0x55da1c[_0x55bd3f(0xd1)]()}:(_0x58c044++,_0x2463ef['tfgOz'](_0x58c044,0x1)&&await this[_0x55bd3f(0xdc)]());};process['on'](_0x2463ef['nYwmq'],_0x202db9),process['on'](_0x2463ef[_0x420c0e(0xaa)],_0x202db9),process['on'](_0x2463ef['lXDIa'],_0x202db9);}else this['config'][_0x420c0e(0x103)]=!![];}catch(_0x2ef925){if(_0x2463ef[_0x420c0e(0x8f)](_0x2463ef[_0x420c0e(0x93)],_0x2463ef[_0x420c0e(0xae)]))_0xecba3c[_0x420c0e(0xd9)](_0x420c0e(0xf5)+_0x23432b);else{logger[_0x420c0e(0xd9)](_0x2ef925);throw new Error(_0x2ef925[_0x420c0e(0x8d)]());}}else _0x428686[_0x420c0e(0xf3)][_0x420c0e(0xd4)]=_0x112a5b['_'][0x0],_0xc6b8db['fireFunnelTestEvent'](_0x2463ef['XmKvE'],{},this[_0x420c0e(0x9d)],this[_0x420c0e(0x10a)]);}}async[a37_0xca879d(0xdc)](){const _0x465eb7=a37_0xca879d,_0x5f07fa={};_0x5f07fa[_0x465eb7(0xcc)]=function(_0x27d83f,_0x2f92a1){return _0x27d83f!==_0x2f92a1;},_0x5f07fa[_0x465eb7(0x116)]=_0x465eb7(0xe4),_0x5f07fa[_0x465eb7(0xff)]=_0x465eb7(0xa1),_0x5f07fa['QBsXQ']=_0x465eb7(0xca);const _0x1f1207=_0x5f07fa;if(this[_0x465eb7(0xf9)]&&this[_0x465eb7(0xf9)][_0x465eb7(0x83)]())try{_0x1f1207['cCaHg'](_0x1f1207['kjRSd'],_0x1f1207['kjRSd'])?this[_0x465eb7(0x9d)]['useW3C']=![]:(await helper[_0x465eb7(0xf4)](this[_0x465eb7(0xf9)]),logger[_0x465eb7(0xc4)](_0x1f1207[_0x465eb7(0xff)]));}catch(_0x491d72){logger[_0x465eb7(0xf0)](_0x1f1207[_0x465eb7(0xb2)],_0x491d72['message']);}}async['setUpHubUrl'](){const _0x5e06ea=a37_0xca879d;await hubAllocator[_0x5e06ea(0xf8)](this['config']);}['setupKeepAlive'](){const _0x2b979a=a37_0xca879d,_0x9f9c1={'EzOMr':function(_0x29b4b1,_0xcc105e){return _0x29b4b1(_0xcc105e);},'KxoaL':_0x2b979a(0x9e)};_0x9f9c1[_0x2b979a(0x8c)](require,_0x9f9c1[_0x2b979a(0xa7)])();}[a37_0xca879d(0x118)](){const _0x4dedc7=a37_0xca879d,_0x18f257={};_0x18f257['JCBfV']=_0x4dedc7(0xeb),_0x18f257[_0x4dedc7(0xb8)]=_0x4dedc7(0xd7);const _0xab2287=_0x18f257,_0x574e35=_0x124237=>{const _0x1f8f39=_0x4dedc7;logger[_0x1f8f39(0xf0)](_0x124237[_0x1f8f39(0xfe)]),logger['debug'](util[_0x1f8f39(0xa0)](_0x124237)),this[_0x1f8f39(0x86)][_0x1f8f39(0xc0)](util[_0x1f8f39(0xa0)]('%j',_0x124237));};process['on'](_0xab2287['JCBfV'],_0x574e35),process['on'](_0xab2287['wwdzL'],_0x574e35);}}exports['default']=BrowserStackSetup;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
var a38_0x444eb6=a38_0x5e99;function a38_0x5e99(_0x8b01e6,_0x3c0faf){var _0x4156df=a38_0x4156();return a38_0x5e99=function(_0x5e995c,_0x86b6cd){_0x5e995c=_0x5e995c-0xa1;var _0x39de86=_0x4156df[_0x5e995c];return _0x39de86;},a38_0x5e99(_0x8b01e6,_0x3c0faf);}function a38_0x4156(){var _0x52d7a2=['disableAndroidWatchers','DjETA','xcodeConfigFile','AppiumCaps','dRPde','localIdentifier','syaUO','BNlau','simpleIsVisibleCheck','clearSystemFiles','preventWDAAttachments','allowTouchIdEnroll','browserstack.ppp','wdaStartupRetryInterval','377144rcrMzS','ZssYJ','oVjVe','enableAsyncExecuteFromHttps','autoDismissAlerts','browserstack.localIdentifier','tapWithShortPressDuration','zJaUN','yUUYL','autoGrantPermissions','safariIgnoreFraudWarning','5984555KjYbcd','newCommandTimeout','91BRQYxJ','webviewDevtoolsPort','BROWSERSTACK_APP','deviceReadyTimeout','appPackage','skipDeviceInitialization','12798190uCEHPF','chromedriverUseSystemExecutable','BROWSERSTACK_AUTOMATION','parallelsPerPlatform','skipUnlock','1645146THDenx','unicodeKeyboard','FxPFc','remoteDebugProxy','printPageSourceOnFindFailure','androidScreenshotPath','PpyLw','keepKeyChains','BROWSERSTACK_BUILD_NAME','nativeWebScreenshot','browserstack.local','updatedWDABundleId','appActivity','ZkbGo','allowTestPackages','rQItL','logcatFormat','BROWSERSTACK_LOCAL','BROWSERSTACK_PROJECT_NAME','HajhU','localizableStringsDir','appWaitDuration','safariInitialUrl','browserstack.access_key','wdaLocalPort','keychainPassword','language','automation','BROWSERSTACK_ACCESS_KEY','adbExecTimeout','maxTypingFrequency','remoteAppsCacheLimit','browserstack.userName','6fauYIH','androidNaturalOrientation','browserstack.app','intentFlags','sendKeyStrategy','pJlTZ','6722838paTKOI','fullReset','mockLocationApp','connectHardwareKeyboard','webkitDebugProxyPort','enableWebviewDetailsCollection','intentCategory','appName','fullContextList','TAnfT','keyPassword','interKeyDelay','chromedriverExecutableDir','chromeOptions','BROWSERSTACK_OBSERVABILITY_DEBUG','safariOpenLinksInBackground','chromedriverExecutable','xcodeOrgId','ignoreHiddenApiPolicyError','rerunTests','userName','ensureWebviewsHavePages','gpsEnabled','chromedriverDisableBuildCheck','buildName','safariAllowPopups','BROWSERSTACK_RERUN_TESTS','locationServicesEnabled','browserstack.rerunTests','recreateChromeDriverSessions','BROWSERSTACK_USER_NAME','useCarthageSsl','uMmJS','buildIdentifier','CLICapsMapping','intentAction','udid','BROWSERSTACK_USERNAME','browserstack.parallelsPerPlatform','locationServicesAuthorized','automationName','wdaConnectionTimeout','remoteAdbHost','keyAlias','bundleId','logLevel','processArguments','EdBZF','waitForAppScript','launchTimeout','BUUiH','UMKVK','35196DuFlgS','projectName','EnvCapsMapping','resetKeyboard','XoCHX','4lHgnft','skipLogcatCapture','app','networkSpeed','androidDeviceReadyTimeout','WzRrM','androidDeviceSocket','avdLaunchTimeout','xcodeSigningId','2838492XxjAOA','browserstackLocal','noSign','dKSrG','appWaitActivity','optionalIntentArguments','wdaStartupRetries','BROWSERSTACK_PARALLELS_PER_PLATFORM','browserstack.user_name','startIWDP','screenshotWaitTimeout','enablePerformanceLogging','orientation','iosInstallPause','scaleFactor','webviewConnectRetries','eventTimings','calendarFormat','BROWSERSTACK_BUILD_IDENTIFIER','uKyRS','locale','avdArgs','commandTimeouts','uninstallOtherPackages','shouldUseSingletonTestManager','CWirw','browserstack.projectName','BzHjh','autoAcceptAlerts','keystorePath','soitl','oQksp','otherApps'];a38_0x4156=function(){return _0x52d7a2;};return a38_0x4156();}(function(_0x344209,_0x5f4361){var _0x6398ac=a38_0x5e99,_0x49646c=_0x344209();while(!![]){try{var _0x9627d8=-parseInt(_0x6398ac(0x10b))/0x1*(-parseInt(_0x6398ac(0x145))/0x2)+parseInt(_0x6398ac(0xea))/0x3*(-parseInt(_0x6398ac(0x14a))/0x4)+parseInt(_0x6398ac(0xdd))/0x5+-parseInt(_0x6398ac(0x111))/0x6+-parseInt(_0x6398ac(0xdf))/0x7*(parseInt(_0x6398ac(0xd2))/0x8)+parseInt(_0x6398ac(0xa3))/0x9+parseInt(_0x6398ac(0xe5))/0xa;if(_0x9627d8===_0x5f4361)break;else _0x49646c['push'](_0x49646c['shift']());}catch(_0x4a8470){_0x49646c['push'](_0x49646c['shift']());}}}(a38_0x4156,0x96638),exports[a38_0x444eb6(0x133)]=()=>{var _0x1b261d=a38_0x444eb6,_0xecce96={};_0xecce96[_0x1b261d(0xc2)]=_0x1b261d(0xab),_0xecce96[_0x1b261d(0x131)]=_0x1b261d(0x10a),_0xecce96[_0x1b261d(0xec)]=_0x1b261d(0x101),_0xecce96[_0x1b261d(0xca)]='browserstack.accessKey',_0xecce96[_0x1b261d(0xfd)]='browserstack.buildName',_0xecce96['WzRrM']=_0x1b261d(0xbd),_0xecce96[_0x1b261d(0xd4)]='browserstack.buildIdentifier',_0xecce96[_0x1b261d(0xf0)]=_0x1b261d(0xd0),_0xecce96[_0x1b261d(0xa6)]=_0x1b261d(0x137),_0xecce96[_0x1b261d(0x143)]=_0x1b261d(0xf4),_0xecce96[_0x1b261d(0xb6)]=_0x1b261d(0xd7),_0xecce96['GlrFS']=_0x1b261d(0x12d),_0xecce96[_0x1b261d(0xc1)]=_0x1b261d(0x10d),_0xecce96['CWirw']='browserstack.logLevel',_0xecce96['EdBZF']='browserstack.automation';var _0x57836a=_0xecce96,_0x21cfa0={};return _0x21cfa0[_0x1b261d(0x125)]=[_0x57836a[_0x1b261d(0xc2)],_0x57836a[_0x1b261d(0x131)]],_0x21cfa0['accessKey']=[_0x57836a[_0x1b261d(0xec)],_0x57836a['syaUO']],_0x21cfa0[_0x1b261d(0x129)]=[_0x57836a['HajhU']],_0x21cfa0['projectName']=[_0x57836a[_0x1b261d(0x14f)]],_0x21cfa0[_0x1b261d(0x132)]=[_0x57836a[_0x1b261d(0xd4)]],_0x21cfa0[_0x1b261d(0xe8)]=[_0x57836a['PpyLw'],_0x57836a[_0x1b261d(0xa6)]],_0x21cfa0[_0x1b261d(0xa4)]=[_0x57836a['BUUiH']],_0x21cfa0[_0x1b261d(0xc9)]=[_0x57836a['uKyRS']],_0x21cfa0[_0x1b261d(0x124)]=[_0x57836a['GlrFS']],_0x21cfa0['app']=[_0x57836a['soitl']],_0x21cfa0[_0x1b261d(0x13e)]=[_0x57836a[_0x1b261d(0xbc)]],_0x21cfa0[_0x1b261d(0x105)]=[_0x57836a[_0x1b261d(0x140)]],_0x21cfa0;},exports[a38_0x444eb6(0x147)]=()=>{var _0x3ea869=a38_0x444eb6,_0x4f7769={};_0x4f7769[_0x3ea869(0x110)]=_0x3ea869(0x136),_0x4f7769[_0x3ea869(0xc5)]=_0x3ea869(0x12f),_0x4f7769[_0x3ea869(0xd3)]=_0x3ea869(0x106),_0x4f7769[_0x3ea869(0xc8)]=_0x3ea869(0xf2),_0x4f7769[_0x3ea869(0xf7)]=_0x3ea869(0xfc),_0x4f7769[_0x3ea869(0x11a)]=_0x3ea869(0xb5),_0x4f7769[_0x3ea869(0xf9)]=_0x3ea869(0xaa),_0x4f7769[_0x3ea869(0x144)]=_0x3ea869(0xfb),_0x4f7769[_0x3ea869(0x149)]='BROWSERSTACK_LOCAL_IDENTIFIER',_0x4f7769[_0x3ea869(0xcb)]=_0x3ea869(0x12b),_0x4f7769[_0x3ea869(0xbe)]=_0x3ea869(0xe1),_0x4f7769['yUUYL']=_0x3ea869(0x11f),_0x4f7769[_0x3ea869(0xd9)]=_0x3ea869(0xe7);var _0x46f8d0=_0x4f7769,_0x1229a6={};return _0x1229a6[_0x3ea869(0x125)]=[_0x46f8d0['pJlTZ'],_0x46f8d0[_0x3ea869(0xc5)]],_0x1229a6['accessKey']=[_0x46f8d0[_0x3ea869(0xd3)]],_0x1229a6[_0x3ea869(0x129)]=[_0x46f8d0[_0x3ea869(0xc8)]],_0x1229a6[_0x3ea869(0x146)]=[_0x46f8d0[_0x3ea869(0xf7)]],_0x1229a6[_0x3ea869(0x132)]=[_0x46f8d0[_0x3ea869(0x11a)]],_0x1229a6[_0x3ea869(0xe8)]=[_0x46f8d0[_0x3ea869(0xf9)]],_0x1229a6[_0x3ea869(0xa4)]=[_0x46f8d0[_0x3ea869(0x144)]],_0x1229a6[_0x3ea869(0xc9)]=[_0x46f8d0[_0x3ea869(0x149)]],_0x1229a6[_0x3ea869(0x124)]=[_0x46f8d0[_0x3ea869(0xcb)]],_0x1229a6[_0x3ea869(0x14c)]=[_0x46f8d0[_0x3ea869(0xbe)]],_0x1229a6[_0x3ea869(0x13e)]=[_0x46f8d0[_0x3ea869(0xda)]],_0x1229a6[_0x3ea869(0x105)]=[_0x46f8d0[_0x3ea869(0xd9)]],_0x1229a6;},exports[a38_0x444eb6(0xc7)]=()=>[a38_0x444eb6(0x139),'platformVersion','deviceName',a38_0x444eb6(0xde),a38_0x444eb6(0x14c),a38_0x444eb6(0x135),a38_0x444eb6(0x104),a38_0x444eb6(0xb7),a38_0x444eb6(0xaf),'autoWebview','noReset',a38_0x444eb6(0x112),a38_0x444eb6(0xcd),a38_0x444eb6(0xb3),a38_0x444eb6(0xae),a38_0x444eb6(0xc3),a38_0x444eb6(0xee),a38_0x444eb6(0xf6),a38_0x444eb6(0xe3),a38_0x444eb6(0xa7),'appWaitPackage',a38_0x444eb6(0xff),a38_0x444eb6(0xe2),a38_0x444eb6(0xf8),'androidCoverage','androidCoverageEndIntent',a38_0x444eb6(0x14e),'adbPort',a38_0x444eb6(0x150),'androidInstallTimeout','androidInstallPath','avd',a38_0x444eb6(0xa1),'avdReadyTimeout',a38_0x444eb6(0xb8),'useKeystore',a38_0x444eb6(0xc0),'keystorePassword',a38_0x444eb6(0x13c),a38_0x444eb6(0x11b),a38_0x444eb6(0x121),'chromedriverArgs',a38_0x444eb6(0x11d),'chromedriverChromeMappingFile',a38_0x444eb6(0xe6),'chromedriverPort','chromedriverPorts',a38_0x444eb6(0x128),'autoWebviewTimeout',a38_0x444eb6(0x134),a38_0x444eb6(0x117),a38_0x444eb6(0x10e),a38_0x444eb6(0xa8),'dontStopAppOnReset',a38_0x444eb6(0xeb),a38_0x444eb6(0x148),a38_0x444eb6(0xa5),'ignoreUnimportantViews',a38_0x444eb6(0xc4),a38_0x444eb6(0x11e),a38_0x444eb6(0x12e),a38_0x444eb6(0xf3),a38_0x444eb6(0xef),a38_0x444eb6(0x14d),a38_0x444eb6(0x127),'isHeadless',a38_0x444eb6(0x107),'localeScript',a38_0x444eb6(0xe4),a38_0x444eb6(0xdb),a38_0x444eb6(0x10c),'systemPort',a38_0x444eb6(0x13b),a38_0x444eb6(0xe9),'unlockType','unlockKey','autoLaunch',a38_0x444eb6(0x14b),a38_0x444eb6(0xba),'disableWindowAnimation','buildToolsVersion','enforceAppInstall',a38_0x444eb6(0x126),a38_0x444eb6(0xe0),a38_0x444eb6(0x116),a38_0x444eb6(0x109),a38_0x444eb6(0xb4),a38_0x444eb6(0x13d),a38_0x444eb6(0x142),a38_0x444eb6(0x12c),a38_0x444eb6(0x138),a38_0x444eb6(0xbf),a38_0x444eb6(0xd6),'nativeInstrumentsLib','nativeWebTap',a38_0x444eb6(0x100),a38_0x444eb6(0x12a),a38_0x444eb6(0xdc),a38_0x444eb6(0x120),a38_0x444eb6(0xf1),a38_0x444eb6(0xfe),a38_0x444eb6(0x13f),a38_0x444eb6(0x11c),'showIOSLog',a38_0x444eb6(0x10f),'webkitResponseTimeout',a38_0x444eb6(0xad),a38_0x444eb6(0xed),a38_0x444eb6(0xd5),'skipLogCapture',a38_0x444eb6(0x115),a38_0x444eb6(0x119),a38_0x444eb6(0x141),a38_0x444eb6(0xb2),a38_0x444eb6(0x118),'customSSLCert',a38_0x444eb6(0xd8),a38_0x444eb6(0xb1),a38_0x444eb6(0x102),'showXcodeLog',a38_0x444eb6(0xb0),a38_0x444eb6(0xc6),a38_0x444eb6(0x103),'usePrebuiltWDA',a38_0x444eb6(0xce),'webDriverAgentUrl','keychainPath','useNewWDA','wdaLaunchTimeout',a38_0x444eb6(0x13a),a38_0x444eb6(0x122),a38_0x444eb6(0xa2),a38_0x444eb6(0xf5),'resetOnSessionStartOnly',a38_0x444eb6(0xb9),a38_0x444eb6(0xa9),a38_0x444eb6(0xd1),a38_0x444eb6(0x114),a38_0x444eb6(0x108),a38_0x444eb6(0xcc),a38_0x444eb6(0x130),a38_0x444eb6(0xbb),a38_0x444eb6(0xac),a38_0x444eb6(0xcf),a38_0x444eb6(0x123),a38_0x444eb6(0x113),a38_0x444eb6(0xfa),'logcatFilterSpecs','allowDelayAdb']);
|