I have something like this
final WebView w=(WebView)findViewById(R.id.webView1);
w.loadUrl("http://somepage.com");
Is there any way to get the html page that is shown in the WebView at some moment of time ? I want to get this html page as string variable.
The point is I want to get the html code after the javascript is executed on a client side...
any guidelines ?