4

I am able to run Appium server from Java code. But wanted to know how can I check if iPhone is connected to a Mac and if connected, then launch ios_webkit_debug_proxy using Java code

Any pointer or suggestion would be highly appreciated.

Nicolas Filotto
  • 43,537
  • 11
  • 94
  • 122
Sunny Sachdeva
  • 289
  • 3
  • 16

1 Answers1

0

If you havn't installed ios-webkit-debug-proxy install it via homebrew by executing below commands

brew install ideviceinstaller ios-webkit-debug-proxy

Once installed you can start it by using Java Process builder and execute it. Sample here

pr4bh4sh
  • 654
  • 3
  • 12
  • 19