Skip to content

Instantly share code, notes, and snippets.

@sabadow
Created October 25, 2013 12:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sabadow/7153807 to your computer and use it in GitHub Desktop.
Save sabadow/7153807 to your computer and use it in GitHub Desktop.
github / gauges-android monkey runner
# Imports the monkeyrunner modules used by this program
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
# Connects to the current device, returning a MonkeyDevice object
device = MonkeyRunner.waitForConnection()
# Installs the Android package. Notice that this method returns a boolean, so you can test
# to see if the installation worked.
device.installPackage('../app/target/gauges-android-1.0.apk')
# sets a variable with the package's internal name
package = 'com.github.mobile.gauges'
# sets a variable with the name of an Activity in the package
activity = 'com.github.mobile.gauges.ui.GaugeListActivity'
# sets the name of the component to start
runComponent = package + '/' + activity
# Runs the component
device.startActivity(component=runComponent)
MonkeyRunner.sleep(5)
device.type('example@example.com')
# Takes a screenshot
result = device.takeSnapshot()
# Writes the screenshot to a file
result.writeToFile('screenshot.png','png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment