appium-xcuitest-driver 10.8.3 → 10.8.4
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 +6 -0
- package/build/lib/commands/app-management.js +1 -1
- package/build/lib/commands/app-management.js.map +1 -1
- package/build/lib/commands/file-movement.d.ts.map +1 -1
- package/build/lib/commands/file-movement.js +4 -4
- package/build/lib/commands/file-movement.js.map +1 -1
- package/build/lib/commands/memory.js +1 -1
- package/build/lib/commands/memory.js.map +1 -1
- package/build/lib/commands/performance.d.ts.map +1 -1
- package/build/lib/commands/performance.js +13 -4
- package/build/lib/commands/performance.js.map +1 -1
- package/build/lib/commands/xctest-record-screen.js +1 -1
- package/build/lib/commands/xctest-record-screen.js.map +1 -1
- package/build/lib/device/device-connections-factory.d.ts +18 -0
- package/build/lib/device/device-connections-factory.d.ts.map +1 -0
- package/build/lib/{device-connections-factory.js → device/device-connections-factory.js} +57 -41
- package/build/lib/device/device-connections-factory.js.map +1 -0
- package/build/lib/device/real-device-management.d.ts +146 -0
- package/build/lib/device/real-device-management.d.ts.map +1 -0
- package/build/lib/device/real-device-management.js +727 -0
- package/build/lib/device/real-device-management.js.map +1 -0
- package/build/lib/device/simulator-management.d.ts +65 -0
- package/build/lib/device/simulator-management.d.ts.map +1 -0
- package/build/lib/{simulator-management.js → device/simulator-management.js} +23 -42
- package/build/lib/device/simulator-management.js.map +1 -0
- package/build/lib/driver.d.ts +1 -1
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +5 -6
- package/build/lib/driver.js.map +1 -1
- package/lib/commands/app-management.js +1 -1
- package/lib/commands/file-movement.js +8 -4
- package/lib/commands/memory.js +1 -1
- package/lib/commands/performance.js +12 -1
- package/lib/commands/xctest-record-screen.js +1 -1
- package/lib/{device-connections-factory.js → device/device-connections-factory.ts} +96 -60
- package/lib/device/real-device-management.ts +818 -0
- package/lib/{simulator-management.js → device/simulator-management.ts} +68 -61
- package/lib/driver.js +3 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/build/lib/device-connections-factory.d.ts +0 -13
- package/build/lib/device-connections-factory.d.ts.map +0 -1
- package/build/lib/device-connections-factory.js.map +0 -1
- package/build/lib/ios-fs-helpers.d.ts +0 -75
- package/build/lib/ios-fs-helpers.d.ts.map +0 -1
- package/build/lib/ios-fs-helpers.js +0 -370
- package/build/lib/ios-fs-helpers.js.map +0 -1
- package/build/lib/real-device-management.d.ts +0 -53
- package/build/lib/real-device-management.d.ts.map +0 -1
- package/build/lib/real-device-management.js +0 -128
- package/build/lib/real-device-management.js.map +0 -1
- package/build/lib/real-device.d.ts +0 -112
- package/build/lib/real-device.d.ts.map +0 -1
- package/build/lib/real-device.js +0 -352
- package/build/lib/real-device.js.map +0 -1
- package/build/lib/simulator-management.d.ts +0 -96
- package/build/lib/simulator-management.d.ts.map +0 -1
- package/build/lib/simulator-management.js.map +0 -1
- package/build/lib/xcrun.d.ts +0 -3
- package/build/lib/xcrun.d.ts.map +0 -1
- package/build/lib/xcrun.js +0 -17
- package/build/lib/xcrun.js.map +0 -1
- package/lib/ios-fs-helpers.js +0 -355
- package/lib/real-device-management.js +0 -133
- package/lib/real-device.js +0 -347
- package/lib/xcrun.js +0 -16
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import {getSimulator} from 'appium-ios-simulator';
|
|
1
|
+
import {getSimulator, type Simulator, type LocalizationOptions} from 'appium-ios-simulator';
|
|
2
2
|
import {Simctl} from 'node-simctl';
|
|
3
3
|
import {resetTestProcesses} from 'appium-webdriveragent';
|
|
4
4
|
import _ from 'lodash';
|
|
5
5
|
import {util, timing} from 'appium/support';
|
|
6
|
-
import {UDID_AUTO, normalizePlatformName} from '
|
|
7
|
-
import {buildSafariPreferences} from '
|
|
6
|
+
import {UDID_AUTO, normalizePlatformName} from '../utils';
|
|
7
|
+
import {buildSafariPreferences} from '../app-utils';
|
|
8
|
+
import type { XCUITestDriver } from '../driver';
|
|
8
9
|
|
|
9
10
|
const APPIUM_SIM_PREFIX = 'appiumTest';
|
|
10
11
|
|
|
11
12
|
/**
|
|
12
13
|
* Create a new simulator with `appiumTest-` prefix and return the object.
|
|
13
14
|
*
|
|
14
|
-
* @
|
|
15
|
-
* @returns {Promise<object>} Simulator object associated with the udid passed in.
|
|
15
|
+
* @returns Simulator object associated with the udid passed in.
|
|
16
16
|
*/
|
|
17
|
-
export async function createSim() {
|
|
17
|
+
export async function createSim(this: XCUITestDriver): Promise<Simulator> {
|
|
18
18
|
const {simulatorDevicesSetPath: devicesSetPath, deviceName, platformVersion} = this.opts;
|
|
19
19
|
const platform = normalizePlatformName(this.opts.platformName);
|
|
20
20
|
const simctl = new Simctl({devicesSetPath});
|
|
21
21
|
if (!deviceName) {
|
|
22
|
-
let deviceNames = 'none';
|
|
22
|
+
let deviceNames: string | string[] = 'none';
|
|
23
23
|
try {
|
|
24
24
|
deviceNames = (await simctl
|
|
25
25
|
.getDevices(platformVersion, platform))
|
|
@@ -47,22 +47,12 @@ export async function createSim() {
|
|
|
47
47
|
});
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
/**
|
|
51
|
-
* @typedef {Object} SimulatorLookupOptions
|
|
52
|
-
* @property {string} [deviceName] - The name of the device to lookup
|
|
53
|
-
* @property {string} platformVersion - The platform version string
|
|
54
|
-
* @property {string} [simulatorDevicesSetPath] - The full path to the simulator devices set
|
|
55
|
-
* @property {string} [udid] - Simulator udid
|
|
56
|
-
* @property {string} [platformName] The name of the current platform
|
|
57
|
-
*/
|
|
58
|
-
|
|
59
50
|
/**
|
|
60
51
|
* Get an existing simulator matching the provided capabilities.
|
|
61
52
|
*
|
|
62
|
-
* @
|
|
63
|
-
* @returns {Promise<import('./driver').Simulator|null>} The matched Simulator instance or `null` if no matching device is found.
|
|
53
|
+
* @returns The matched Simulator instance or `null` if no matching device is found.
|
|
64
54
|
*/
|
|
65
|
-
export async function getExistingSim() {
|
|
55
|
+
export async function getExistingSim(this: XCUITestDriver): Promise<Simulator | null> {
|
|
66
56
|
const {
|
|
67
57
|
platformVersion,
|
|
68
58
|
deviceName,
|
|
@@ -72,7 +62,7 @@ export async function getExistingSim() {
|
|
|
72
62
|
} = this.opts;
|
|
73
63
|
|
|
74
64
|
const platform = normalizePlatformName(platformName);
|
|
75
|
-
const selectSim = async (
|
|
65
|
+
const selectSim = async (dev: { udid: string; platform: string; }): Promise<Simulator> =>
|
|
76
66
|
await getSimulator(dev.udid, {
|
|
77
67
|
platform,
|
|
78
68
|
checkExistence: false,
|
|
@@ -82,7 +72,7 @@ export async function getExistingSim() {
|
|
|
82
72
|
});
|
|
83
73
|
|
|
84
74
|
const simctl = new Simctl({devicesSetPath});
|
|
85
|
-
let devicesMap;
|
|
75
|
+
let devicesMap: Record<string, any[]> | undefined;
|
|
86
76
|
if (udid && _.toLower(udid) !== UDID_AUTO) {
|
|
87
77
|
this.log.debug(`Looking for an existing Simulator with UDID '${udid}'`);
|
|
88
78
|
devicesMap = await simctl.getDevices(null, platform);
|
|
@@ -123,21 +113,23 @@ export async function getExistingSim() {
|
|
|
123
113
|
}
|
|
124
114
|
|
|
125
115
|
/**
|
|
126
|
-
*
|
|
116
|
+
* Shutdown simulator
|
|
127
117
|
*/
|
|
128
|
-
export async function shutdownSimulator() {
|
|
129
|
-
const device =
|
|
118
|
+
export async function shutdownSimulator(this: XCUITestDriver): Promise<void> {
|
|
119
|
+
const device = this.device as Simulator;
|
|
130
120
|
// stop XCTest processes if running to avoid unexpected side effects
|
|
131
121
|
await resetTestProcesses(device.udid, true);
|
|
132
122
|
await device.shutdown();
|
|
133
123
|
}
|
|
134
124
|
|
|
135
125
|
/**
|
|
136
|
-
*
|
|
137
|
-
* @
|
|
138
|
-
* @returns {Promise<void>}
|
|
126
|
+
* Run simulator reset
|
|
127
|
+
* @param enforceSimulatorShutdown Whether to enforce simulator shutdown
|
|
139
128
|
*/
|
|
140
|
-
export async function runSimulatorReset(
|
|
129
|
+
export async function runSimulatorReset(
|
|
130
|
+
this: XCUITestDriver,
|
|
131
|
+
enforceSimulatorShutdown: boolean = false
|
|
132
|
+
): Promise<void> {
|
|
141
133
|
const {
|
|
142
134
|
noReset,
|
|
143
135
|
fullReset,
|
|
@@ -152,7 +144,7 @@ export async function runSimulatorReset(enforceSimulatorShutdown = false) {
|
|
|
152
144
|
this.log.debug('Reset: noReset is on. Leaving simulator as is');
|
|
153
145
|
return;
|
|
154
146
|
}
|
|
155
|
-
const device =
|
|
147
|
+
const device = this.device as Simulator;
|
|
156
148
|
|
|
157
149
|
if (!this.device) {
|
|
158
150
|
this.log.debug('Reset: no device available. Skipping');
|
|
@@ -194,8 +186,8 @@ export async function runSimulatorReset(enforceSimulatorShutdown = false) {
|
|
|
194
186
|
await device.scrubApp(bundleId);
|
|
195
187
|
}
|
|
196
188
|
} catch (err) {
|
|
197
|
-
this.log.debug(err.stack);
|
|
198
|
-
this.log.warn(err.message);
|
|
189
|
+
this.log.debug((err as Error).stack);
|
|
190
|
+
this.log.warn((err as Error).message);
|
|
199
191
|
this.log.warn(
|
|
200
192
|
`Reset: could not scrub ${
|
|
201
193
|
isSafari ? 'Safari browser' : 'application with id "' + this.opts.bundleId + '"'
|
|
@@ -205,36 +197,30 @@ export async function runSimulatorReset(enforceSimulatorShutdown = false) {
|
|
|
205
197
|
}
|
|
206
198
|
|
|
207
199
|
if (enforceSimulatorShutdown && (await device.isRunning())) {
|
|
208
|
-
await shutdownSimulator.bind(this)(
|
|
200
|
+
await shutdownSimulator.bind(this)();
|
|
209
201
|
}
|
|
210
202
|
}
|
|
211
203
|
}
|
|
212
204
|
|
|
213
205
|
/**
|
|
214
|
-
*
|
|
215
|
-
*
|
|
216
|
-
* @
|
|
217
|
-
* @
|
|
218
|
-
*/
|
|
219
|
-
|
|
220
|
-
/**
|
|
221
|
-
* @this {import('./driver').XCUITestDriver}
|
|
222
|
-
* @param {string} app The app to the path
|
|
223
|
-
* @param {string} [bundleId] The bundle id to ensure it is already installed and uninstall it
|
|
224
|
-
* @param {InstallOptions} [opts={}]
|
|
206
|
+
* Install app to simulator
|
|
207
|
+
* @param app The app to the path
|
|
208
|
+
* @param bundleId The bundle id to ensure it is already installed and uninstall it
|
|
209
|
+
* @param opts Install options
|
|
225
210
|
*/
|
|
226
211
|
export async function installToSimulator(
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
212
|
+
this: XCUITestDriver,
|
|
213
|
+
app: string,
|
|
214
|
+
bundleId?: string,
|
|
215
|
+
opts: SimulatorInstallOptions = {},
|
|
216
|
+
): Promise<void> {
|
|
231
217
|
if (!app) {
|
|
232
218
|
this.log.debug('No app path is given. Nothing to install.');
|
|
233
219
|
return;
|
|
234
220
|
}
|
|
235
221
|
|
|
236
222
|
const {skipUninstall, newSimulator = false} = opts;
|
|
237
|
-
const device =
|
|
223
|
+
const device = this.device as Simulator;
|
|
238
224
|
|
|
239
225
|
if (!skipUninstall && !newSimulator && bundleId && (await device.isAppInstalled(bundleId))) {
|
|
240
226
|
this.log.debug(`Reset requested. Removing app with id '${bundleId}' from the device`);
|
|
@@ -248,10 +234,10 @@ export async function installToSimulator(
|
|
|
248
234
|
}
|
|
249
235
|
|
|
250
236
|
/**
|
|
251
|
-
*
|
|
237
|
+
* Shutdown other simulators
|
|
252
238
|
*/
|
|
253
|
-
export async function shutdownOtherSimulators() {
|
|
254
|
-
const device =
|
|
239
|
+
export async function shutdownOtherSimulators(this: XCUITestDriver): Promise<void> {
|
|
240
|
+
const device = this.device as Simulator;
|
|
255
241
|
const simctl = new Simctl({
|
|
256
242
|
devicesSetPath: device.devicesSetPath,
|
|
257
243
|
});
|
|
@@ -281,30 +267,27 @@ export async function shutdownOtherSimulators() {
|
|
|
281
267
|
/**
|
|
282
268
|
* Configures Safari options based on the given session capabilities
|
|
283
269
|
*
|
|
284
|
-
* @
|
|
285
|
-
* @return {Promise<boolean>} true if any preferences have been updated
|
|
270
|
+
* @returns true if any preferences have been updated
|
|
286
271
|
*/
|
|
287
|
-
export async function setSafariPrefs() {
|
|
272
|
+
export async function setSafariPrefs(this: XCUITestDriver): Promise<boolean> {
|
|
288
273
|
const prefs = buildSafariPreferences(this.opts);
|
|
289
274
|
if (_.isEmpty(prefs)) {
|
|
290
275
|
return false;
|
|
291
276
|
}
|
|
292
277
|
|
|
293
278
|
this.log.debug(`About to update Safari preferences: ${JSON.stringify(prefs)}`);
|
|
294
|
-
await
|
|
279
|
+
await (this.device as Simulator).updateSafariSettings(prefs);
|
|
295
280
|
return true;
|
|
296
281
|
}
|
|
297
282
|
|
|
298
283
|
/**
|
|
299
284
|
* Changes Simulator localization preferences
|
|
300
285
|
*
|
|
301
|
-
* @
|
|
302
|
-
* @returns {Promise<boolean>} True if preferences were changed
|
|
286
|
+
* @returns True if preferences were changed
|
|
303
287
|
*/
|
|
304
|
-
export async function setLocalizationPrefs() {
|
|
288
|
+
export async function setLocalizationPrefs(this: XCUITestDriver): Promise<boolean> {
|
|
305
289
|
const {language, locale, calendarFormat, skipSyncUiDialogTranslation} = this.opts;
|
|
306
|
-
|
|
307
|
-
const l10nConfig = {};
|
|
290
|
+
const l10nConfig: LocalizationOptions = {};
|
|
308
291
|
if (language) {
|
|
309
292
|
l10nConfig.language = {name: language, skipSyncUiDialogTranslation };
|
|
310
293
|
}
|
|
@@ -319,6 +302,30 @@ export async function setLocalizationPrefs() {
|
|
|
319
302
|
}
|
|
320
303
|
|
|
321
304
|
this.log.debug(`About to update localization preferences: ${JSON.stringify(l10nConfig)}`);
|
|
322
|
-
await
|
|
305
|
+
await (this.device as Simulator).configureLocalization(l10nConfig);
|
|
323
306
|
return true;
|
|
324
307
|
}
|
|
308
|
+
|
|
309
|
+
//#region Type Definitions
|
|
310
|
+
|
|
311
|
+
export interface SimulatorLookupOptions {
|
|
312
|
+
/** The name of the device to lookup */
|
|
313
|
+
deviceName?: string;
|
|
314
|
+
/** The platform version string */
|
|
315
|
+
platformVersion: string;
|
|
316
|
+
/** The full path to the simulator devices set */
|
|
317
|
+
simulatorDevicesSetPath?: string;
|
|
318
|
+
/** Simulator udid */
|
|
319
|
+
udid?: string;
|
|
320
|
+
/** The name of the current platform */
|
|
321
|
+
platformName?: string;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
export interface SimulatorInstallOptions {
|
|
325
|
+
/** Whether to skip app uninstall before installing it */
|
|
326
|
+
skipUninstall?: boolean;
|
|
327
|
+
/** Whether the simulator is brand new */
|
|
328
|
+
newSimulator?: boolean;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
//#endregion
|
package/lib/driver.js
CHANGED
|
@@ -65,7 +65,7 @@ import * as xctestCommands from './commands/xctest';
|
|
|
65
65
|
import * as xctestRecordScreenCommands from './commands/xctest-record-screen';
|
|
66
66
|
import * as increaseContrastCommands from './commands/increase-contrast';
|
|
67
67
|
import {desiredCapConstraints} from './desired-caps';
|
|
68
|
-
import {DEVICE_CONNECTIONS_FACTORY} from './device-connections-factory';
|
|
68
|
+
import {DEVICE_CONNECTIONS_FACTORY} from './device/device-connections-factory';
|
|
69
69
|
import {executeMethodMap} from './execute-method-map';
|
|
70
70
|
import {newMethodMap} from './method-map';
|
|
71
71
|
import { Pyidevice } from './real-device-clients/py-ios-device-client';
|
|
@@ -74,11 +74,9 @@ import {
|
|
|
74
74
|
runRealDeviceReset,
|
|
75
75
|
applySafariStartupArgs,
|
|
76
76
|
detectUdid,
|
|
77
|
-
} from './real-device-management';
|
|
78
|
-
import {
|
|
79
77
|
RealDevice,
|
|
80
78
|
getConnectedDevices,
|
|
81
|
-
} from './real-device';
|
|
79
|
+
} from './device/real-device-management';
|
|
82
80
|
import {
|
|
83
81
|
createSim,
|
|
84
82
|
getExistingSim,
|
|
@@ -88,7 +86,7 @@ import {
|
|
|
88
86
|
setSafariPrefs,
|
|
89
87
|
shutdownOtherSimulators,
|
|
90
88
|
shutdownSimulator,
|
|
91
|
-
} from './simulator-management';
|
|
89
|
+
} from './device/simulator-management';
|
|
92
90
|
import {
|
|
93
91
|
DEFAULT_TIMEOUT_KEY,
|
|
94
92
|
UDID_AUTO,
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-xcuitest-driver",
|
|
3
|
-
"version": "10.8.
|
|
3
|
+
"version": "10.8.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-xcuitest-driver",
|
|
9
|
-
"version": "10.8.
|
|
9
|
+
"version": "10.8.4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@appium/strongbox": "^1.0.0-rc.1",
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export default DEVICE_CONNECTIONS_FACTORY;
|
|
2
|
-
export const DEVICE_CONNECTIONS_FACTORY: DeviceConnectionsFactory;
|
|
3
|
-
export class DeviceConnectionsFactory {
|
|
4
|
-
_connectionsMapping: {};
|
|
5
|
-
_udidAsToken(udid: any): string;
|
|
6
|
-
_portAsToken(port: any): string;
|
|
7
|
-
_toKey(udid?: null, port?: null): string;
|
|
8
|
-
_releaseProxiedConnections(connectionKeys: any): any;
|
|
9
|
-
listConnections(udid?: null, port?: null, strict?: boolean): string[];
|
|
10
|
-
requestConnection(udid: any, port: any, options?: {}): Promise<void>;
|
|
11
|
-
releaseConnection(udid?: null, port?: null): void;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=device-connections-factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"device-connections-factory.d.ts","sourceRoot":"","sources":["../../lib/device-connections-factory.js"],"names":[],"mappings":";AAyQA,kEAAkE;AAjKlE;IAEI,wBAA6B;IAG/B,gCAEC;IAED,gCAEC;IAED,yCAEC;IAED,qDAWC;IAED,sEAeC;IAED,qEAwFC;IAED,kDAqBC;CACF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"device-connections-factory.js","sourceRoot":"","sources":["../../lib/device-connections-factory.js"],"names":[],"mappings":"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"}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Retrieve a file from a real device
|
|
3
|
-
*
|
|
4
|
-
* @param {any} afcService Apple File Client service instance from
|
|
5
|
-
* 'appium-ios-device' module
|
|
6
|
-
* @param {string} remotePath Relative path to the file on the device
|
|
7
|
-
* @returns {Promise<Buffer>} The file content as a buffer
|
|
8
|
-
*/
|
|
9
|
-
export function pullFile(afcService: any, remotePath: string): Promise<Buffer>;
|
|
10
|
-
/**
|
|
11
|
-
* Retrieve a folder from a real device
|
|
12
|
-
*
|
|
13
|
-
* @param {any} afcService Apple File Client service instance from
|
|
14
|
-
* 'appium-ios-device' module
|
|
15
|
-
* @param {string} remoteRootPath Relative path to the folder on the device
|
|
16
|
-
* @returns {Promise<Buffer>} The folder content as a zipped base64-encoded buffer
|
|
17
|
-
*/
|
|
18
|
-
export function pullFolder(afcService: any, remoteRootPath: string): Promise<Buffer>;
|
|
19
|
-
/**
|
|
20
|
-
* @typedef {Object} PushFileOptions
|
|
21
|
-
* @property {number} [timeoutMs=240000] The maximum count of milliceconds to wait until
|
|
22
|
-
* file push is completed. Cannot be lower than 60000ms
|
|
23
|
-
*/
|
|
24
|
-
/**
|
|
25
|
-
* Pushes a file to a real device
|
|
26
|
-
*
|
|
27
|
-
* @param {any} afcService afcService Apple File Client service instance from
|
|
28
|
-
* 'appium-ios-device' module
|
|
29
|
-
* @param {string|Buffer} localPathOrPayload Either full path to the source file
|
|
30
|
-
* or a buffer payload to be written into the remote destination
|
|
31
|
-
* @param {string} remotePath Relative path to the file on the device. The remote
|
|
32
|
-
* folder structure is created automatically if necessary.
|
|
33
|
-
* @param {PushFileOptions} [opts={}]
|
|
34
|
-
*/
|
|
35
|
-
export function pushFile(afcService: any, localPathOrPayload: string | Buffer, remotePath: string, opts?: PushFileOptions): Promise<void>;
|
|
36
|
-
/**
|
|
37
|
-
* @typedef {Object} PushFolderOptions
|
|
38
|
-
*
|
|
39
|
-
* @property {number} [timeoutMs=240000] The maximum timeout to wait until a
|
|
40
|
-
* single file is copied
|
|
41
|
-
* @property {boolean} [enableParallelPush=false] Whether to push files in parallel.
|
|
42
|
-
* This usually gives better performance, but might sometimes be less stable.
|
|
43
|
-
*/
|
|
44
|
-
/**
|
|
45
|
-
* Pushes a folder to a real device
|
|
46
|
-
*
|
|
47
|
-
* @param {any} afcService Apple File Client service instance from
|
|
48
|
-
* 'appium-ios-device' module
|
|
49
|
-
* @param {string} srcRootPath The full path to the source folder
|
|
50
|
-
* @param {string} dstRootPath The relative path to the destination folder. The folder
|
|
51
|
-
* will be deleted if already exists.
|
|
52
|
-
* @param {PushFolderOptions} opts
|
|
53
|
-
*/
|
|
54
|
-
export function pushFolder(afcService: any, srcRootPath: string, dstRootPath: string, opts?: PushFolderOptions): Promise<void>;
|
|
55
|
-
export const IO_TIMEOUT_MS: number;
|
|
56
|
-
export type PushFileOptions = {
|
|
57
|
-
/**
|
|
58
|
-
* The maximum count of milliceconds to wait until
|
|
59
|
-
* file push is completed. Cannot be lower than 60000ms
|
|
60
|
-
*/
|
|
61
|
-
timeoutMs?: number | undefined;
|
|
62
|
-
};
|
|
63
|
-
export type PushFolderOptions = {
|
|
64
|
-
/**
|
|
65
|
-
* The maximum timeout to wait until a
|
|
66
|
-
* single file is copied
|
|
67
|
-
*/
|
|
68
|
-
timeoutMs?: number | undefined;
|
|
69
|
-
/**
|
|
70
|
-
* Whether to push files in parallel.
|
|
71
|
-
* This usually gives better performance, but might sometimes be less stable.
|
|
72
|
-
*/
|
|
73
|
-
enableParallelPush?: boolean | undefined;
|
|
74
|
-
};
|
|
75
|
-
//# sourceMappingURL=ios-fs-helpers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ios-fs-helpers.d.ts","sourceRoot":"","sources":["../../lib/ios-fs-helpers.js"],"names":[],"mappings":"AAWA;;;;;;;GAOG;AACH,qCALW,GAAG,cAEH,MAAM,GACJ,OAAO,CAAC,MAAM,CAAC,CAY3B;AAgBD;;;;;;;GAOG;AACH,uCALW,GAAG,kBAEH,MAAM,GACJ,OAAO,CAAC,MAAM,CAAC,CA0E3B;AA0BD;;;;GAIG;AAEH;;;;;;;;;;GAUG;AACH,qCARW,GAAG,sBAEH,MAAM,GAAC,MAAM,cAEb,MAAM,SAEN,eAAe,iBAgDzB;AAED;;;;;;;GAOG;AAEH;;;;;;;;;GASG;AACH,uCAPW,GAAG,eAEH,MAAM,eACN,MAAM,SAEN,iBAAiB,iBAyH3B;AA5VD,mCAA2C"}
|