--
http://appium.io
---
You received this message because you are subscribed to the Google Groups "Appium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to appium-discus...@googlegroups.com.
Visit this group at http://groups.google.com/group/appium-discuss?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Something like this? I'll have chat with some of the guys in my office to see if we can have a look at this.
Thanks,
Sergio
brew install ios-webkit-debug-proxy
Once installed you launch it with the following command:
ios_webkit_debug_proxy -c :22752-22758
./autogen.sh
./configure
make
sudo make install
2. Start the proxy with this command:
ios_webkit_debug_proxy -c :27752-27758 -d
3. Start appium with a real device (and put a break point at the "this.socket.send(data) line 512 of the webkit-remote-debugger.js").> git clone https://github.com/google/ios-webkit-debug-proxy.git > cd ios-webkit-debug-proxy > ./autogen.sh > ./configure > make > sudo make install
It's dealing with all the requests and my webview tests are flying through on my ipad.
Have a go and let me know how it works for you.
Sergio
Awesome Sergio!!
--
Visit this group at http://groups.google.com/group/appium-discuss.
Once you have the proxy running also make sure you turn on the web-inspector in the safari settings on the device.
Sergio
Web inspector can not have 2 connections at the same time. So if you have safari open with a connection to the device the proxy won't be able to connect.
Sergio