Questions tagged [android-monkey]

Questions related to use of monkey, a command-line tool in Android that allows developers to generate pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events on emulator and devices.

The Monkey is a command-line tool that can be run on any emulator instance or on a device. It sends a pseudo-random stream of user events into the system, which acts as a stress test on the application software being developed.

The Monkey provides options that can be grouped into four primary categories:

  1. Basic configuration options, such as setting the number of events to attempt.
  2. Operational constraints, such as restricting the test to a single package.
  3. Event types and frequencies.
  4. Debugging options.

Source: http://developer.android.com/tools/help/monkey.html

32 questions
0
votes
1 answer

How to click on a View which contains specified text using monkeyrunner and Android ViewClient?

I'm trying to simulate a click on an Android tablet using monkey runner and Android ViewClient. I want to click on a region/ view which has specific text. Here's an example of what i'm trying to do: I have a script where I import MonkeyRunner,…
Gabriel Porumb
  • 1,661
  • 1
  • 12
  • 21
0
votes
1 answer

MonkeyTalkIDE not found Java (JRE) / (JDK) virtual machine

I am trying to install MonkeyTalkIDE but show this error A java Runtime Environment (JRE) or Java Development kit (JDK) must be available in order to run MonkeyTalkIDE. No Java virtual machine was found after searching the following locations:…
user1423762
1 2
3