I have a Form inside a webview with a captcha, the user fill-in the form and submit it, the response is shown from the processed URL to which the form is posted.
Now i want to read the HTML Source of the response page in order to show it to user after processing.
I have tried many solutions, but no luck yet. Solutions like How do I get the web page contents from a WebView?
and extracting-html-from-a-webview
There is another option to request the page via http, but i can't use that as the response page is generated after a form submission with image captcha, so i can't pass all required parameters to the URL in this case.
Looking for any hint or technique to get the html source of loaded page from android webview.
Thanks in advance.