Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ios-webkit-debug-proxy blank devtools

I'm using ios-webkit-debug-proxy on Linux to try and debug an iOS Safari host using chrome.

The debug proxy runs and gives

Listing devices on :9221
Connected :9222 to Will's iPhone (8a48ac86edd4f299xxxxxxxxxxxxxxx)

The page localhost:9222

lh:9222

Opening the devtools though gives a whole lot of blank. Clicking on lots of things yields little.

devtools

Can someone with experience with these things give me a nudge? Cheers

like image 537
wjdp Avatar asked Dec 07 '14 13:12

wjdp


2 Answers

What Chrome version are you using? This might happen as this feature is broken since chrome 38. Try downloading Chromium 37 to solve the issue.

Checkout this Bug Report for details:

https://github.com/google/ios-webkit-debug-proxy/issues/78

Old binaries can be obtained from here: http://sourceforge.net/projects/osxportableapps/files/Chromium/

like image 93
aluedeke Avatar answered Nov 13 '22 05:11

aluedeke


I followed this procedure from Ryan Ewen:

Comprehensive instructions for Windows:

  • Get files from https://github.com/fishbone1/remotedebug-ios-webkit-adapter
  • Install iTunes (https://www.microsoft.com/en-us/p/itunes/9pb2mz1zmb1s)
  • Install scoop (https://scoop.sh)
  • scoop install nodejs nvm
  • scoop bucket add extras
  • scoop install ios-webkit-debug-proxy
  • nvm install 11.15.0 (version 12 doesn't work for the final couple of steps)
  • nvm use 11.15.0 (might have to reopen PowerShell after this, it'll tell you)
  • npm install -g vs-libimobile cd to your download of remotedebug-ios-webkit-adapter
  • npm install
  • npm start
  • Continue onto Step 3 from the readme
like image 34
Frosty Z Avatar answered Nov 13 '22 04:11

Frosty Z