appium-remote-debugger 11.4.1 → 11.5.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/lib/mixins/connect.d.ts +53 -56
  3. package/build/lib/mixins/connect.d.ts.map +1 -1
  4. package/build/lib/mixins/connect.js +72 -96
  5. package/build/lib/mixins/connect.js.map +1 -1
  6. package/build/lib/mixins/cookies.d.ts +22 -0
  7. package/build/lib/mixins/cookies.d.ts.map +1 -0
  8. package/build/lib/mixins/cookies.js +48 -0
  9. package/build/lib/mixins/cookies.js.map +1 -0
  10. package/build/lib/mixins/events.d.ts +17 -2
  11. package/build/lib/mixins/events.d.ts.map +1 -1
  12. package/build/lib/mixins/events.js +29 -2
  13. package/build/lib/mixins/events.js.map +1 -1
  14. package/build/lib/mixins/execute.d.ts +5 -12
  15. package/build/lib/mixins/execute.d.ts.map +1 -1
  16. package/build/lib/mixins/execute.js +18 -30
  17. package/build/lib/mixins/execute.js.map +1 -1
  18. package/build/lib/mixins/message-handlers.d.ts +13 -23
  19. package/build/lib/mixins/message-handlers.d.ts.map +1 -1
  20. package/build/lib/mixins/message-handlers.js +56 -27
  21. package/build/lib/mixins/message-handlers.js.map +1 -1
  22. package/build/lib/mixins/misc.d.ts +51 -0
  23. package/build/lib/mixins/misc.d.ts.map +1 -0
  24. package/build/lib/mixins/misc.js +132 -0
  25. package/build/lib/mixins/misc.js.map +1 -0
  26. package/build/lib/mixins/navigate.d.ts +20 -29
  27. package/build/lib/mixins/navigate.d.ts.map +1 -1
  28. package/build/lib/mixins/navigate.js +25 -23
  29. package/build/lib/mixins/navigate.js.map +1 -1
  30. package/build/lib/mixins/screenshot.d.ts +13 -0
  31. package/build/lib/mixins/screenshot.d.ts.map +1 -0
  32. package/build/lib/mixins/screenshot.js +31 -0
  33. package/build/lib/mixins/screenshot.js.map +1 -0
  34. package/build/lib/remote-debugger-real-device.d.ts +16 -2
  35. package/build/lib/remote-debugger-real-device.d.ts.map +1 -1
  36. package/build/lib/remote-debugger-real-device.js +11 -1
  37. package/build/lib/remote-debugger-real-device.js.map +1 -1
  38. package/build/lib/remote-debugger.d.ts +155 -174
  39. package/build/lib/remote-debugger.d.ts.map +1 -1
  40. package/build/lib/remote-debugger.js +149 -210
  41. package/build/lib/remote-debugger.js.map +1 -1
  42. package/build/lib/rpc/rpc-client.d.ts +14 -13
  43. package/build/lib/rpc/rpc-client.d.ts.map +1 -1
  44. package/build/lib/rpc/rpc-client.js +8 -6
  45. package/build/lib/rpc/rpc-client.js.map +1 -1
  46. package/build/lib/utils.d.ts +20 -16
  47. package/build/lib/utils.d.ts.map +1 -1
  48. package/build/lib/utils.js +33 -25
  49. package/build/lib/utils.js.map +1 -1
  50. package/build/tsconfig.tsbuildinfo +1 -1
  51. package/lib/mixins/connect.js +77 -111
  52. package/lib/mixins/cookies.js +45 -0
  53. package/lib/mixins/events.js +25 -1
  54. package/lib/mixins/execute.js +18 -39
  55. package/lib/mixins/message-handlers.js +67 -36
  56. package/lib/mixins/misc.js +128 -0
  57. package/lib/mixins/navigate.js +26 -30
  58. package/lib/mixins/screenshot.js +34 -0
  59. package/lib/remote-debugger-real-device.js +14 -1
  60. package/lib/remote-debugger.js +138 -302
  61. package/lib/rpc/rpc-client.js +9 -7
  62. package/lib/utils.js +42 -38
  63. package/package.json +1 -1
  64. package/build/lib/mixins/index.d.ts +0 -5
  65. package/build/lib/mixins/index.d.ts.map +0 -1
  66. package/build/lib/mixins/index.js +0 -16
  67. package/build/lib/mixins/index.js.map +0 -1
  68. package/lib/mixins/index.js +0 -14
