To parse an Android application? -


is there external (or internal) script library start android app, parse, text displayed app , perform clicks in order build kind of bot user?

yes, can simulate touches, using adb. see this question. link:

you can use adb shell run command remotely:

adb shell input tap x y 

if want text screen, screenshot device, (again using adb). screenshot adb:

adb shell screencap -p /sdcard/screen.png adb pull /sdcard/screen.png adb shell rm /sdcard/screen.png 

see here source, , if doesn't work right.

then need send screenshot through ocr program extract text.

there easier way this, example if there website app, scrape information that.


Comments

Popular posts from this blog

google chrome - Developer tools - How to inspect the elements which are added momentarily (by JQuery)? -

angularjs - Showing an empty as first option in select tag -

php - Cloud9 cloud IDE and CakePHP -