Tagged Questions

Monkeyrunner is a host side application to control a monkey instance on a device. Monkeyrunner provides some useful helper functions to control the device as well as various other methods to help script tests. The monkeyrunner tool provides an API for writing programs that control an Android device ...

learn more… | top users | synonyms

10
votes
1answer
292 views

What exactly is a monkey doing messing with my Android phone?

Looking through the Android apis I found a method call isUserAMonkey(), says it returns true if the phone is being messed with by a monkey. Is this a joke, or what is it used for?
4
votes
1answer
222 views

How to inherit from MonkeyDevice?

I would like to extend the MonkeyDevice class of the monkeyrunner API. My derived class looks like this. from com.android.monkeyrunner import MonkeyDevice, MonkeyRunner class ...
4
votes
3answers
717 views

What's the 3rd argument of monkeyrunner.press

After SDK tool upgrade to revision 12, When I connect to monkeyrunner and use press method like device.press('KEYCODE_HOME','DOWN') Will get error msg Traceback(most recent call last): File "", ...
4
votes
1answer
705 views

How can I pass an Extra to an Android intent using MonkeyRunner?

I am trying to test my app using the MonkeyRunner tool. I am trying to add an EXTRA to my activity. The python script executes without error: device = MonkeyRunner.waitForConnection() device.wake() ...
3
votes
1answer
136 views

Importing MonkeyRunner into Python script fails in Windows

Why importing MonkeyRunner into Python script fails in Windows? I created a file foo.py and copy-pasted code from the MonkeyRunner docs. The following error appears when compiling the sample code in ...
3
votes
2answers
915 views

Reboot offline Android device remotely

I would like to reboot a connected but offline Motorola Droid 2 device via ADB (or monkeyrunner). Restarting ADB via adb kill-server and then adb devices has not brought the device back online. So I ...
2
votes
1answer
168 views

How to get strings and coordinates from the screenshot using python or monkeyrunner

Lets say i captured a screen shot using monkey runner. This screen shot contains some text ex: Contacts, Dialer et.c. I want to extract the strings and coordinates from the screenshot. So, in my ...
2
votes
0answers
153 views

Passing a Bundle with a Parcelable object from Monkeyrunner

I'm trying to pass a Parcelable object in my extras when starting an activity in Monkeyrunner. The area in the script looks like this user = FbUser() extraDic = {} extraDic['userName'] = 'Test' ...
2
votes
1answer
852 views

Monkey Runner - Using it in a Java class to send commands to emulator

I am trying to make use of this monkey runner Java class here which was obtained from here. It looks really good, however, every time I run it I get this error: 02:01:38 E/adb: Failed to get the ...
2
votes
2answers
655 views

How can I make a Java app using the Monkeyrunner API?

The Android SDK has an API for sending commands to the phone called Monkeyrunner. It appears to be a Python API. Is there anyway I can use it in a Java application?
2
votes
2answers
280 views

Android test automaiton for a phone connected to my computer using USB

We need to do test automation on Android devices connected by USB to our computer (it's a bank application and we cannot use any cloud based testing due to the Bank's security policy). We are looking ...
2
votes
2answers
482 views

Running Monkeyrunner from pydev

Hi I want to run python scripts developed from Monkeyrunner in Eclips-Pydev setup. I have installed Jython and mapped the Jython interpreter and added the Monkeyrunner.jar to Pydev also. But still I'm ...
2
votes
6answers
846 views

monkeyrunner problem. java.lang.ClassCastException: when use sameAs() method

I build SDK from source code. And I want to use the following script: img=MonkeyRunner.loadImageFromFile(path='/home/alsu/monkeyrunner/device.png') img_1=device.takeSnapshot() img_1.sameAs(img, 1) ...
1
vote
0answers
18 views

monkeyrunner browser drops characters

device.type('www.amazon.com') to the browser in the emulator drops the first 2 characters. logcat shows the full string for 'type' but the first 2 chars are missing at the BrowserActivity. ...
1
vote
1answer
68 views

Running Multiple Monkey Runner (Python script)Program from a single script

