Is there a tool like mechanize for Android?

I am creating an Android application that needs to do some web surfing in the background in order to provide the user with a service.

There is no API on the site to which I should connect, it provides only standard HTTP access, with extensive use of cookies, but (fortunately for me) there is not much Javascript code.

I wonder if there is a library that behaves like python mechanics for Android, or if it can be used independently in an Android application.

+6
source share
2 answers

I am not 100% sure that it will work on Android, but based on Java, HtmlUnit is probably worth a look.

+4
source

The mechanism has been ported to Java and runs on Android:

http://gistlabs.com/software/mechanize-for-java/

0
source

Source: https://habr.com/ru/post/911112/


All Articles