appium-xcuitest-driver 7.24.0 → 7.24.2
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/CHANGELOG.md +12 -0
- package/build/lib/commands/context.d.ts +4 -2
- package/build/lib/commands/context.d.ts.map +1 -1
- package/build/lib/commands/context.js +13 -8
- package/build/lib/commands/context.js.map +1 -1
- package/build/lib/commands/execute.js +1 -1
- package/build/lib/commands/execute.js.map +1 -1
- package/build/lib/commands/general.js +1 -1
- package/build/lib/commands/general.js.map +1 -1
- package/build/lib/commands/screenshots.d.ts +1 -1
- package/build/lib/commands/screenshots.d.ts.map +1 -1
- package/build/lib/commands/screenshots.js +3 -3
- package/build/lib/commands/screenshots.js.map +1 -1
- package/build/lib/commands/web.d.ts +4 -1
- package/build/lib/commands/web.d.ts.map +1 -1
- package/build/lib/commands/web.js +17 -12
- package/build/lib/commands/web.js.map +1 -1
- package/build/lib/driver.d.ts +7 -8
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +1 -0
- package/build/lib/driver.js.map +1 -1
- package/lib/commands/context.js +13 -8
- package/lib/commands/execute.js +1 -1
- package/lib/commands/general.js +1 -1
- package/lib/commands/screenshots.js +3 -3
- package/lib/commands/web.js +18 -12
- package/lib/driver.js +4 -0
- package/npm-shrinkwrap.json +108 -36
- package/package.json +3 -3
package/lib/commands/context.js
CHANGED
|
@@ -35,7 +35,7 @@ const extensions = {
|
|
|
35
35
|
*/
|
|
36
36
|
let ctxs = [{id: NATIVE_WIN, view: {}}];
|
|
37
37
|
this.contexts = [NATIVE_WIN];
|
|
38
|
-
for (
|
|
38
|
+
for (const view of webviews) {
|
|
39
39
|
ctxs.push({id: `${WEBVIEW_BASE}${view.id}`, view});
|
|
40
40
|
this.contexts.push(view.id.toString());
|
|
41
41
|
}
|
|
@@ -75,7 +75,7 @@ const extensions = {
|
|
|
75
75
|
if (contextId) {
|
|
76
76
|
this.log.info(`Picking webview '${contextId}' after ${timer.getDuration().asMilliSeconds.toFixed(0)}ms`);
|
|
77
77
|
await this.setContext(contextId);
|
|
78
|
-
await this.remote.cancelPageLoad();
|
|
78
|
+
await (/** @type {RemoteDebugger} */ (this.remote)).cancelPageLoad();
|
|
79
79
|
return true;
|
|
80
80
|
}
|
|
81
81
|
|
|
@@ -112,13 +112,15 @@ const extensions = {
|
|
|
112
112
|
|
|
113
113
|
if (!this.remote) {
|
|
114
114
|
await this.connectToRemoteDebugger();
|
|
115
|
+
// @ts-ignore TS does not understand property mutation
|
|
115
116
|
if (!this.remote.appIdKey) {
|
|
117
|
+
// @ts-ignore TS does not understand property mutation
|
|
116
118
|
await this.remote.setConnectionKey();
|
|
117
119
|
}
|
|
118
120
|
}
|
|
119
121
|
const getWebviewPages = async () => {
|
|
120
122
|
try {
|
|
121
|
-
return await this.remote.selectApp(
|
|
123
|
+
return await (/** @type {RemoteDebugger} */ (this.remote)).selectApp(
|
|
122
124
|
useUrl ? this.getCurrentUrl() : undefined,
|
|
123
125
|
this.opts.webviewConnectRetries,
|
|
124
126
|
this.opts.ignoreAboutBlankUrl,
|
|
@@ -141,7 +143,9 @@ const extensions = {
|
|
|
141
143
|
async connectToRemoteDebugger() {
|
|
142
144
|
this.remote = await this.getNewRemoteDebugger();
|
|
143
145
|
|
|
146
|
+
// @ts-ignore static is fine
|
|
144
147
|
this.remote.on(RemoteDebugger.EVENT_PAGE_CHANGE, this.onPageChange.bind(this));
|
|
148
|
+
// @ts-ignore static is fine
|
|
145
149
|
this.remote.on(RemoteDebugger.EVENT_FRAMES_DETACHED, () => {
|
|
146
150
|
if (isNonEmptyArray(this.curWebFrames)) {
|
|
147
151
|
const curWebFrames = this.curWebFrames;
|
|
@@ -333,7 +337,7 @@ const extensions = {
|
|
|
333
337
|
|
|
334
338
|
if (needsPageLoad) {
|
|
335
339
|
this.log.debug('Page load needed. Loading...');
|
|
336
|
-
await this.remote.
|
|
340
|
+
await this.remote.waitForDom();
|
|
337
341
|
}
|
|
338
342
|
|
|
339
343
|
this.log.debug('New page listing is same as old, doing nothing');
|
|
@@ -371,7 +375,7 @@ const helpers = {
|
|
|
371
375
|
*/
|
|
372
376
|
async stopRemote(closeWindowBeforeDisconnecting = false) {
|
|
373
377
|
if (!this.remote) {
|
|
374
|
-
this.log.
|
|
378
|
+
throw this.log.errorWithException('Tried to leave a web frame but were not in one');
|
|
375
379
|
}
|
|
376
380
|
|
|
377
381
|
if (closeWindowBeforeDisconnecting) {
|
|
@@ -435,6 +439,7 @@ const helpers = {
|
|
|
435
439
|
},
|
|
436
440
|
/**
|
|
437
441
|
* @this {XCUITestDriver}
|
|
442
|
+
* @returns {Promise<RemoteDebugger>}
|
|
438
443
|
*/
|
|
439
444
|
async getNewRemoteDebugger() {
|
|
440
445
|
let socketPath;
|
|
@@ -547,7 +552,7 @@ const commands = {
|
|
|
547
552
|
const [appIdKey, pageIdKey] = _.map(contextId.split('.'), (id) => parseInt(id, 10));
|
|
548
553
|
try {
|
|
549
554
|
this.selectingNewPage = true;
|
|
550
|
-
await this.remote.selectPage(appIdKey, pageIdKey, skipReadyCheck);
|
|
555
|
+
await (/** @type {RemoteDebugger} */ (this.remote)).selectPage(appIdKey, pageIdKey, skipReadyCheck);
|
|
551
556
|
} catch (err) {
|
|
552
557
|
this.curContext = this.curWindowHandle = oldContext;
|
|
553
558
|
throw err;
|
|
@@ -568,12 +573,12 @@ const commands = {
|
|
|
568
573
|
// start safari logging if the logs handlers are active
|
|
569
574
|
if (name && name !== NATIVE_WIN && this.logs) {
|
|
570
575
|
if (this.logs.safariConsole) {
|
|
571
|
-
|
|
576
|
+
(/** @type {RemoteDebugger} */ (this.remote)).startConsole(
|
|
572
577
|
this.logs.safariConsole.onConsoleLogEvent.bind(this.logs.safariConsole),
|
|
573
578
|
);
|
|
574
579
|
}
|
|
575
580
|
if (this.logs.safariNetwork) {
|
|
576
|
-
|
|
581
|
+
(/** @type {RemoteDebugger} */ (this.remote)).startNetwork(
|
|
577
582
|
this.logs.safariNetwork.onNetworkEvent.bind(this.logs.safariNetwork),
|
|
578
583
|
);
|
|
579
584
|
}
|
package/lib/commands/execute.js
CHANGED
|
@@ -135,7 +135,7 @@ export default {
|
|
|
135
135
|
|
|
136
136
|
args = this.convertElementsForAtoms(args);
|
|
137
137
|
this.asyncWaitMs = this.asyncWaitMs || 0;
|
|
138
|
-
const promise = this.remote.executeAtomAsync(
|
|
138
|
+
const promise = (/** @type {import('appium-remote-debugger').RemoteDebugger} */ (this.remote)).executeAtomAsync(
|
|
139
139
|
'execute_async_script',
|
|
140
140
|
[script, args, this.asyncWaitMs],
|
|
141
141
|
this.curWebFrames,
|
package/lib/commands/general.js
CHANGED
|
@@ -162,7 +162,7 @@ const commands = {
|
|
|
162
162
|
this.setCurrentUrl(url);
|
|
163
163
|
// make sure to clear out any leftover web frames
|
|
164
164
|
this.curWebFrames = [];
|
|
165
|
-
await this.remote.navToUrl(url);
|
|
165
|
+
await (/** @type {import('appium-remote-debugger').RemoteDebugger} */ (this.remote)).navToUrl(url);
|
|
166
166
|
return;
|
|
167
167
|
}
|
|
168
168
|
|
|
@@ -14,8 +14,8 @@ export default {
|
|
|
14
14
|
switch (_.toLower(webScreenshotMode)) {
|
|
15
15
|
case 'page':
|
|
16
16
|
case 'viewport':
|
|
17
|
-
return await this.remote.captureScreenshot({
|
|
18
|
-
coordinateSystem: _.capitalize(webScreenshotMode),
|
|
17
|
+
return await (/** @type {import('appium-remote-debugger').RemoteDebugger} */ (this.remote)).captureScreenshot({
|
|
18
|
+
coordinateSystem: /** @type {'Viewport'|'Page'} */ (_.capitalize(webScreenshotMode)),
|
|
19
19
|
});
|
|
20
20
|
case 'native':
|
|
21
21
|
case undefined:
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
*/
|
|
95
95
|
async getViewportScreenshot() {
|
|
96
96
|
if (this.isWebContext()) {
|
|
97
|
-
return await this.remote.captureScreenshot();
|
|
97
|
+
return await (/** @type {import('appium-remote-debugger').RemoteDebugger} */ (this.remote)).captureScreenshot();
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
let statusBarHeight = await this.getStatusBarHeight();
|
package/lib/commands/web.js
CHANGED
|
@@ -188,7 +188,7 @@ const commands = {
|
|
|
188
188
|
throw new errors.NotImplementedError();
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
await this.remote.execute('window.location.reload()');
|
|
191
|
+
await (/** @type {RemoteDebugger} */ (this.remote)).execute('window.location.reload()');
|
|
192
192
|
},
|
|
193
193
|
/**
|
|
194
194
|
* @this {XCUITestDriver}
|
|
@@ -199,7 +199,7 @@ const commands = {
|
|
|
199
199
|
throw new errors.NotImplementedError();
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
return await this.remote.execute('window.location.href');
|
|
202
|
+
return await (/** @type {RemoteDebugger} */ (this.remote)).execute('window.location.href');
|
|
203
203
|
},
|
|
204
204
|
/**
|
|
205
205
|
* @this {XCUITestDriver}
|
|
@@ -210,7 +210,7 @@ const commands = {
|
|
|
210
210
|
throw new errors.NotImplementedError();
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
return await this.remote.execute('window.document.title');
|
|
213
|
+
return await (/** @type {RemoteDebugger} */ (this.remote)).execute('window.document.title');
|
|
214
214
|
},
|
|
215
215
|
/**
|
|
216
216
|
* @this {XCUITestDriver}
|
|
@@ -222,7 +222,7 @@ const commands = {
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
// get the cookies from the remote debugger, or an empty object
|
|
225
|
-
const {cookies} = await this.remote.getCookies();
|
|
225
|
+
const {cookies} = await (/** @type {RemoteDebugger} */ (this.remote)).getCookies();
|
|
226
226
|
|
|
227
227
|
// the value is URI encoded, so decode it safely
|
|
228
228
|
return cookies.map((cookie) => {
|
|
@@ -306,7 +306,7 @@ const helpers = {
|
|
|
306
306
|
*/
|
|
307
307
|
async _deleteCookie(cookie) {
|
|
308
308
|
const url = `http${cookie.secure ? 's' : ''}://${cookie.domain}${cookie.path}`;
|
|
309
|
-
return await this.remote.deleteCookie(cookie.name, url);
|
|
309
|
+
return await (/** @type {RemoteDebugger} */ (this.remote)).deleteCookie(cookie.name, url);
|
|
310
310
|
},
|
|
311
311
|
/**
|
|
312
312
|
* @this {XCUITestDriver}
|
|
@@ -351,18 +351,20 @@ const helpers = {
|
|
|
351
351
|
*/
|
|
352
352
|
async executeAtom(atom, args, alwaysDefaultFrame = false) {
|
|
353
353
|
let frames = alwaysDefaultFrame === true ? [] : this.curWebFrames;
|
|
354
|
-
let promise = this.remote.executeAtom(atom, args, frames);
|
|
354
|
+
let promise = (/** @type {RemoteDebugger} */ (this.remote)).executeAtom(atom, args, frames);
|
|
355
355
|
return await this.waitForAtom(promise);
|
|
356
356
|
},
|
|
357
357
|
/**
|
|
358
358
|
* @this {XCUITestDriver}
|
|
359
|
+
* @param {string} atom
|
|
360
|
+
* @param {any[]} args
|
|
359
361
|
*/
|
|
360
|
-
async executeAtomAsync(atom, args
|
|
362
|
+
async executeAtomAsync(atom, args) {
|
|
361
363
|
// save the resolve and reject methods of the promise to be waited for
|
|
362
364
|
let promise = new B((resolve, reject) => {
|
|
363
365
|
this.asyncPromise = {resolve, reject};
|
|
364
366
|
});
|
|
365
|
-
await this.remote.executeAtomAsync(atom, args, this.curWebFrames
|
|
367
|
+
await (/** @type {RemoteDebugger} */ (this.remote)).executeAtomAsync(atom, args, this.curWebFrames);
|
|
366
368
|
return await this.waitForAtom(promise);
|
|
367
369
|
},
|
|
368
370
|
/**
|
|
@@ -673,7 +675,7 @@ const extensions = {
|
|
|
673
675
|
const { offsetX, offsetY, pixelRatioX, pixelRatioY } = this.webviewCalibrationResult;
|
|
674
676
|
const cmd = '(function () {return {innerWidth: window.innerWidth, innerHeight: window.innerHeight, ' +
|
|
675
677
|
'outerWidth: window.outerWidth, outerHeight: window.outerHeight}; })()';
|
|
676
|
-
const wvDims = await this.remote.execute(cmd);
|
|
678
|
+
const wvDims = await (/** @type {RemoteDebugger} */ (this.remote)).execute(cmd);
|
|
677
679
|
// https://tripleodeon.com/2011/12/first-understand-your-screen/
|
|
678
680
|
const shouldApplyPixelRatio = wvDims.innerWidth > wvDims.outerWidth
|
|
679
681
|
|| wvDims.innerHeight > wvDims.outerHeight;
|
|
@@ -713,7 +715,7 @@ const extensions = {
|
|
|
713
715
|
const realDims = {w: rect.width, h: rect.height};
|
|
714
716
|
|
|
715
717
|
const cmd = '(function () { return {w: window.innerWidth, h: window.innerHeight}; })()';
|
|
716
|
-
const wvDims = await this.remote.execute(cmd);
|
|
718
|
+
const wvDims = await (/** @type {RemoteDebugger} */ (this.remote)).execute(cmd);
|
|
717
719
|
|
|
718
720
|
// keep track of implicit wait, and set locally to 0
|
|
719
721
|
// https://github.com/appium/appium/issues/14988
|
|
@@ -854,11 +856,11 @@ const extensions = {
|
|
|
854
856
|
* @this {XCUITestDriver}
|
|
855
857
|
*/
|
|
856
858
|
async mobileWebNav(navType) {
|
|
857
|
-
this.remote.allowNavigationWithoutReload = true;
|
|
859
|
+
(/** @type {RemoteDebugger} */ (this.remote)).allowNavigationWithoutReload = true;
|
|
858
860
|
try {
|
|
859
861
|
await this.executeAtom('execute_script', [`history.${navType}();`, null]);
|
|
860
862
|
} finally {
|
|
861
|
-
this.remote.allowNavigationWithoutReload = false;
|
|
863
|
+
(/** @type {RemoteDebugger} */ (this.remote)).allowNavigationWithoutReload = false;
|
|
862
864
|
}
|
|
863
865
|
},
|
|
864
866
|
|
|
@@ -1006,3 +1008,7 @@ export default {...helpers, ...extensions, ...commands};
|
|
|
1006
1008
|
* @template {string} [S=string]
|
|
1007
1009
|
* @typedef {import('@appium/types').Element<S>} Element
|
|
1008
1010
|
*/
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* @typedef {import('appium-remote-debugger').RemoteDebugger} RemoteDebugger
|
|
1014
|
+
*/
|
package/lib/driver.js
CHANGED
|
@@ -262,6 +262,9 @@ export class XCUITestDriver extends BaseDriver {
|
|
|
262
262
|
/** @type {WebDriverAgent} */
|
|
263
263
|
wda;
|
|
264
264
|
|
|
265
|
+
/** @type {import('appium-remote-debugger').RemoteDebugger|null} */
|
|
266
|
+
remote;
|
|
267
|
+
|
|
265
268
|
/**
|
|
266
269
|
*
|
|
267
270
|
* @param {XCUITestDriverOpts} opts
|
|
@@ -310,6 +313,7 @@ export class XCUITestDriver extends BaseDriver {
|
|
|
310
313
|
this.lifecycleData = {};
|
|
311
314
|
this._audioRecorder = null;
|
|
312
315
|
this.appInfosCache = new AppInfosCache(this.log);
|
|
316
|
+
this.remote = null;
|
|
313
317
|
}
|
|
314
318
|
|
|
315
319
|
async onSettingsUpdate(key, value) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-xcuitest-driver",
|
|
3
|
-
"version": "7.24.
|
|
3
|
+
"version": "7.24.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-xcuitest-driver",
|
|
9
|
-
"version": "7.24.
|
|
9
|
+
"version": "7.24.2",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@colors/colors": "^1.6.0",
|
|
13
13
|
"appium-idb": "^1.6.13",
|
|
14
14
|
"appium-ios-device": "^2.5.4",
|
|
15
15
|
"appium-ios-simulator": "^6.1.7",
|
|
16
|
-
"appium-remote-debugger": "^11.3
|
|
17
|
-
"appium-webdriveragent": "^8.7.
|
|
16
|
+
"appium-remote-debugger": "^11.5.3",
|
|
17
|
+
"appium-webdriveragent": "^8.7.8",
|
|
18
18
|
"appium-xcode": "^5.1.4",
|
|
19
19
|
"async-lock": "^1.4.0",
|
|
20
20
|
"asyncbox": "^3.0.0",
|
|
@@ -112,6 +112,11 @@
|
|
|
112
112
|
"spdy": "4.0.2"
|
|
113
113
|
}
|
|
114
114
|
},
|
|
115
|
+
"node_modules/@appium/base-driver/node_modules/@types/lodash": {
|
|
116
|
+
"version": "4.17.6",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.6.tgz",
|
|
118
|
+
"integrity": "sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA=="
|
|
119
|
+
},
|
|
115
120
|
"node_modules/@appium/base-driver/node_modules/lru-cache": {
|
|
116
121
|
"version": "10.3.0",
|
|
117
122
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz",
|
|
@@ -120,6 +125,17 @@
|
|
|
120
125
|
"node": "14 || >=16.14"
|
|
121
126
|
}
|
|
122
127
|
},
|
|
128
|
+
"node_modules/@appium/base-driver/node_modules/type-fest": {
|
|
129
|
+
"version": "4.21.0",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz",
|
|
131
|
+
"integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==",
|
|
132
|
+
"engines": {
|
|
133
|
+
"node": ">=16"
|
|
134
|
+
},
|
|
135
|
+
"funding": {
|
|
136
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
123
139
|
"node_modules/@appium/docutils": {
|
|
124
140
|
"version": "1.0.18",
|
|
125
141
|
"resolved": "https://registry.npmjs.org/@appium/docutils/-/docutils-1.0.18.tgz",
|
|
@@ -154,6 +170,40 @@
|
|
|
154
170
|
"npm": ">=8"
|
|
155
171
|
}
|
|
156
172
|
},
|
|
173
|
+
"node_modules/@appium/docutils/node_modules/semver": {
|
|
174
|
+
"version": "7.6.2",
|
|
175
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
|
|
176
|
+
"integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
|
|
177
|
+
"bin": {
|
|
178
|
+
"semver": "bin/semver.js"
|
|
179
|
+
},
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=10"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/@appium/docutils/node_modules/type-fest": {
|
|
185
|
+
"version": "4.21.0",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz",
|
|
187
|
+
"integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==",
|
|
188
|
+
"engines": {
|
|
189
|
+
"node": ">=16"
|
|
190
|
+
},
|
|
191
|
+
"funding": {
|
|
192
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"node_modules/@appium/docutils/node_modules/typescript": {
|
|
196
|
+
"version": "5.5.3",
|
|
197
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz",
|
|
198
|
+
"integrity": "sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==",
|
|
199
|
+
"bin": {
|
|
200
|
+
"tsc": "bin/tsc",
|
|
201
|
+
"tsserver": "bin/tsserver"
|
|
202
|
+
},
|
|
203
|
+
"engines": {
|
|
204
|
+
"node": ">=14.17"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
157
207
|
"node_modules/@appium/logger": {
|
|
158
208
|
"version": "1.6.0",
|
|
159
209
|
"resolved": "https://registry.npmjs.org/@appium/logger/-/logger-1.6.0.tgz",
|
|
@@ -270,6 +320,28 @@
|
|
|
270
320
|
"sharp": "0.33.4"
|
|
271
321
|
}
|
|
272
322
|
},
|
|
323
|
+
"node_modules/@appium/support/node_modules/semver": {
|
|
324
|
+
"version": "7.6.2",
|
|
325
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
|
|
326
|
+
"integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
|
|
327
|
+
"bin": {
|
|
328
|
+
"semver": "bin/semver.js"
|
|
329
|
+
},
|
|
330
|
+
"engines": {
|
|
331
|
+
"node": ">=10"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"node_modules/@appium/support/node_modules/type-fest": {
|
|
335
|
+
"version": "4.21.0",
|
|
336
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz",
|
|
337
|
+
"integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==",
|
|
338
|
+
"engines": {
|
|
339
|
+
"node": ">=16"
|
|
340
|
+
},
|
|
341
|
+
"funding": {
|
|
342
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
273
345
|
"node_modules/@appium/tsconfig": {
|
|
274
346
|
"version": "0.3.3",
|
|
275
347
|
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.3.tgz",
|
|
@@ -299,6 +371,17 @@
|
|
|
299
371
|
"npm": ">=8"
|
|
300
372
|
}
|
|
301
373
|
},
|
|
374
|
+
"node_modules/@appium/types/node_modules/type-fest": {
|
|
375
|
+
"version": "4.21.0",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz",
|
|
377
|
+
"integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==",
|
|
378
|
+
"engines": {
|
|
379
|
+
"node": ">=16"
|
|
380
|
+
},
|
|
381
|
+
"funding": {
|
|
382
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
302
385
|
"node_modules/@babel/code-frame": {
|
|
303
386
|
"version": "7.24.7",
|
|
304
387
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
|
|
@@ -639,9 +722,9 @@
|
|
|
639
722
|
"integrity": "sha512-Q8oFIHJHr+htLrTXN2FuZfg+WXVHQRwU/hC2GpUu+Q8e3FUM9EDkS2pE3R2AO1ZGu56f479ybdMCNF1DAu8cAQ=="
|
|
640
723
|
},
|
|
641
724
|
"node_modules/@types/lodash": {
|
|
642
|
-
"version": "4.17.
|
|
643
|
-
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.
|
|
644
|
-
"integrity": "sha512-
|
|
725
|
+
"version": "4.17.7",
|
|
726
|
+
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz",
|
|
727
|
+
"integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA=="
|
|
645
728
|
},
|
|
646
729
|
"node_modules/@types/method-override": {
|
|
647
730
|
"version": "0.0.35",
|
|
@@ -670,9 +753,9 @@
|
|
|
670
753
|
}
|
|
671
754
|
},
|
|
672
755
|
"node_modules/@types/node": {
|
|
673
|
-
"version": "20.14.
|
|
674
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.
|
|
675
|
-
"integrity": "sha512-
|
|
756
|
+
"version": "20.14.12",
|
|
757
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.12.tgz",
|
|
758
|
+
"integrity": "sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==",
|
|
676
759
|
"dependencies": {
|
|
677
760
|
"undici-types": "~5.26.4"
|
|
678
761
|
}
|
|
@@ -887,9 +970,9 @@
|
|
|
887
970
|
}
|
|
888
971
|
},
|
|
889
972
|
"node_modules/appium-remote-debugger": {
|
|
890
|
-
"version": "11.3
|
|
891
|
-
"resolved": "https://registry.npmjs.org/appium-remote-debugger/-/appium-remote-debugger-11.3.
|
|
892
|
-
"integrity": "sha512-
|
|
973
|
+
"version": "11.5.3",
|
|
974
|
+
"resolved": "https://registry.npmjs.org/appium-remote-debugger/-/appium-remote-debugger-11.5.3.tgz",
|
|
975
|
+
"integrity": "sha512-O0A5gxXQBgl+KvdHhVgjTiNm2ns1pHRbk0Op4RCAAq2Op7a32IPGjULQSaI6fa7Um26PBBy3HmglPeLi265H3A==",
|
|
893
976
|
"dependencies": {
|
|
894
977
|
"@appium/base-driver": "^9.0.0",
|
|
895
978
|
"@appium/support": "^5.0.3",
|
|
@@ -909,9 +992,9 @@
|
|
|
909
992
|
}
|
|
910
993
|
},
|
|
911
994
|
"node_modules/appium-webdriveragent": {
|
|
912
|
-
"version": "8.7.
|
|
913
|
-
"resolved": "https://registry.npmjs.org/appium-webdriveragent/-/appium-webdriveragent-8.7.
|
|
914
|
-
"integrity": "sha512-
|
|
995
|
+
"version": "8.7.9",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/appium-webdriveragent/-/appium-webdriveragent-8.7.9.tgz",
|
|
997
|
+
"integrity": "sha512-SvGZpM126rfUpIoWEZciDQ53Ek2WsdNtt0cJZtBDW1Cv4Zws4gqjrJd3BgB6uZj9kjhS4OGXYSzXSvEcCzb2cw==",
|
|
915
998
|
"dependencies": {
|
|
916
999
|
"@appium/base-driver": "^9.0.0",
|
|
917
1000
|
"@appium/strongbox": "^0.x",
|
|
@@ -2180,9 +2263,9 @@
|
|
|
2180
2263
|
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
|
|
2181
2264
|
},
|
|
2182
2265
|
"node_modules/is-core-module": {
|
|
2183
|
-
"version": "2.
|
|
2184
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.
|
|
2185
|
-
"integrity": "sha512-
|
|
2266
|
+
"version": "2.15.0",
|
|
2267
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz",
|
|
2268
|
+
"integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==",
|
|
2186
2269
|
"dependencies": {
|
|
2187
2270
|
"hasown": "^2.0.2"
|
|
2188
2271
|
},
|
|
@@ -3231,9 +3314,9 @@
|
|
|
3231
3314
|
"optional": true
|
|
3232
3315
|
},
|
|
3233
3316
|
"node_modules/semver": {
|
|
3234
|
-
"version": "7.6.
|
|
3235
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.
|
|
3236
|
-
"integrity": "sha512-
|
|
3317
|
+
"version": "7.6.3",
|
|
3318
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
|
|
3319
|
+
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
|
|
3237
3320
|
"bin": {
|
|
3238
3321
|
"semver": "bin/semver.js"
|
|
3239
3322
|
},
|
|
@@ -3770,17 +3853,6 @@
|
|
|
3770
3853
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
3771
3854
|
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
|
|
3772
3855
|
},
|
|
3773
|
-
"node_modules/type-fest": {
|
|
3774
|
-
"version": "4.21.0",
|
|
3775
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz",
|
|
3776
|
-
"integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==",
|
|
3777
|
-
"engines": {
|
|
3778
|
-
"node": ">=16"
|
|
3779
|
-
},
|
|
3780
|
-
"funding": {
|
|
3781
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3782
|
-
}
|
|
3783
|
-
},
|
|
3784
3856
|
"node_modules/type-is": {
|
|
3785
3857
|
"version": "1.6.18",
|
|
3786
3858
|
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
|
@@ -3794,9 +3866,9 @@
|
|
|
3794
3866
|
}
|
|
3795
3867
|
},
|
|
3796
3868
|
"node_modules/typescript": {
|
|
3797
|
-
"version": "5.5.
|
|
3798
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.
|
|
3799
|
-
"integrity": "sha512
|
|
3869
|
+
"version": "5.5.4",
|
|
3870
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz",
|
|
3871
|
+
"integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==",
|
|
3800
3872
|
"bin": {
|
|
3801
3873
|
"tsc": "bin/tsc",
|
|
3802
3874
|
"tsserver": "bin/tsserver"
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"xcuitest",
|
|
9
9
|
"xctest"
|
|
10
10
|
],
|
|
11
|
-
"version": "7.24.
|
|
11
|
+
"version": "7.24.2",
|
|
12
12
|
"author": "Appium Contributors",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"repository": {
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"appium-idb": "^1.6.13",
|
|
81
81
|
"appium-ios-device": "^2.5.4",
|
|
82
82
|
"appium-ios-simulator": "^6.1.7",
|
|
83
|
-
"appium-remote-debugger": "^11.3
|
|
84
|
-
"appium-webdriveragent": "^8.7.
|
|
83
|
+
"appium-remote-debugger": "^11.5.3",
|
|
84
|
+
"appium-webdriveragent": "^8.7.8",
|
|
85
85
|
"appium-xcode": "^5.1.4",
|
|
86
86
|
"async-lock": "^1.4.0",
|
|
87
87
|
"asyncbox": "^3.0.0",
|