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.
- package/CHANGELOG.md +12 -0
- package/build/lib/mixins/connect.d.ts +53 -56
- package/build/lib/mixins/connect.d.ts.map +1 -1
- package/build/lib/mixins/connect.js +72 -96
- package/build/lib/mixins/connect.js.map +1 -1
- package/build/lib/mixins/cookies.d.ts +22 -0
- package/build/lib/mixins/cookies.d.ts.map +1 -0
- package/build/lib/mixins/cookies.js +48 -0
- package/build/lib/mixins/cookies.js.map +1 -0
- package/build/lib/mixins/events.d.ts +17 -2
- package/build/lib/mixins/events.d.ts.map +1 -1
- package/build/lib/mixins/events.js +29 -2
- package/build/lib/mixins/events.js.map +1 -1
- package/build/lib/mixins/execute.d.ts +5 -12
- package/build/lib/mixins/execute.d.ts.map +1 -1
- package/build/lib/mixins/execute.js +18 -30
- package/build/lib/mixins/execute.js.map +1 -1
- package/build/lib/mixins/message-handlers.d.ts +13 -23
- package/build/lib/mixins/message-handlers.d.ts.map +1 -1
- package/build/lib/mixins/message-handlers.js +56 -27
- package/build/lib/mixins/message-handlers.js.map +1 -1
- package/build/lib/mixins/misc.d.ts +51 -0
- package/build/lib/mixins/misc.d.ts.map +1 -0
- package/build/lib/mixins/misc.js +132 -0
- package/build/lib/mixins/misc.js.map +1 -0
- package/build/lib/mixins/navigate.d.ts +20 -29
- package/build/lib/mixins/navigate.d.ts.map +1 -1
- package/build/lib/mixins/navigate.js +25 -23
- package/build/lib/mixins/navigate.js.map +1 -1
- package/build/lib/mixins/screenshot.d.ts +13 -0
- package/build/lib/mixins/screenshot.d.ts.map +1 -0
- package/build/lib/mixins/screenshot.js +31 -0
- package/build/lib/mixins/screenshot.js.map +1 -0
- package/build/lib/remote-debugger-real-device.d.ts +16 -2
- package/build/lib/remote-debugger-real-device.d.ts.map +1 -1
- package/build/lib/remote-debugger-real-device.js +11 -1
- package/build/lib/remote-debugger-real-device.js.map +1 -1
- package/build/lib/remote-debugger.d.ts +155 -174
- package/build/lib/remote-debugger.d.ts.map +1 -1
- package/build/lib/remote-debugger.js +149 -210
- package/build/lib/remote-debugger.js.map +1 -1
- package/build/lib/rpc/rpc-client.d.ts +14 -13
- package/build/lib/rpc/rpc-client.d.ts.map +1 -1
- package/build/lib/rpc/rpc-client.js +8 -6
- package/build/lib/rpc/rpc-client.js.map +1 -1
- package/build/lib/utils.d.ts +20 -16
- package/build/lib/utils.d.ts.map +1 -1
- package/build/lib/utils.js +33 -25
- package/build/lib/utils.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/mixins/connect.js +77 -111
- package/lib/mixins/cookies.js +45 -0
- package/lib/mixins/events.js +25 -1
- package/lib/mixins/execute.js +18 -39
- package/lib/mixins/message-handlers.js +67 -36
- package/lib/mixins/misc.js +128 -0
- package/lib/mixins/navigate.js +26 -30
- package/lib/mixins/screenshot.js +34 -0
- package/lib/remote-debugger-real-device.js +14 -1
- package/lib/remote-debugger.js +138 -302
- package/lib/rpc/rpc-client.js +9 -7
- package/lib/utils.js +42 -38
- package/package.json +1 -1
- package/build/lib/mixins/index.d.ts +0 -5
- package/build/lib/mixins/index.d.ts.map +0 -1
- package/build/lib/mixins/index.js +0 -16
- package/build/lib/mixins/index.js.map +0 -1
- package/lib/mixins/index.js +0 -14
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export
|
|
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
|
-
|
|
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 {
|
|
111
|
-
pageLoadDelay:
|
|
112
|
-
/** @type {
|
|
113
|
-
navigationDelay:
|
|
114
|
-
/** @type {import('./rpc/rpc-client').
|
|
115
|
-
rpcClient: import("./rpc/rpc-client").
|
|
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 {()
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
disconnect:
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
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
|
-
|
|
190
|
-
|
|
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
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
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
|
|
223
|
-
export
|
|
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
|
|
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":";
|
|
1
|
+
{"version":3,"file":"remote-debugger.d.ts","sourceRoot":"","sources":["../../lib/remote-debugger.js"],"names":[],"mappings":"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"}
|