I am using following command to execute specific package:

adb shell monkey -v -p com.google.android.apps.maps 500

adb shell monkey -p com.google.android.voicesearch 10

Q-1: But I want to execute all the packages in batch mode,can anyone please suggest? I have used a process like putting all the individual commands in batch file and executing but it is not working after first command execution.

Q-2: Can you please suggest what is the command only to put random key strokes through out the phone?

Thanks in Advance !!!

link|improve this question
feedback

1 Answer

You could try writing a monkey script (eg. test.txt):

# Start of Script
type= user
count= 1
speed= 1.0
UserWait(200)
start data >>

LaunchActivity(com.company.application1.Activity, com.company.application1.Activity)
UserWait(2000)
# Do stuff

LaunchActivity(com.company.application2.Activity, com.company.application2.Activity)
UserWait(2000)
# Do stuff

LaunchActivity(com.company.application3.Activity, com.company.application3.Activity)
UserWait(2000)
# Do stuff

and then run it by calling

monkey -f test.txt 1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.