Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
401 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: ...
6
votes
1answer
258 views

Monkey made my app meow

I ran the exerciser monkey on my app, and for some odd reason, my app meowed! I have no 'meow' sound files in my project at all, so I'm a bit confused. Any explanations here? P.S. Theres no other ...
6
votes
2answers
2k views

writing to /system/framework in emulator

I'm in the process of extending monkey for software testing purposes, so I would like to replace the current monkey.jar which my own compiled monkey.jar in the emulator. The current monkey.jar is ...
3
votes
1answer
127 views

Android: How do you emulate a keyboard flip?

While debugging my app using Monkey (which is almost as fun as the real thing), I managed to crash! Yay, that's what it's for, right? Looking at the log (and while watching) I noticed that Monkey is ...
3
votes
1answer
524 views

Android UI testing: Monkey stuck in just a couple of Activities

I've been trying to use Monkey to stress test the UI of my application. What I've noticed is that the random key strokes are not able to traverse all the Activities of my application. It instead just ...
2
votes
1answer
119 views

Visual component become invisible in design mode and cannot get them back in Fire Monkey

I am using a TScaledLayout as a background and after I load the project a few times ALL visual components become invisible, they are there and will compile and run fine but I cannot get them to become ...
1
vote
1answer
145 views

How to use android monkey

I am a little confused on how to actually use monkey, i thought you were supposed to power on your emulator and go into terminal editor and type $ adb shell monkey -p insert.my.package.name.here -v ...
1
vote
2answers
241 views

Android Exerciser Monkey starts playing audio files at random

I'm running exerciser monkey to test my android app. As part of my app I play media files which give the pronunciation of a words. I've put the files in a directory where they aren't readable by the ...
1
vote
2answers
222 views

Switch the screen mode with MonkeyRunner?

How can I use MonkeyRunner to switch the screen mode(Portrait mode and Landscape mode)?
1
vote
1answer
643 views

Using Monkey in a subactivity only (android debugging)

I'm trying to use Monkey debuggin tool (from adb) to stress test a part of my application. As Monkey acts in a total random way, I'd like it to concentrate on the part of code that might contain an ...
1
vote
0answers
344 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 ...
1
vote
2answers
486 views

Documentation on Eclipse Monkey

I'm looking for some documentation on "eclipse monkey" features. What variables are predefined, what methods do these objects have and so on... You can only get so far by tweaking the examples.
0
votes
1answer
147 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
445 views

android monkey runner scripts

i am tryig to execute a sample python program through monkey runner command prompt and it is throwing an error Can't open specified script file Usage: monkeyrunner [options] SCRIPT_FILE -s ...
0
votes
0answers
176 views

mnt /.lfs function not implemented while exe monkey test on Galaxy S

I'm trying to run monkey test on my galaxy S to test my application. But quickly (after one or two events), message "mnt/.lfs function not implemented" appears with long timeout. Then application ...
0
votes
1answer
640 views

android - running monkeyrunner over wifi on a real device

I have a build server and I would like to run a monkeyrunner script on many devices simultaneously once the build is ready. I found here a way to connect to the devices over tcp so I connected to a ...
0
votes
1answer
664 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 ...
0
votes
1answer
207 views

random number generator monkey test diehard

I have a question about Diehard Testtool. My Random Number Generator doesn't passed monkey test (DNA Test). One p-value was 0. Is this critical? How can I interpret the result? Thank you in ...
0
votes
1answer
580 views

Monkey command on android phone?

I'm ok using monkey command on the emulator but is it possible to launch it on a phone i'm using for debug?