How to use the appium-remote-debugger.RemoteDebugger function in appium-remote-debugger

To help you get started, we’ve selected a few appium-remote-debugger examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github appium / appium-ios-driver / lib / commands / context.js View on Github external
extensions.getNewRemoteDebugger = async function getNewRemoteDebugger () { // eslint-disable-line require-await
  return new RemoteDebugger({
    bundleId: this.opts.bundleId,
    useNewSafari: this.useNewSafari(),
    pageLoadMs: this.pageLoadMs,
    platformVersion: this.opts.platformVersion,
    isSafari: this.isSafari(),
    remoteDebugProxy: this.opts.remoteDebugProxy,
    garbageCollectOnExecute: false,
    logFullResponse: !!this.opts.safariShowFullResponse,
  });
};