For single program we use --> ./monkeyrunner Python_prog_name.py Likewise i want to run 4 small programs... How will i run those 4 programs from a single script ?
1
vote
2answers
83 views

MonkeyRunner: easy way to determine coordinates for MonkeyDevice touch command?

I've started creating a MonkeyRunner script. This is going ok, but whenever I add a MonkeyDevice::touch command, I have to determine the input coordinates by trial-and-error. Basically I guess at ...
1
vote
1answer
95 views

How do I import a missing module into a monkeyrunner script?

I am having a bit of difficulty importing a seemingly existing module: simplejson into my MonkeyRunner script. from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice import simplejson def ...
1
vote
2answers
109 views

Can I read the label on a button with monkeyrunner

In general I want to write a monkeyrunner program that turns on Wifi on my android phone if it's not on already. I have the following code: from com.android.monkeyrunner import MonkeyRunner, ...
1
vote
1answer
49 views

verification using monkey runner

Consider this scenario: You have a textbox in which you have to write some text "abcd" Next you have to verify if the entered text belongs to the correct character set (like UTF - 8) or simply you ...
1
vote
1answer
117 views

Android Monkey not generating HPROF dump

I run the following Android Monkey command: adb shell monkey --hprof -v -p com.my.app 5000 It should create a hprof file under /data/misc, but it doesn't. I chmod'ed 777 /data/misc. I then tried ...
1
vote
0answers
142 views

does monkey runner need source code to automate the app?

I am new to monkey runner. Does it need sourcecode to test? I can test only native app or 3rd party app also.. It would be great if any could let me know this.. Thanks
1
vote
0answers
311 views

takeSnapshot() error of monkeyrunner

I am testing monkeyrunner and using below .py file for screencapture. screencapture image is generated but sometimes it occurs error in "resulet = device.takeSnapshot()" I don't know what's the ...
1
vote
1answer
345 views

NoClassDefFoundError: com/google/common/base/Predicate when importing MonkeyRunner in Jython

I want to use MonkeyRunner to generate MotionEvent (from screen touch). I have read the info on http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html. The problem is that ...
1
vote
2answers
176 views

Generate the MouseClick in MonkeyRunner

I am new in android, Please tell me how we can generate the mouseclick event on the any application using monkeyrunner Jython script. Please give me some hint, how to write the code of mouseclick ...
1
vote
2answers
490 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 ...
1
vote
0answers
181 views

Android monkeyrunner test calls onClick handler twice

I am experiencing funny behavior of monkeyrunner. When app shows AlertDialog with two buttons, my onClick handler sometimes called twice. This does not happen when I press the button manually, only ...
1
vote
1answer
428 views

Monkey Runner import giving error

i created an empty file an named it something.py, and then i just copied the lines of code from the android developer website. However, if i try to run it, i get an ImportError: No module named ...
1
vote
0answers
107 views

Do you know any dynamic instrumentation tool for Android with multi-device support (ideally in Python or Jython)?

For my CI infrastrucure I need to automatically deploy and run complex tests between two (or more) android phones from a controler machine (linux). So far android monkeyrunner in combination with ...
1
vote
1answer
366 views

MonkeyRunner::How to install python modules?

I am using MonkeyRunner to automate some UI test cases. I need to collect logs from the device using tool like QXDM. I see that win32com python module can be used to launch QXDM and collecting logs. ...
1
vote
1answer
288 views

How to click a view of android program through MonkeyRunner?

I want to use MonkeyRunner to test the compatibility of my android program for a list of devices with different screen resolutions. I need to click a view, but the view is not in the same position for ...
1
vote
2answers
132 views

Both mouse and keyboard can use at once time in monkeyrunner?

Can we perform mouseclick event and keyboard press event at once testing time in monkeyrunner? If yes then how? Please tell me. Thanx in advance...
1
vote
2answers
235 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
371 views

MonkeyRunner: A more reliable wait and full length screenshots?

I've been monkeying around with the monkeyrunner - sorry had to try and tell that joke. I am trying to achieve three things: 1) Only send key hits when my app has fully launched and loaded. How can ...
1
vote
2answers
770 views

