Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
419 views

Monkey giving an odd error on android emulator

I'm letting monkey run on my app (via android emulator) using the following instruction: Monkey -p <packagename> -v 5000 I am getting the following errors: 01-28 11:45:55.392: ...
1
vote
1answer
368 views

Monkey command to execute all the packages at a time

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 ...
0
votes
1answer
200 views

Start monkeyrunner script on multiple devices

I have a script that should be run on two devices at same time, this two devices are connected to one pc. How can I run the script on both devices at the same time ? is there some option like -s ...
0
votes
1answer
29 views

Send only one click to monkeyrunner at specified position

Here is a more typical command line, which will launch your application and send 500 pseudo-random events to it: $ adb shell monkey -p your.package.name -v 500 but I am wondering how can I send ...
0
votes
1answer
715 views

Android Test Monkey - Set Verbosity?

How can I change the verbosity level when running Test Monkey from the command line? These two commands work: adb shell monkey -p com.my.package 5000 adb shell monkey -p com.my.package -v 5000 The ...