@@ -1,4 +1,5 @@
1
- export default RemoteDebugger;
1
+ export const REMOTE_DEBUGGER_PORT: 27753;
2
+ export const RPC_RESPONSE_TIMEOUT_MS: 5000;
2
3
  export class RemoteDebugger extends EventEmitter<[never]> {
3
4
  /** @type {string} */
4
5
  static EVENT_PAGE_CHANGE: string;
@@ -6,163 +7,74 @@ export class RemoteDebugger extends EventEmitter<[never]> {
6
7
  static EVENT_DISCONNECT: string;
7
8
  /** @type {string} */
8
9
  static EVENT_FRAMES_DETACHED: string;
9
- /**
10
- * @typedef {Object} RemoteDebuggerOptions
11
- * @property {string} [bundleId] id of the app being connected to
12
- * @property {string[]} [additionalBundleIds=[]] array of possible bundle
13
- * ids that the inspector could return
14
- * @property {string} [platformVersion] version of iOS
15
- * @property {boolean} [isSafari=true]
16
- * @property {boolean} [includeSafari=false]
17
- * @property {boolean} [useNewSafari=false] for web inspector, whether this is a new Safari instance
18
- * @property {number} [pageLoadMs] the time, in ms, that should be waited for page loading
19
- * @property {string} [host] the remote debugger's host address
20
- * @property {number} [port=REMOTE_DEBUGGER_PORT] the remote debugger port through which to communicate
21
- * @property {string} [socketPath]
22
- * @property {number} [pageReadyTimeout=PAGE_READY_TIMEOUT]
23
- * @property {string} [remoteDebugProxy]
24
- * @property {boolean} [garbageCollectOnExecute=false]
25
- * @property {boolean} [logFullResponse=false]
26
- * @property {boolean} [logAllCommunication=false] log plists sent and received from Web Inspector
27
- * @property {boolean} [logAllCommunicationHexDump=false] log communication from Web Inspector as hex dump
28
- * @property {number} [webInspectorMaxFrameLength] The maximum size in bytes of a single data
29
- * frame in the device communication protocol
30
- * @property {number} [socketChunkSize] size, in bytes, of chunks of data sent to
31
- * Web Inspector (real device only)
32
- * @property {boolean} [fullPageInitialization]
33
- * @property {string} [pageLoadStrategy]
34
- */
35
10
  /**
36
11
  * @param {RemoteDebuggerOptions} opts
37
12
  */
38
- constructor(opts?: {
39
- /**
40
- * id of the app being connected to
41
- */
42
- bundleId?: string | undefined;
43
- /**
44
- * array of possible bundle
45
- * ids that the inspector could return
46
- */
47
- additionalBundleIds?: string[] | undefined;
48
- /**
49
- * version of iOS
50
- */
51
- platformVersion?: string | undefined;
52
- isSafari?: boolean | undefined;
53
- includeSafari?: boolean | undefined;
54
- /**
55
- * for web inspector, whether this is a new Safari instance
56
- */
57
- useNewSafari?: boolean | undefined;
58
- /**
59
- * the time, in ms, that should be waited for page loading
60
- */
61
- pageLoadMs?: number | undefined;
62
- /**
63
- * the remote debugger's host address
64
- */
65
- host?: string | undefined;
66
- /**
67
- * the remote debugger port through which to communicate
68
- */
69
- port?: number | undefined;
70
- socketPath?: string | undefined;
71
- pageReadyTimeout?: number | undefined;
72
- remoteDebugProxy?: string | undefined;
73
- garbageCollectOnExecute?: boolean | undefined;
74
- logFullResponse?: boolean | undefined;
75
- /**
76
- * log plists sent and received from Web Inspector
77
- */
78
- logAllCommunication?: boolean | undefined;
79
- /**
80
- * log communication from Web Inspector as hex dump
81
- */
82
- logAllCommunicationHexDump?: boolean | undefined;
83
- /**
84
- * The maximum size in bytes of a single data
85
- * frame in the device communication protocol
86
- */
87
- webInspectorMaxFrameLength?: number | undefined;
88
- /**
89
- * size, in bytes, of chunks of data sent to
90
- * Web Inspector (real device only)
91
- */
92
- socketChunkSize?: number | undefined;
93
- fullPageInitialization?: boolean | undefined;
94
- pageLoadStrategy?: string | undefined;
95
- });
96
- /** @type {any[]|undefined} */
97
- _skippedApps: any[] | undefined;
13
+ constructor(opts?: RemoteDebuggerOptions);
14
+ /** @type {string[]|undefined} */
15
+ _skippedApps: string[] | undefined;
98
16
  /** @type {Record<string, any>} */
99
17
  _clientEventListeners: Record<string, any>;
100
18
  /** @type {Record<string, any>} */
101
19
  appDict: Record<string, any>;
102
20
  /** @type {string|null|undefined} */
103
21
  appIdKey: string | null | undefined;
22
+ /** @type {string|number|null|undefined} */
23
+ pageIdKey: string | number | null | undefined;
104
24
  /** @type {Record<string, any>[]|undefined} */
105
25
  connectedDrivers: Record<string, any>[] | undefined;
106
26
  /** @type {Record<string, any>[]|undefined} */
107
27
  currentState: Record<string, any>[] | undefined;
108
28
  /** @type {boolean|undefined} */
109
29
  connected: boolean | undefined;
110
- /** @type {B<void>} */
111
- pageLoadDelay: B<void>;
112
- /** @type {B<void>} */
113
- navigationDelay: B<void>;
114
- /** @type {import('./rpc/rpc-client').default?} */
115
- rpcClient: import("./rpc/rpc-client").default | null;
30
+ /** @type {import('bluebird')<void>} */
31
+ pageLoadDelay: import("bluebird")<void>;
32
+ /** @type {import('bluebird')<void>} */
33
+ navigationDelay: import("bluebird")<void>;
34
+ /** @type {import('./rpc/rpc-client').RpcClient?} */
35
+ rpcClient: import("./rpc/rpc-client").RpcClient | null;
116
36
  /** @type {string|undefined} */
117
37
  pageLoadStrategy: string | undefined;
118
- /** @type {() => Promise<void>} */
119
- setConnectionKey: () => Promise<void>;
120
- /** @type {() => Promise<void>} */
121
- disconnect: () => Promise<void>;
122
- /** @type {(currentUrl: string?, maxTries: number, ignoreAboutBlankUrl: boolean) => Promise<Record<string, any>>} */
123
- searchForApp: (currentUrl: string | null, maxTries: number, ignoreAboutBlankUrl: boolean) => Promise<Record<string, any>>;
124
- /** @type {(appsDict:Record<string, any>, currentUrl: string?, ignoreAboutBlankUrl: boolean) => import('./mixins/connect').AppPages?} */
125
- searchForPage: (appsDict: Record<string, any>, currentUrl: string | null, ignoreAboutBlankUrl: boolean) => import("./mixins/connect").AppPages | null;
126
- /** @type {(timeoutMs?: number) => Promise<boolean>} */
127
- checkPageIsReady: (timeoutMs?: number) => Promise<boolean>;
128
- /** @type {() => void} */
129
- cancelPageLoad: () => void;
130
- /** @type {(dict: Record<string, any>) => void} */
131
- updateAppsWithDict: (dict: Record<string, any>) => void;
132
- /** @type {(startPageLoadTimer?: import('@appium/support').timing.Timer) => Promise<void>} */
133
- waitForDom: (startPageLoadTimer?: import("@appium/support").timing.Timer) => Promise<void>;
134
- /** @type {(command: string, override?: boolean) => Promise<any>} */
135
- execute: (command: string, override?: boolean) => Promise<any>;
136
- /** @type {(command: string, args?: any[], frames?: string[]) => Promise<any>} */
137
- executeAtom: (command: string, args?: any[], frames?: string[]) => Promise<any>;
138
- /** @type {(atom: string, args?: any[], frames?: string[]) => Promise<any>} */
139
- executeAtomAsync: (atom: string, args?: any[], frames?: string[]) => Promise<any>;
140
- /** @type {(readyState: string) => boolean} */
141
- isPageLoadingCompleted: (readyState: string) => boolean;
142
- /** @type {(currentUrl?: string, maxTries?: number, ignoreAboutBlankUrl?: boolean) => Promise<import('./mixins/connect').AppPages[]>} */
143
- selectApp: (currentUrl?: string, maxTries?: number, ignoreAboutBlankUrl?: boolean) => Promise<import("./mixins/connect").AppPages[]>;
144
- /** @type {() => Promise<void>} */
145
- connect: () => Promise<void>;
146
- /** @type {(appIdKey: string, pageIdKey: string, skipReadyCheck?: boolean) => Promise<void>} */
147
- selectPage: (appIdKey: string, pageIdKey: string, skipReadyCheck?: boolean) => Promise<void>;
148
- /** @type {(url: string) => Promise<void>} */
149
- navToUrl: (url: string) => Promise<void>;
150
- /** @type {(err: Error?, appIdKey: string, pageDict: Record<string, any>) => Promise<void>} */
151
- onPageChange: (err: Error | null, appIdKey: string, pageDict: Record<string, any>) => Promise<void>;
152
- /** @type {(err: Error?, apps: Record<string, any>) => Promise<void>} */
153
- onConnectedApplicationList: (err: Error | null, apps: Record<string, any>) => Promise<void>;
154
- /** @type {(err: Error?, dict: Record<string, any>) => Promise<void>} */
155
- onAppConnect: (err: Error | null, dict: Record<string, any>) => Promise<void>;
156
- /** @type {(err: Error?, dict: Record<string, any>) => void} */
157
- onAppDisconnect: (err: Error | null, dict: Record<string, any>) => void;
158
- /** @type {(err: Error?, dict: Record<string, any>) => Promise<void>} */
159
- onAppUpdate: (err: Error | null, dict: Record<string, any>) => Promise<void>;
160
- /** @type {(err: Error?, drivers: Record<string, any>) => void} */
161
- onConnectedDriverList: (err: Error | null, drivers: Record<string, any>) => void;
162
- /** @type {(err: Error?, state: Record<string, any>) => void} */
163
- onCurrentState: (err: Error | null, state: Record<string, any>) => void;
164
- /** @type {(err: Error?, state: Record<string, any>) => void} */
165
- frameDetached: (err: Error | null, state: Record<string, any>) => void;
38
+ /** @type {import('@appium/types').AppiumLogger} */
39
+ _log: import("@appium/types").AppiumLogger;
40
+ setConnectionKey: typeof connectMixins.setConnectionKey;
41
+ disconnect: typeof connectMixins.disconnect;
42
+ searchForApp: typeof connectMixins.searchForApp;
43
+ searchForPage: typeof connectMixins.searchForPage;
44
+ checkPageIsReady: typeof navigationMixins.checkPageIsReady;
45
+ cancelPageLoad: typeof navigationMixins.cancelPageLoad;
46
+ waitForDom: typeof navigationMixins.waitForDom;
47
+ execute: typeof executeMixins.execute;
48
+ executeAtom: typeof executeMixins.executeAtom;
49
+ executeAtomAsync: typeof executeMixins.executeAtomAsync;
50
+ isPageLoadingCompleted: typeof navigationMixins.isPageLoadingCompleted;
51
+ selectApp: typeof connectMixins.selectApp;
52
+ connect: typeof connectMixins.connect;
53
+ selectPage: typeof connectMixins.selectPage;
54
+ navToUrl: typeof navigationMixins.navToUrl;
55
+ getCookies: typeof cookieMixins.getCookies;
56
+ setCookie: typeof cookieMixins.setCookie;
57
+ deleteCookie: typeof cookieMixins.deleteCookie;
58
+ captureScreenshot: typeof screenshotMixins.captureScreenshot;
59
+ addClientEventListener: typeof eventMixins.addClientEventListener;
60
+ removeClientEventListener: typeof eventMixins.removeClientEventListener;
61
+ launchSafari: typeof miscellaneousMixins.launchSafari;
62
+ startTimeline: typeof miscellaneousMixins.startTimeline;
63
+ stopTimeline: typeof miscellaneousMixins.stopTimeline;
64
+ startConsole: typeof miscellaneousMixins.startConsole;
65
+ stopConsole: typeof miscellaneousMixins.stopConsole;
66
+ startNetwork: typeof miscellaneousMixins.startNetwork;
67
+ stopNetwork: typeof miscellaneousMixins.stopNetwork;
68
+ overrideUserAgent: typeof miscellaneousMixins.overrideUserAgent;
69
+ garbageCollect: typeof miscellaneousMixins.garbageCollect;
70
+ onPageChange: typeof messageHandlerMixins.onPageChange;
71
+ onConnectedApplicationList: typeof messageHandlerMixins.onConnectedApplicationList;
72
+ onAppConnect: typeof messageHandlerMixins.onAppConnect;
73
+ onAppDisconnect: typeof messageHandlerMixins.onAppDisconnect;
74
+ onAppUpdate: typeof messageHandlerMixins.onAppUpdate;
75
+ onConnectedDriverList: typeof messageHandlerMixins.onConnectedDriverList;
76
+ onCurrentState: typeof messageHandlerMixins.onCurrentState;
77
+ frameDetached: typeof navigationMixins.frameDetached;
166
78
  bundleId: string | undefined;
167
79
  additionalBundleIds: string[];
168
80
  platformVersion: string | undefined;
@@ -182,46 +94,115 @@ export class RemoteDebugger extends EventEmitter<[never]> {
182
94
  webInspectorMaxFrameLength: number | undefined;
183
95
  fullPageInitialization: boolean | undefined;
184
96
  _lock: AsyncLock;
97
+ /**
98
+ * @returns {import('@appium/types').AppiumLogger}
99
+ */
100
+ get log(): import("@appium/types").AppiumLogger;
101
+ /**
102
+ * @param {boolean} [checkConnected=false]
103
+ * @returns {import('./rpc/rpc-client').RpcClient}
104
+ */
105
+ requireRpcClient(checkConnected?: boolean | undefined): import("./rpc/rpc-client").RpcClient;
106
+ /**
107
+ * @returns {void}
108
+ */
185
109
  setup(): void;
186
- pageIdKey: any;
187
110
  pageLoading: boolean | undefined;
188
111
  _navigatingToPage: boolean | undefined;
189
- set allowNavigationWithoutReload(allow: any);
190
- get allowNavigationWithoutReload(): any;
112
+ /**
113
+ * @param {boolean} allow
114
+ */
115
+ set allowNavigationWithoutReload(allow: boolean);
116
+ /**
117
+ * @returns {boolean}
118
+ */
119
+ get allowNavigationWithoutReload(): boolean;
120
+ /**
121
+ * @returns {void}
122
+ */
191
123
  teardown(): void;
124
+ /**
125
+ * @returns {void}
126
+ */
192
127
  initRpcClient(): void;
128
+ /**
129
+ * @returns {boolean}
130
+ */
193
131
  get isConnected(): boolean;
194
- launchSafari(): Promise<void>;
195
- startTimeline(fn: any): Promise<any>;
196
- stopTimeline(): Promise<void>;
197
- addClientEventListener(eventName: any, listener: any): void;
198
- removeClientEventListener(eventName: any): void;
199
- startConsole(listener: any): void;
200
- stopConsole(): void;
201
- startNetwork(listener: any): void;
202
- stopNetwork(): void;
203
- _allowNavigationWithoutReload: any;
204
- overrideUserAgent(value: any): Promise<any>;
205
- /**
206
- * Capture a rect of the page or by default the viewport
207
- * @param {{rect?: import('@appium/types').Rect|null, coordinateSystem?: "Viewport"|"Page"}} [opts={rect: null, coordinateSystem: 'Viewport'}]
208
- * if rect is null capture the whole coordinate system else capture the rect in the given coordinateSystem
209
- * @returns {Promise<string>} a base64 encoded string of the screenshot
210
- */
211
- captureScreenshot(opts?: {
212
- rect?: import("@appium/types").Rect | null;
213
- coordinateSystem?: "Viewport" | "Page";
214
- } | undefined): Promise<string>;
215
- getCookies(): Promise<any>;
216
- setCookie(cookie: any): Promise<any>;
217
- deleteCookie(cookieName: any, url: any): Promise<any>;
218
- garbageCollect(timeoutMs?: number): Promise<void>;
219
- useAppDictLock(fn: any): Promise<any>;
220
- get skippedApps(): any[];
132
+ _allowNavigationWithoutReload: boolean | undefined;
133
+ /**
134
+ * @returns {string[]}
135
+ */
136
+ get skippedApps(): string[];
221
137
  }
222
- export const REMOTE_DEBUGGER_PORT: 27753;
223
- export const RPC_RESPONSE_TIMEOUT_MS: 5000;
138
+ export default RemoteDebugger;
139
+ export type RemoteDebuggerOptions = {
140
+ /**
141
+ * id of the app being connected to
142
+ */
143
+ bundleId?: string | undefined;
144
+ /**
145
+ * array of possible bundle
146
+ * ids that the inspector could return
147
+ */
148
+ additionalBundleIds?: string[] | undefined;
149
+ /**
150
+ * version of iOS
151
+ */
152
+ platformVersion?: string | undefined;
153
+ isSafari?: boolean | undefined;
154
+ includeSafari?: boolean | undefined;
155
+ /**
156
+ * for web inspector, whether this is a new Safari instance
157
+ */
158
+ useNewSafari?: boolean | undefined;
159
+ /**
160
+ * the time, in ms, that should be waited for page loading
161
+ */
162
+ pageLoadMs?: number | undefined;
163
+ /**
164
+ * the remote debugger's host address
165
+ */
166
+ host?: string | undefined;
167
+ /**
168
+ * the remote debugger port through which to communicate
169
+ */
170
+ port?: number | undefined;
171
+ socketPath?: string | undefined;
172
+ pageReadyTimeout?: number | undefined;
173
+ remoteDebugProxy?: string | undefined;
174
+ garbageCollectOnExecute?: boolean | undefined;
175
+ logFullResponse?: boolean | undefined;
176
+ /**
177
+ * log plists sent and received from Web Inspector
178
+ */
179
+ logAllCommunication?: boolean | undefined;
180
+ /**
181
+ * log communication from Web Inspector as hex dump
182
+ */
183
+ logAllCommunicationHexDump?: boolean | undefined;
184
+ /**
185
+ * The maximum size in bytes of a single data
186
+ * frame in the device communication protocol
187
+ */
188
+ webInspectorMaxFrameLength?: number | undefined;
189
+ /**
190
+ * size, in bytes, of chunks of data sent to
191
+ * Web Inspector (real device only)
192
+ */
193
+ socketChunkSize?: number | undefined;
194
+ fullPageInitialization?: boolean | undefined;
195
+ pageLoadStrategy?: string | undefined;
196
+ log?: import("@appium/types").AppiumLogger | undefined;
197
+ };
224
198
  import { EventEmitter } from 'events';
225
- import B from 'bluebird';
199
+ import * as connectMixins from './mixins/connect';
200
+ import * as navigationMixins from './mixins/navigate';
201
+ import * as executeMixins from './mixins/execute';
202
+ import * as cookieMixins from './mixins/cookies';
203
+ import * as screenshotMixins from './mixins/screenshot';
204
+ import * as eventMixins from './mixins/events';
205
+ import * as miscellaneousMixins from './mixins/misc';
206
+ import * as messageHandlerMixins from './mixins/message-handlers';
226
207
  import AsyncLock from 'async-lock';
227
208
  //# sourceMappingURL=remote-debugger.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"remote-debugger.d.ts","sourceRoot":"","sources":["../../lib/remote-debugger.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"remote-debugger.d.ts","sourceRoot":"","sources":["../../lib/remote-debugger.js"],"names":[],"mappings":"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"}