appium-remote-debugger 8.13.2 → 9.0.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/README.md +3 -3
- package/build/index.js +6 -6
- package/build/lib/atoms.js +4 -4
- package/build/lib/logger.js +3 -3
- package/build/lib/mixins/connect.js +4 -4
- package/build/lib/mixins/events.js +1 -1
- package/build/lib/mixins/execute.js +6 -6
- package/build/lib/mixins/index.js +3 -2
- package/build/lib/mixins/message-handlers.js +1 -1
- package/build/lib/mixins/navigate.js +7 -7
- package/build/lib/protocol/index.js +2 -2
- package/build/lib/remote-debugger-real-device.js +1 -1
- package/build/lib/remote-debugger.js +3 -3
- package/build/lib/rpc/index.js +5 -5
- package/build/lib/rpc/remote-messages.js +1 -1
- package/build/lib/rpc/rpc-client-real-device.js +1 -1
- package/build/lib/rpc/rpc-client-simulator.js +1 -1
- package/build/lib/rpc/rpc-client.js +9 -9
- package/build/lib/rpc/rpc-message-handler.js +5 -5
- package/build/lib/utils.js +10 -10
- package/lib/atoms.js +1 -1
- package/lib/logger.js +1 -1
- package/lib/mixins/connect.js +1 -1
- package/lib/mixins/execute.js +2 -2
- package/lib/mixins/navigate.js +1 -1
- package/lib/rpc/rpc-client.js +1 -1
- package/lib/rpc/rpc-message-handler.js +1 -1
- package/lib/utils.js +2 -2
- package/package.json +14 -12
package/lib/mixins/execute.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import log from '../logger';
|
|
2
|
-
import { errors } from 'appium
|
|
2
|
+
import { errors } from '@appium/base-driver';
|
|
3
3
|
import { checkParams, simpleStringify, convertResult, RESPONSE_LOG_LENGTH } from '../utils';
|
|
4
4
|
import { getScriptForAtom } from '../atoms';
|
|
5
|
-
import { util, timing } from 'appium
|
|
5
|
+
import { util, timing } from '@appium/support';
|
|
6
6
|
import { retryInterval } from 'asyncbox';
|
|
7
7
|
import _ from 'lodash';
|
|
8
8
|
|
package/lib/mixins/navigate.js
CHANGED
package/lib/rpc/rpc-client.js
CHANGED
|
@@ -4,7 +4,7 @@ import log from '../logger';
|
|
|
4
4
|
import _ from 'lodash';
|
|
5
5
|
import B from 'bluebird';
|
|
6
6
|
import RpcMessageHandler from './rpc-message-handler';
|
|
7
|
-
import { util, timing } from 'appium
|
|
7
|
+
import { util, timing } from '@appium/support';
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
const DATA_LOG_LENGTH = {length: 200};
|
package/lib/utils.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import log from './logger';
|
|
2
2
|
import _ from 'lodash';
|
|
3
3
|
import B from 'bluebird';
|
|
4
|
-
import { errorFromMJSONWPStatusCode } from 'appium
|
|
5
|
-
import { util } from 'appium
|
|
4
|
+
import { errorFromMJSONWPStatusCode } from '@appium/base-driver';
|
|
5
|
+
import { util } from '@appium/support';
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
const WEB_CONTENT_BUNDLE_ID = 'com.apple.WebKit.WebContent';
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"keywords": [
|
|
5
5
|
"appium"
|
|
6
6
|
],
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "9.0.2",
|
|
8
8
|
"author": "appium",
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"repository": {
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"atoms"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
+
"@appium/base-driver": "^8.5.2",
|
|
34
|
+
"@appium/support": "^2.55.3",
|
|
33
35
|
"@babel/runtime": "^7.0.0",
|
|
34
|
-
"appium-
|
|
35
|
-
"appium-ios-device": "^1.7.0",
|
|
36
|
-
"appium-support": "^2.41.0",
|
|
36
|
+
"appium-ios-device": "^2.0.0",
|
|
37
37
|
"async-lock": "^1.2.2",
|
|
38
38
|
"asyncbox": "^2.6.0",
|
|
39
39
|
"bluebird": "^3.4.7",
|
|
40
40
|
"lodash": "^4.17.11",
|
|
41
|
-
"source-map-support": "^0.
|
|
41
|
+
"source-map-support": "^0.x"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"prepare": "gulp prepublish",
|
|
@@ -63,20 +63,22 @@
|
|
|
63
63
|
"precommit-test"
|
|
64
64
|
],
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"appium
|
|
67
|
-
"appium-
|
|
66
|
+
"@appium/gulp-plugins": "^6.0.0",
|
|
67
|
+
"@appium/eslint-config-appium": "^5.0.0",
|
|
68
|
+
"@semantic-release/git": "^10.0.1",
|
|
69
|
+
"appium-ios-simulator": "^4.0.0",
|
|
68
70
|
"chai": "^4.1.2",
|
|
69
71
|
"chai-as-promised": "^7.1.1",
|
|
70
|
-
"
|
|
71
|
-
"fancy-log": "^1.3.3",
|
|
72
|
+
"fancy-log": "^2.0.0",
|
|
72
73
|
"finalhandler": "^1.1.2",
|
|
73
74
|
"gulp": "^4.0.0",
|
|
74
|
-
"mocha": "^
|
|
75
|
+
"mocha": "^10.0.0",
|
|
75
76
|
"mocha-junit-reporter": "^2.0.0",
|
|
76
77
|
"mocha-multi-reporters": "^1.5.1",
|
|
77
|
-
"node-simctl": "^
|
|
78
|
+
"node-simctl": "^7.0.1",
|
|
78
79
|
"pre-commit": "^1.1.3",
|
|
79
80
|
"serve-static": "^1.14.1",
|
|
80
|
-
"
|
|
81
|
+
"semantic-release": "^19.0.2",
|
|
82
|
+
"sinon": "^13.0.0"
|
|
81
83
|
}
|
|
82
84
|
}
|