@testim/testim-cli 3.262.0 → 3.264.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +11 -5
- package/commons/featureFlags.js +2 -3
- package/commons/testimDesiredCapabilitiesBuilder.js +24 -67
- package/npm-shrinkwrap.json +82 -82
- package/package.json +1 -1
- package/player/WebdriverioWebDriverApi.js +15 -26
- package/player/stepActions/baseJsStepAction.js +15 -38
- package/player/stepActions/locateStepAction.js +1 -18
- package/player/stepActions/mouseStepAction.js +9 -20
- package/player/stepActions/scripts/runCode.js +2 -2
- package/player/stepActions/scripts/wheel.js +8 -23
- package/player/stepActions/textStepAction.js +2 -6
- package/player/stepActions/wheelStepAction.js +2 -6
- package/player/webdriver.js +13 -35
- package/polyfills/Array.prototype.at.js +13 -0
- package/polyfills/index.js +1 -0
- package/runOptions.d.ts +1 -1
- package/runOptions.js +1 -9
- package/runner.js +7 -0
- package/runners/runnerUtils.js +1 -1
- package/testRunStatus.js +4 -0
- package/utils/index.js +9 -2
- package/player/stepActions/scripts/polyfills.js +0 -393
package/cli.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
'use strict';
|
|
5
5
|
|
|
6
|
+
require('./polyfills');
|
|
6
7
|
require('./bluebirdConfig.js');
|
|
7
8
|
const options = require('./runOptions');
|
|
8
9
|
const EventEmitter = require('events');
|
|
@@ -35,16 +36,21 @@ async function checkNodeVersion() {
|
|
|
35
36
|
throw new ArgError(`Required node version ${version} not satisfied with current version ${process.version}`);
|
|
36
37
|
}
|
|
37
38
|
|
|
38
|
-
const
|
|
39
|
+
const currentMinimalNodeVersion = 14;
|
|
40
|
+
const nextMinimalNodeVersion = 16;
|
|
39
41
|
const majorVersion = Number(process.versions.node.split('.')[0]);
|
|
40
42
|
const dateHasPassed = new Date('2023-04-30T00:00:00.000Z') <= new Date();
|
|
41
43
|
|
|
42
|
-
if (majorVersion <
|
|
43
|
-
throw new ArgError(`Testim.io CLI supports Node.js ${
|
|
44
|
+
if (majorVersion < currentMinimalNodeVersion) {
|
|
45
|
+
throw new ArgError(`Testim.io CLI supports Node.js ${currentMinimalNodeVersion} and above, please upgrade to a newer Node.js version`);
|
|
44
46
|
}
|
|
45
47
|
|
|
46
|
-
if (majorVersion <
|
|
47
|
-
|
|
48
|
+
if (majorVersion < nextMinimalNodeVersion && dateHasPassed) {
|
|
49
|
+
throw new ArgError(`Testim.io CLI supports Node.js ${nextMinimalNodeVersion} and above, please upgrade to a newer Node.js version`);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (majorVersion < nextMinimalNodeVersion) {
|
|
53
|
+
console.log('\x1b[33m%s\x1b[0m', `Testim.io CLI will stop supporting Node.js < ${nextMinimalNodeVersion} on April 30 2023, please upgrade to a newer Node.js version`);
|
|
48
54
|
}
|
|
49
55
|
}
|
|
50
56
|
|
package/commons/featureFlags.js
CHANGED
|
@@ -37,10 +37,8 @@ class FeatureFlagsService {
|
|
|
37
37
|
constructor() {
|
|
38
38
|
this.flags = {
|
|
39
39
|
useNewWSCLI: new Rox.Flag(),
|
|
40
|
-
disableEdgeVisibilityChecks: new Rox.Flag(),
|
|
41
40
|
useSafariWebdriverVisibilityChecks: new Rox.Flag(),
|
|
42
41
|
useClickimVisibilityChecks: new Rox.Flag(),
|
|
43
|
-
useIEWebdriverVisibilityChecks: new Rox.Flag(),
|
|
44
42
|
runGetElementCodeInAut: new Rox.Flag(),
|
|
45
43
|
enableFrameSwitchOptimization: new Rox.Flag(),
|
|
46
44
|
maximumJsResultSize: new Rox.Configuration(2000 * 1024),
|
|
@@ -53,7 +51,7 @@ class FeatureFlagsService {
|
|
|
53
51
|
autoSaveDownloadFileFireFox: new Rox.Flag(true),
|
|
54
52
|
safariSelectOptionDispatchEventOnSelectElement: new Rox.Flag(true),
|
|
55
53
|
experimentalPreCodeCompilation: new Rox.Flag(true),
|
|
56
|
-
/** Enables using top level await inside custom actions
|
|
54
|
+
/** Enables using top level await inside custom actions */
|
|
57
55
|
experimentalAsyncCustomCode: new Rox.Flag(),
|
|
58
56
|
useSameBrowserForMultiTests: new LabFeatureFlag('labs'),
|
|
59
57
|
highSpeedMode: new LabFeatureFlag(),
|
|
@@ -63,6 +61,7 @@ class FeatureFlagsService {
|
|
|
63
61
|
enableWorkerThreadsCliCodeExecution: new Rox.Flag(true),
|
|
64
62
|
LTNetworkCapabilities: new Rox.Flag(),
|
|
65
63
|
downloadToBase64: new Rox.Flag(),
|
|
64
|
+
dec2022eolBrowsers: new Rox.Flag(),
|
|
66
65
|
};
|
|
67
66
|
Rox.register('default', this.flags);
|
|
68
67
|
}
|
|
@@ -67,15 +67,6 @@ const convertToNewCapabilitiesFormat = (desiredCapabilities) => {
|
|
|
67
67
|
}
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
-
function buildEdgeOptions(opts) {
|
|
71
|
-
Object.assign(opts.desiredCapabilities, {
|
|
72
|
-
browserName: 'MicrosoftEdge',
|
|
73
|
-
_isOldEdge: true,
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
return opts;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
70
|
function buildSafariOptions(opts, browserName) {
|
|
80
71
|
const safariOptions = { browserName: 'safari' };
|
|
81
72
|
|
|
@@ -87,48 +78,12 @@ function buildSafariOptions(opts, browserName) {
|
|
|
87
78
|
return opts;
|
|
88
79
|
}
|
|
89
80
|
|
|
90
|
-
function buildIEOptions(opts, browserOptions, gridInfo, lambdatestService) {
|
|
91
|
-
const ieOptions = {
|
|
92
|
-
ignoreProtectedModeSettings: true,
|
|
93
|
-
'ie.ensureCleanSession': true,
|
|
94
|
-
'ie.enableFullPageScreenshot': false,
|
|
95
|
-
'ie.fileUploadDialogTimeout': 3000,
|
|
96
|
-
'ie.acceptSslCerts': true,
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
let version = '11';
|
|
100
|
-
if (isDFGrid(gridInfo)) {
|
|
101
|
-
version = 'latest';
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
Object.assign(opts.desiredCapabilities, {
|
|
105
|
-
browserName: 'internet explorer',
|
|
106
|
-
version,
|
|
107
|
-
pageLoadStrategy: 'none',
|
|
108
|
-
});
|
|
109
|
-
|
|
110
|
-
const isLambdatestRun = lambdatestService && lambdatestService.isLambdatestRun();
|
|
111
|
-
if (isLambdatestRun) {
|
|
112
|
-
opts.desiredCapabilities.ignoreProtectedModeSettings = true; // this might be the correct way to do it for all grids
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
if (browserOptions.oldCapabilities && !isLambdatestRun) {
|
|
116
|
-
Object.assign(opts.desiredCapabilities, ieOptions);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
if (browserOptions.w3cCapabilities) {
|
|
120
|
-
opts.desiredCapabilities['se:ieOptions'] = ieOptions;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
return opts;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
81
|
function readFileToBase64(fileLocation) {
|
|
127
82
|
return fs.readFileSync(fileLocation, { encoding: 'base64' });
|
|
128
83
|
}
|
|
129
84
|
|
|
130
85
|
function setCustomExtension(customExtensionLocalLocation, extensions, lambdatestService) {
|
|
131
|
-
if (lambdatestService
|
|
86
|
+
if (lambdatestService?.isLambdatestRun() && utils.isURL(customExtensionLocalLocation)) {
|
|
132
87
|
return;
|
|
133
88
|
}
|
|
134
89
|
|
|
@@ -141,7 +96,7 @@ function setCustomExtension(customExtensionLocalLocation, extensions, lambdatest
|
|
|
141
96
|
}
|
|
142
97
|
|
|
143
98
|
function setTestimExtension(browserOptions, extensions, args, predefinedTestimExtension, lambdatestService) {
|
|
144
|
-
if (lambdatestService
|
|
99
|
+
if (lambdatestService?.isLambdatestRun()) {
|
|
145
100
|
return;
|
|
146
101
|
}
|
|
147
102
|
|
|
@@ -219,7 +174,7 @@ function _buildChromiumOptions(opts, browserOptions, testRunConfig, customExtens
|
|
|
219
174
|
args.push(`--user-data-dir=${browserOptions.chromeUserDataDir}`);
|
|
220
175
|
}
|
|
221
176
|
|
|
222
|
-
if (browserOptions.projectData
|
|
177
|
+
if (browserOptions.projectData?.defaults?.disableChromiumGpu) {
|
|
223
178
|
args.push('--disable-gpu');
|
|
224
179
|
}
|
|
225
180
|
|
|
@@ -264,7 +219,7 @@ function _buildChromiumOptions(opts, browserOptions, testRunConfig, customExtens
|
|
|
264
219
|
delete chromiumOptions.w3c;
|
|
265
220
|
}
|
|
266
221
|
|
|
267
|
-
if (browserOptions.oldCapabilities && gridInfo.type !== 'testimEnterprise' && !
|
|
222
|
+
if (browserOptions.oldCapabilities && gridInfo.type !== 'testimEnterprise' && !lambdatestService?.isLambdatestRun()) {
|
|
268
223
|
opts.desiredCapabilities[optionsKey] = chromiumOptions;
|
|
269
224
|
}
|
|
270
225
|
|
|
@@ -353,13 +308,14 @@ function buildFirefoxOptions(opts, browserOptions) {
|
|
|
353
308
|
}
|
|
354
309
|
|
|
355
310
|
function buildSaucelabs(browserOptions, testName, testRunConfig) {
|
|
356
|
-
|
|
311
|
+
const { saucelabs } = browserOptions;
|
|
312
|
+
if (saucelabs?.username && saucelabs.accessKey) {
|
|
357
313
|
if (testRunConfig) {
|
|
358
314
|
testRunConfig.sl.version = testRunConfig.browserValue === 'safari' ? testRunConfig.sl.safari_version : testRunConfig.sl.version;
|
|
359
|
-
testRunConfig.sl.appiumVersion =
|
|
360
|
-
return Object.assign({}, testRunConfig.sl,
|
|
315
|
+
testRunConfig.sl.appiumVersion = saucelabs.appiumVersion || testRunConfig.sl.appiumVersion;
|
|
316
|
+
return Object.assign({}, testRunConfig.sl, saucelabs, { name: testName });
|
|
361
317
|
}
|
|
362
|
-
return Object.assign({},
|
|
318
|
+
return Object.assign({}, saucelabs, { name: testName });
|
|
363
319
|
}
|
|
364
320
|
return {};
|
|
365
321
|
}
|
|
@@ -524,8 +480,7 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
524
480
|
}
|
|
525
481
|
|
|
526
482
|
const browserTimeoutSec = Number(browserOptions.browserTimeout / 1000);
|
|
527
|
-
const browser = browserOptions.browser ||
|
|
528
|
-
|
|
483
|
+
const browser = browserOptions.browser || testRunConfig?.browserValue;
|
|
529
484
|
|
|
530
485
|
_.merge(
|
|
531
486
|
opts.desiredCapabilities,
|
|
@@ -533,11 +488,11 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
533
488
|
buildBrowserstack(browserOptions, testName, testRunConfig),
|
|
534
489
|
buildPerfecto(browserOptions, testName, testRunConfig),
|
|
535
490
|
buildExperitest(browserOptions, browser, browserTimeoutSec),
|
|
536
|
-
lambdatestService
|
|
491
|
+
lambdatestService?.getCapabilities(browserOptions, browser, executionId, testResultId, testName),
|
|
537
492
|
);
|
|
538
493
|
|
|
539
494
|
let predefinedTestimExtension = null;
|
|
540
|
-
if (!browserOptions.ext && !browserOptions.extensionPath &&
|
|
495
|
+
if (!browserOptions.ext && !browserOptions.extensionPath && gridInfo.host?.endsWith('.testim.io') && !browserOptions.canary && browserOptions.mode === CLI_MODE.EXTENSION) {
|
|
541
496
|
if (browser === 'chrome') {
|
|
542
497
|
predefinedTestimExtension = '/opt/testim-headless';
|
|
543
498
|
} else if (browser === 'edge-chromium') {
|
|
@@ -545,7 +500,7 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
545
500
|
}
|
|
546
501
|
}
|
|
547
502
|
|
|
548
|
-
if (
|
|
503
|
+
if (gridInfo.host?.endsWith('.testim.io') && browser === 'edge-chromium') {
|
|
549
504
|
opts.desiredCapabilities.version = '83'; // Need to match GGR filter
|
|
550
505
|
}
|
|
551
506
|
|
|
@@ -557,16 +512,10 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
557
512
|
case 'firefox':
|
|
558
513
|
opts = buildFirefoxOptions(opts, browserOptions);
|
|
559
514
|
break;
|
|
560
|
-
case 'edge':
|
|
561
|
-
opts = buildEdgeOptions(opts);
|
|
562
|
-
break;
|
|
563
515
|
case 'safari':
|
|
564
516
|
case 'safari technology preview':
|
|
565
517
|
opts = buildSafariOptions(opts, browser);
|
|
566
518
|
break;
|
|
567
|
-
case 'ie11':
|
|
568
|
-
opts = buildIEOptions(opts, browserOptions, gridInfo, lambdatestService);
|
|
569
|
-
break;
|
|
570
519
|
default:
|
|
571
520
|
break;
|
|
572
521
|
}
|
|
@@ -582,7 +531,12 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
582
531
|
*/
|
|
583
532
|
const hostToProvider = { 'hub.lambdatest.com': 'lambdatest', 'public-grid.testim.io': 'testim', 'testgrid-devicefarm.us-west-2.amazonaws.com': 'devicefarm' };
|
|
584
533
|
const byGrid = (capabilities) => capabilities[gridInfo.provider] || capabilities[opts.host] || capabilities[hostToProvider[opts.host]];
|
|
585
|
-
const getTargetingGroup =
|
|
534
|
+
const getTargetingGroup = capabilities =>
|
|
535
|
+
byGrid(capabilities) ||
|
|
536
|
+
capabilities[opts.desiredCapabilities?.browserName] ||
|
|
537
|
+
capabilities[opts.desiredCapabilities?.version] ||
|
|
538
|
+
capabilities ||
|
|
539
|
+
{};
|
|
586
540
|
const capabilities = JSON.parse(featureFlags.flags.addCustomCapabilities.getValue() || '{}');
|
|
587
541
|
const customCapabilities = getTargetingGroup(getTargetingGroup(capabilities));
|
|
588
542
|
|
|
@@ -590,8 +544,11 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
|
|
|
590
544
|
logger.info(`Adding custom capabilities: ${JSON.stringify(customCapabilities)}`);
|
|
591
545
|
Object.assign(opts.desiredCapabilities, customCapabilities);
|
|
592
546
|
}
|
|
593
|
-
} catch (
|
|
594
|
-
logger.error(
|
|
547
|
+
} catch (error) {
|
|
548
|
+
logger.error('Failed to load custom capabilities', {
|
|
549
|
+
error,
|
|
550
|
+
customCapabilities: featureFlags.flags.addCustomCapabilities.getValue(),
|
|
551
|
+
});
|
|
595
552
|
}
|
|
596
553
|
|
|
597
554
|
if (isDFGrid(gridInfo) && opts.desiredCapabilities && !opts.capabilities) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testim/testim-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.264.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@testim/testim-cli",
|
|
9
|
-
"version": "3.
|
|
9
|
+
"version": "3.264.0",
|
|
10
10
|
"license": "Proprietary",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@applitools/eyes-sdk-core": "13.6.23",
|
|
@@ -559,11 +559,11 @@
|
|
|
559
559
|
}
|
|
560
560
|
},
|
|
561
561
|
"node_modules/@babel/runtime": {
|
|
562
|
-
"version": "7.20.
|
|
563
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.
|
|
564
|
-
"integrity": "sha512-
|
|
562
|
+
"version": "7.20.6",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz",
|
|
564
|
+
"integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==",
|
|
565
565
|
"dependencies": {
|
|
566
|
-
"regenerator-runtime": "^0.13.
|
|
566
|
+
"regenerator-runtime": "^0.13.11"
|
|
567
567
|
},
|
|
568
568
|
"engines": {
|
|
569
569
|
"node": ">=6.9.0"
|
|
@@ -1064,9 +1064,9 @@
|
|
|
1064
1064
|
}
|
|
1065
1065
|
},
|
|
1066
1066
|
"node_modules/@sinonjs/commons": {
|
|
1067
|
-
"version": "1.8.
|
|
1068
|
-
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.
|
|
1069
|
-
"integrity": "sha512-
|
|
1067
|
+
"version": "1.8.6",
|
|
1068
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
|
|
1069
|
+
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
|
|
1070
1070
|
"dev": true,
|
|
1071
1071
|
"dependencies": {
|
|
1072
1072
|
"type-detect": "4.0.8"
|
|
@@ -1511,9 +1511,9 @@
|
|
|
1511
1511
|
}
|
|
1512
1512
|
},
|
|
1513
1513
|
"node_modules/@wdio/config/node_modules/minimatch": {
|
|
1514
|
-
"version": "5.1.
|
|
1515
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
1516
|
-
"integrity": "sha512-
|
|
1514
|
+
"version": "5.1.1",
|
|
1515
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
1516
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
1517
1517
|
"dependencies": {
|
|
1518
1518
|
"brace-expansion": "^2.0.1"
|
|
1519
1519
|
},
|
|
@@ -1594,9 +1594,9 @@
|
|
|
1594
1594
|
}
|
|
1595
1595
|
},
|
|
1596
1596
|
"node_modules/@wdio/types/node_modules/@types/node": {
|
|
1597
|
-
"version": "18.11.
|
|
1598
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
1599
|
-
"integrity": "sha512-
|
|
1597
|
+
"version": "18.11.10",
|
|
1598
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
1599
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
1600
1600
|
},
|
|
1601
1601
|
"node_modules/@wdio/utils": {
|
|
1602
1602
|
"version": "7.24.0",
|
|
@@ -4189,9 +4189,9 @@
|
|
|
4189
4189
|
"integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA=="
|
|
4190
4190
|
},
|
|
4191
4191
|
"node_modules/decode-uri-component": {
|
|
4192
|
-
"version": "0.2.
|
|
4193
|
-
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.
|
|
4194
|
-
"integrity": "sha512-
|
|
4192
|
+
"version": "0.2.2",
|
|
4193
|
+
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
|
|
4194
|
+
"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
|
|
4195
4195
|
"engines": {
|
|
4196
4196
|
"node": ">=0.10"
|
|
4197
4197
|
}
|
|
@@ -4610,9 +4610,9 @@
|
|
|
4610
4610
|
"integrity": "sha512-+iipnm2hvmlWs4MVNx7HwSTxhDxsXnQyK5F1OalZVXeUhdPgP/23T42NCyg0TK3wL/Yg92SVrSuGKqdg12o54w=="
|
|
4611
4611
|
},
|
|
4612
4612
|
"node_modules/devtools/node_modules/@types/node": {
|
|
4613
|
-
"version": "18.11.
|
|
4614
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
4615
|
-
"integrity": "sha512-
|
|
4613
|
+
"version": "18.11.10",
|
|
4614
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
4615
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
4616
4616
|
},
|
|
4617
4617
|
"node_modules/devtools/node_modules/ua-parser-js": {
|
|
4618
4618
|
"version": "1.0.32",
|
|
@@ -5567,9 +5567,9 @@
|
|
|
5567
5567
|
}
|
|
5568
5568
|
},
|
|
5569
5569
|
"node_modules/filelist/node_modules/minimatch": {
|
|
5570
|
-
"version": "5.1.
|
|
5571
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
5572
|
-
"integrity": "sha512-
|
|
5570
|
+
"version": "5.1.1",
|
|
5571
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
5572
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
5573
5573
|
"dependencies": {
|
|
5574
5574
|
"brace-expansion": "^2.0.1"
|
|
5575
5575
|
},
|
|
@@ -7797,9 +7797,9 @@
|
|
|
7797
7797
|
}
|
|
7798
7798
|
},
|
|
7799
7799
|
"node_modules/js-beautify/node_modules/minimatch": {
|
|
7800
|
-
"version": "5.1.
|
|
7801
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
7802
|
-
"integrity": "sha512-
|
|
7800
|
+
"version": "5.1.1",
|
|
7801
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
7802
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
7803
7803
|
"dev": true,
|
|
7804
7804
|
"dependencies": {
|
|
7805
7805
|
"brace-expansion": "^2.0.1"
|
|
@@ -12959,9 +12959,9 @@
|
|
|
12959
12959
|
}
|
|
12960
12960
|
},
|
|
12961
12961
|
"node_modules/readdir-glob/node_modules/minimatch": {
|
|
12962
|
-
"version": "5.1.
|
|
12963
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
12964
|
-
"integrity": "sha512-
|
|
12962
|
+
"version": "5.1.1",
|
|
12963
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
12964
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
12965
12965
|
"dependencies": {
|
|
12966
12966
|
"brace-expansion": "^2.0.1"
|
|
12967
12967
|
},
|
|
@@ -15572,9 +15572,9 @@
|
|
|
15572
15572
|
}
|
|
15573
15573
|
},
|
|
15574
15574
|
"node_modules/vm2": {
|
|
15575
|
-
"version": "3.9.
|
|
15576
|
-
"resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.
|
|
15577
|
-
"integrity": "sha512-
|
|
15575
|
+
"version": "3.9.12",
|
|
15576
|
+
"resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.12.tgz",
|
|
15577
|
+
"integrity": "sha512-OMmRsKh1gmdosFzuqmj6O43hqIStqXA24YbwjtUTO0TkOBP8yLNHLplbr4odnAzEcMnm9lt2r3R8kTivn8urMg==",
|
|
15578
15578
|
"dependencies": {
|
|
15579
15579
|
"acorn": "^8.7.0",
|
|
15580
15580
|
"acorn-walk": "^8.2.0"
|
|
@@ -15647,9 +15647,9 @@
|
|
|
15647
15647
|
}
|
|
15648
15648
|
},
|
|
15649
15649
|
"node_modules/webdriver/node_modules/@types/node": {
|
|
15650
|
-
"version": "18.11.
|
|
15651
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
15652
|
-
"integrity": "sha512-
|
|
15650
|
+
"version": "18.11.10",
|
|
15651
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
15652
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
15653
15653
|
},
|
|
15654
15654
|
"node_modules/webdriverio": {
|
|
15655
15655
|
"version": "7.24.0",
|
|
@@ -15689,9 +15689,9 @@
|
|
|
15689
15689
|
}
|
|
15690
15690
|
},
|
|
15691
15691
|
"node_modules/webdriverio/node_modules/@types/node": {
|
|
15692
|
-
"version": "18.11.
|
|
15693
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
15694
|
-
"integrity": "sha512-
|
|
15692
|
+
"version": "18.11.10",
|
|
15693
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
15694
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
15695
15695
|
},
|
|
15696
15696
|
"node_modules/webdriverio/node_modules/brace-expansion": {
|
|
15697
15697
|
"version": "2.0.1",
|
|
@@ -15702,9 +15702,9 @@
|
|
|
15702
15702
|
}
|
|
15703
15703
|
},
|
|
15704
15704
|
"node_modules/webdriverio/node_modules/minimatch": {
|
|
15705
|
-
"version": "5.1.
|
|
15706
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
15707
|
-
"integrity": "sha512-
|
|
15705
|
+
"version": "5.1.1",
|
|
15706
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
15707
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
15708
15708
|
"dependencies": {
|
|
15709
15709
|
"brace-expansion": "^2.0.1"
|
|
15710
15710
|
},
|
|
@@ -16582,11 +16582,11 @@
|
|
|
16582
16582
|
}
|
|
16583
16583
|
},
|
|
16584
16584
|
"@babel/runtime": {
|
|
16585
|
-
"version": "7.20.
|
|
16586
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.
|
|
16587
|
-
"integrity": "sha512-
|
|
16585
|
+
"version": "7.20.6",
|
|
16586
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz",
|
|
16587
|
+
"integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==",
|
|
16588
16588
|
"requires": {
|
|
16589
|
-
"regenerator-runtime": "^0.13.
|
|
16589
|
+
"regenerator-runtime": "^0.13.11"
|
|
16590
16590
|
}
|
|
16591
16591
|
},
|
|
16592
16592
|
"@colors/colors": {
|
|
@@ -16965,9 +16965,9 @@
|
|
|
16965
16965
|
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="
|
|
16966
16966
|
},
|
|
16967
16967
|
"@sinonjs/commons": {
|
|
16968
|
-
"version": "1.8.
|
|
16969
|
-
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.
|
|
16970
|
-
"integrity": "sha512-
|
|
16968
|
+
"version": "1.8.6",
|
|
16969
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
|
|
16970
|
+
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
|
|
16971
16971
|
"dev": true,
|
|
16972
16972
|
"requires": {
|
|
16973
16973
|
"type-detect": "4.0.8"
|
|
@@ -17362,9 +17362,9 @@
|
|
|
17362
17362
|
}
|
|
17363
17363
|
},
|
|
17364
17364
|
"minimatch": {
|
|
17365
|
-
"version": "5.1.
|
|
17366
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
17367
|
-
"integrity": "sha512-
|
|
17365
|
+
"version": "5.1.1",
|
|
17366
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
17367
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
17368
17368
|
"requires": {
|
|
17369
17369
|
"brace-expansion": "^2.0.1"
|
|
17370
17370
|
}
|
|
@@ -17420,9 +17420,9 @@
|
|
|
17420
17420
|
},
|
|
17421
17421
|
"dependencies": {
|
|
17422
17422
|
"@types/node": {
|
|
17423
|
-
"version": "18.11.
|
|
17424
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
17425
|
-
"integrity": "sha512-
|
|
17423
|
+
"version": "18.11.10",
|
|
17424
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
17425
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
17426
17426
|
}
|
|
17427
17427
|
}
|
|
17428
17428
|
},
|
|
@@ -19510,9 +19510,9 @@
|
|
|
19510
19510
|
"integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA=="
|
|
19511
19511
|
},
|
|
19512
19512
|
"decode-uri-component": {
|
|
19513
|
-
"version": "0.2.
|
|
19514
|
-
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.
|
|
19515
|
-
"integrity": "sha512-
|
|
19513
|
+
"version": "0.2.2",
|
|
19514
|
+
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
|
|
19515
|
+
"integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="
|
|
19516
19516
|
},
|
|
19517
19517
|
"decompress": {
|
|
19518
19518
|
"version": "4.2.1",
|
|
@@ -19833,9 +19833,9 @@
|
|
|
19833
19833
|
},
|
|
19834
19834
|
"dependencies": {
|
|
19835
19835
|
"@types/node": {
|
|
19836
|
-
"version": "18.11.
|
|
19837
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
19838
|
-
"integrity": "sha512-
|
|
19836
|
+
"version": "18.11.10",
|
|
19837
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
19838
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
19839
19839
|
},
|
|
19840
19840
|
"ua-parser-js": {
|
|
19841
19841
|
"version": "1.0.32",
|
|
@@ -20606,9 +20606,9 @@
|
|
|
20606
20606
|
}
|
|
20607
20607
|
},
|
|
20608
20608
|
"minimatch": {
|
|
20609
|
-
"version": "5.1.
|
|
20610
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
20611
|
-
"integrity": "sha512-
|
|
20609
|
+
"version": "5.1.1",
|
|
20610
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
20611
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
20612
20612
|
"requires": {
|
|
20613
20613
|
"brace-expansion": "^2.0.1"
|
|
20614
20614
|
}
|
|
@@ -22334,9 +22334,9 @@
|
|
|
22334
22334
|
}
|
|
22335
22335
|
},
|
|
22336
22336
|
"minimatch": {
|
|
22337
|
-
"version": "5.1.
|
|
22338
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
22339
|
-
"integrity": "sha512-
|
|
22337
|
+
"version": "5.1.1",
|
|
22338
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
22339
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
22340
22340
|
"dev": true,
|
|
22341
22341
|
"requires": {
|
|
22342
22342
|
"brace-expansion": "^2.0.1"
|
|
@@ -26173,9 +26173,9 @@
|
|
|
26173
26173
|
}
|
|
26174
26174
|
},
|
|
26175
26175
|
"minimatch": {
|
|
26176
|
-
"version": "5.1.
|
|
26177
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
26178
|
-
"integrity": "sha512-
|
|
26176
|
+
"version": "5.1.1",
|
|
26177
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
26178
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
26179
26179
|
"requires": {
|
|
26180
26180
|
"brace-expansion": "^2.0.1"
|
|
26181
26181
|
}
|
|
@@ -28316,9 +28316,9 @@
|
|
|
28316
28316
|
}
|
|
28317
28317
|
},
|
|
28318
28318
|
"vm2": {
|
|
28319
|
-
"version": "3.9.
|
|
28320
|
-
"resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.
|
|
28321
|
-
"integrity": "sha512-
|
|
28319
|
+
"version": "3.9.12",
|
|
28320
|
+
"resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.12.tgz",
|
|
28321
|
+
"integrity": "sha512-OMmRsKh1gmdosFzuqmj6O43hqIStqXA24YbwjtUTO0TkOBP8yLNHLplbr4odnAzEcMnm9lt2r3R8kTivn8urMg==",
|
|
28322
28322
|
"requires": {
|
|
28323
28323
|
"acorn": "^8.7.0",
|
|
28324
28324
|
"acorn-walk": "^8.2.0"
|
|
@@ -28377,9 +28377,9 @@
|
|
|
28377
28377
|
},
|
|
28378
28378
|
"dependencies": {
|
|
28379
28379
|
"@types/node": {
|
|
28380
|
-
"version": "18.11.
|
|
28381
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
28382
|
-
"integrity": "sha512-
|
|
28380
|
+
"version": "18.11.10",
|
|
28381
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
28382
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
28383
28383
|
}
|
|
28384
28384
|
}
|
|
28385
28385
|
},
|
|
@@ -28418,9 +28418,9 @@
|
|
|
28418
28418
|
},
|
|
28419
28419
|
"dependencies": {
|
|
28420
28420
|
"@types/node": {
|
|
28421
|
-
"version": "18.11.
|
|
28422
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.
|
|
28423
|
-
"integrity": "sha512-
|
|
28421
|
+
"version": "18.11.10",
|
|
28422
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
28423
|
+
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ=="
|
|
28424
28424
|
},
|
|
28425
28425
|
"brace-expansion": {
|
|
28426
28426
|
"version": "2.0.1",
|
|
@@ -28431,9 +28431,9 @@
|
|
|
28431
28431
|
}
|
|
28432
28432
|
},
|
|
28433
28433
|
"minimatch": {
|
|
28434
|
-
"version": "5.1.
|
|
28435
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.
|
|
28436
|
-
"integrity": "sha512-
|
|
28434
|
+
"version": "5.1.1",
|
|
28435
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
|
|
28436
|
+
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
|
|
28437
28437
|
"requires": {
|
|
28438
28438
|
"brace-expansion": "^2.0.1"
|
|
28439
28439
|
}
|