how to setup monkey runner from eclipse(windows XP)

how to setup monkey runner from eclipse(windows XP) and run a file(ex : main.py)
1
vote
3answers
864 views

screenshots with monkeyrunner on Android

I'm using this following script to take screenshots: def snap(): from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice print "Waiting for device.." device = ...
0
votes
0answers
21 views

Control Applications from outside the Android Emulator

Is there a way to interact with applications installed on my Android emulator from outside the emulator. For instance I want to start WhatsApp and send messages to selected contacts, all from outside ...
0
votes
0answers
44 views

problems with monkeyrunner

I am working on making some changes to the android framework layer and building my own version. I am working based on froyo and trying to use monkeyrunner for some testing. I have pulled the source ...
0
votes
0answers
44 views

Multi touch operations using monkeyrunner

Is there any way to use multitouch in monkeyrunner. I didn't find any key events for touching on coordinates of screen simultaneously. I want to touch both wifi and Bluetooth button simultaneously. ...
0
votes
0answers
32 views

Monkeyrunner throwing “ShellCommandUnrespo​nsiveException” - any work around?

I am facing some issues in device.shell('ping -c 2 192.168.1.1') inside a monkeyrunner script. Its throwing ShellCommandUnrespo‌​nsiveException [main] ...
0
votes
0answers
22 views

Error while issuing ping command inside monkeyrunner script

i am facing some issues in device.shell('ping -c 2 192.168.1.1') inside a monkeyrunner script. Its throwing below error:- 120202 20:12:17.192:S [main] [com.android.chimpchat.adb.AdbChimpDevice] Error ...
0
votes
2answers
60 views

python script for monkeyrunner with whitesprace on device.type method

#! /usr/bin/env monkeyrunner from com.android.monkeyrunner import MonkeyRunner device = MonkeyRunner.waitForConnection() device.touch(240, 740) device.type('5551234') ...
0
votes
1answer
80 views

Recording Android user input for automated replay (automated testing)

Does anyway know of an open source solution for recording user input. The ideal one would output monkeyrunner script. I'm happy to modify my source by extending input recording classes, which would ...
0
votes
0answers
81 views

example of monkey test for music application using wifi

All: I am working on Android Music Application which is using WiFi. I would like to know what kind of test script/ monkey runner that some of you would like to recommend. Sample monkey script or ...
0
votes
1answer
55 views

Unlog device (pattern) with monkeyrunner

Sorry if I do ask a question which has been asked before. I was searching a lot in this forum and via Google but couldn't find an answer. I'm very new to Monkeyrunner and trying to solve the problem ...
0
votes
0answers
110 views

Python scripts for monkeyrunner on cyanogenMod

I have some scripts that run perfectly on htc desire with sense on it. But when I start my scripts on htc desire with cyanogenMod it throws a lot of weird exception. Is anybody familiar with this kind ...
0
votes
1answer
103 views

broken pipe exception on time.sleep

#!/bin/python from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice import time import commands import sys import string import random device = MonkeyRunner.waitForConnection(10) ...
0
votes
1answer
64 views

Is it possible to send some arguments to monkeyrunner script

I start my monkeyrunner script like this monkeyrunner my_script but I want to pass some arguments for example like this monkeyrunner my_script -n 100 and how can I read this value inside the ...
0
votes
1answer
42 views

monkey runner random generation

When I want to input some character I do it like this device.press("0",MonkeyDevice.DOWN_AND_UP) this makes input of char '0', and it works great but the problem is I want to enter random numbers ...
0
votes
2answers
94 views

Automated testing with monkeyrunner and checking outcome

I want to automate some testing of application and I want to click on some button (brn1) but then if textview1 have value of "A" I want to make press on btn2 else if the textview have value of "B" I ...
0
votes
1answer
83 views

How to import a py file function in monkeyrunner test file

I want to create test cases for my Android application in Monkeyrunner. I am thinking to create a sub tests case file to do before actual test case. like a install , uninstall functions in a separate ...

1 2 3