How i can parsing html on android or download only the content?

I want to measure some perf like download content from a web site on an android device. In this test, I don't want to measure the time of the visualisation include by opera/chrome and I need to keep my android device without root privilege.So, I already do some things and in a first time, I create a request GET to download the source code of my web site.There is my question...Do you know a way that I can get all the content of a web page on a network level (script js, link picture, css) ? a API maybe ?Or maybe, do you think that's a good idea if I parse my html string stored after my first request GET. Then, I do for all links I found a new request GET. And for finish, I add all network time I calculate and I have some perf about my FAI.
 
Back
Top