appium-xcuitest-driver 10.13.4 → 10.14.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/CHANGELOG.md +12 -0
- package/build/lib/commands/condition.d.ts +9 -72
- package/build/lib/commands/condition.d.ts.map +1 -1
- package/build/lib/commands/condition.js +5 -66
- package/build/lib/commands/condition.js.map +1 -1
- package/build/lib/commands/record-audio.d.ts +25 -53
- package/build/lib/commands/record-audio.d.ts.map +1 -1
- package/build/lib/commands/record-audio.js +17 -19
- package/build/lib/commands/record-audio.js.map +1 -1
- package/build/lib/commands/types.d.ts +58 -0
- package/build/lib/commands/types.d.ts.map +1 -1
- package/build/lib/commands/xctest-record-screen.d.ts +17 -47
- package/build/lib/commands/xctest-record-screen.d.ts.map +1 -1
- package/build/lib/commands/xctest-record-screen.js +28 -59
- package/build/lib/commands/xctest-record-screen.js.map +1 -1
- package/build/lib/driver.d.ts +1 -1
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/execute-method-map.d.ts.map +1 -1
- package/build/lib/execute-method-map.js +2 -6
- package/build/lib/execute-method-map.js.map +1 -1
- package/lib/commands/{condition.js → condition.ts} +21 -77
- package/lib/commands/{record-audio.js → record-audio.ts} +35 -33
- package/lib/commands/types.ts +63 -0
- package/lib/commands/{xctest-record-screen.js → xctest-record-screen.ts} +54 -71
- package/lib/driver.ts +1 -1
- package/lib/execute-method-map.ts +2 -6
- package/npm-shrinkwrap.json +3 -3
- package/package.json +2 -2
|
@@ -466,28 +466,26 @@ export const executeMethodMap = {
|
|
|
466
466
|
command: 'mobileResetLocationService',
|
|
467
467
|
},
|
|
468
468
|
'mobile: startPcap': {
|
|
469
|
-
// @ts-expect-error
|
|
469
|
+
// @ts-expect-error Method exists on XCUITestDriver but is defined in pcap.js (JS file), so TypeScript can't verify it
|
|
470
470
|
command: 'mobileStartPcap',
|
|
471
471
|
params: {
|
|
472
472
|
optional: ['timeLimitSec', 'forceRestart'],
|
|
473
473
|
},
|
|
474
474
|
},
|
|
475
475
|
'mobile: stopPcap': {
|
|
476
|
-
// @ts-expect-error
|
|
476
|
+
// @ts-expect-error Method exists on XCUITestDriver but is defined in pcap.js (JS file), so TypeScript can't verify it
|
|
477
477
|
command: 'mobileStopPcap',
|
|
478
478
|
},
|
|
479
479
|
'mobile: listConditionInducers': {
|
|
480
480
|
command: 'listConditionInducers',
|
|
481
481
|
},
|
|
482
482
|
'mobile: enableConditionInducer': {
|
|
483
|
-
// @ts-expect-error Class field assignment - method exists on XCUITestDriver
|
|
484
483
|
command: 'enableConditionInducer',
|
|
485
484
|
params: {
|
|
486
485
|
required: ['conditionID', 'profileID'],
|
|
487
486
|
},
|
|
488
487
|
},
|
|
489
488
|
'mobile: disableConditionInducer': {
|
|
490
|
-
// @ts-expect-error Class field assignment - method exists on XCUITestDriver
|
|
491
489
|
command: 'disableConditionInducer',
|
|
492
490
|
},
|
|
493
491
|
'mobile: updateSafariPreferences': {
|
|
@@ -529,7 +527,6 @@ export const executeMethodMap = {
|
|
|
529
527
|
command: 'mobileShake',
|
|
530
528
|
},
|
|
531
529
|
'mobile: startAudioRecording': {
|
|
532
|
-
// @ts-expect-error Class field assignment - method exists on XCUITestDriver
|
|
533
530
|
command: 'startAudioRecording',
|
|
534
531
|
params: {
|
|
535
532
|
required: ['audioInput'],
|
|
@@ -544,7 +541,6 @@ export const executeMethodMap = {
|
|
|
544
541
|
},
|
|
545
542
|
},
|
|
546
543
|
'mobile: stopAudioRecording': {
|
|
547
|
-
// @ts-expect-error Class field assignment - method exists on XCUITestDriver
|
|
548
544
|
command: 'stopAudioRecording',
|
|
549
545
|
},
|
|
550
546
|
'mobile: hideKeyboard': {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-xcuitest-driver",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.14.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-xcuitest-driver",
|
|
9
|
-
"version": "10.
|
|
9
|
+
"version": "10.14.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@appium/strongbox": "^1.0.0-rc.1",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"appium-ios-device": "^3.0.0",
|
|
16
16
|
"appium-ios-simulator": "^8.0.0",
|
|
17
17
|
"appium-remote-debugger": "^15.2.0",
|
|
18
|
-
"appium-webdriveragent": "^11.
|
|
18
|
+
"appium-webdriveragent": "^11.1.0",
|
|
19
19
|
"appium-xcode": "^6.0.2",
|
|
20
20
|
"async-lock": "^1.4.0",
|
|
21
21
|
"asyncbox": "^4.0.1",
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"xcuitest",
|
|
9
9
|
"xctest"
|
|
10
10
|
],
|
|
11
|
-
"version": "10.
|
|
11
|
+
"version": "10.14.1",
|
|
12
12
|
"author": "Appium Contributors",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"repository": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"appium-ios-device": "^3.0.0",
|
|
87
87
|
"appium-ios-simulator": "^8.0.0",
|
|
88
88
|
"appium-remote-debugger": "^15.2.0",
|
|
89
|
-
"appium-webdriveragent": "^11.
|
|
89
|
+
"appium-webdriveragent": "^11.1.0",
|
|
90
90
|
"appium-xcode": "^6.0.2",
|
|
91
91
|
"async-lock": "^1.4.0",
|
|
92
92
|
"asyncbox": "^4.0.1",
|