appium-remote-debugger
Version:
Appium proxy for Remote Debugger protocol
32 lines • 1.27 kB
JavaScript
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const remote_debugger_1 = __importDefault(require("./remote-debugger"));
const rpc_1 = require("./rpc");
class RemoteDebuggerRealDevice extends remote_debugger_1.default {
constructor(opts = {}) {
super(opts);
this.udid = opts.udid;
this._skippedApps = ['lockdownd'];
}
initRpcClient() {
this.rpcClient = new rpc_1.RpcClientRealDevice({
bundleId: this.bundleId,
platformVersion: this.platformVersion,
isSafari: this.isSafari,
host: this.host,
port: this.port,
socketPath: this.socketPath,
messageProxy: this.remoteDebugProxy,
logAllCommunication: this.logAllCommunication,
logAllCommunicationHexDump: this.logAllCommunicationHexDump,
socketChunkSize: this.socketChunkSize,
webInspectorMaxFrameLength: this.webInspectorMaxFrameLength,
udid: this.udid
});
}
}
exports.default = RemoteDebuggerRealDevice;
//# sourceMappingURL=remote-debugger-real-device.js.map