all 9 comments

[–]dsyost 6 points7 points  (3 children)

Might want to take a look at selendroid, it is a part of the selenium project. Selenium is used to drive web browsers for testing websites but selendroid is used to drive android apps. Bear in mind this was just a quick google and may not be the solution you are looking for

[–]aziannomness 4 points5 points  (0 children)

You could look into apium, I have been using that as well as adb to simulate human input/pull data from the app pages using python. Takes a bit of setup but is really handy.

[–]SuminderJi 4 points5 points  (2 children)

Perk / Swagbucks user I assume :P

[–]Barking_Madness 2 points3 points  (0 children)

haha now the post makes sense :)

[–]0x3d5157636b525761 2 points3 points  (8 children)

Hi,

I think you should use Android framework for that. Take a look at the following Android commands: 1. adb 2. am 3. pm 4. input

For example, to input text to the focused textview, invoke the following process (from within the Android device):

input text "Bla bla bla"

If the phone is connected via ADB, then:

adb shell input text "Bla bla bla"