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
Post a Comment