I'm looking for a browser-simulating library on android, which handles things like
- loading a website (http/https)
- Redirections: HTTP (3xx Status Codes), JavaScript, HMTL tags
- filling out html-forms
- easy html parsing (could fall back to JSoup for that one)
HttpUnit or HtmlUnit would do just fine, but both of them are a pain to get running on android.
Is there any other option other than (Android)HttpClient (and therefore doing lots of the above on my own)? Or can I somehow get use of the android webkit/browser?
Thanks in advance!