wjdp
wjdp

Reputation: 1488

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

Upvotes: 7

Views: 3884

Answers (4)

thermostat42
thermostat42

Reputation: 1

Install the adapter with : npm install remotedebug-ios-webkit-adapter -g

Then, run remotedebug_ios_webkit_adapter --port=9000

Upvotes: 0

Maxime Pacary
Maxime Pacary

Reputation: 23071

I followed this procedure from Ryan Ewen:

Comprehensive instructions for Windows:

Upvotes: 1

Xiao
Xiao

Reputation: 12695

make sure you installed latest ios_webkit_debug_proxy:

brew install ios-webkit-debug-proxy

and then launch ios_webkit_debug_proxyusing command:

ios_webkit_debug_proxy -f chrome-devtools://devtools/bundled/inspector.html

BTW you must use developer's certificate to build the app!

Upvotes: 0

aluedeke
aluedeke

Reputation: 55

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/

Upvotes: 1

Related Questions