Android测试教程(16):monkeyrunner简介

jerry Android 2015年08月24日 收藏

如果你需要实现自动测试,Android的monkeyrunner 工具可以帮助你实现自动测试,它提供了一组API可以用来控制Android设备或模拟器,使用monkeyrunner,你可以编写Python 程序来安装Android应用或是测试包,运行应用或测试,发送按键消息,并可以截屏,然后保存在计算机中。monkeyrunner 主要目的是用来在应用程序或框架层次来测试应用程序或运行单元测试包,但你也可以用作其它目的。

monkeyrunner 工具包不同于UI/Application Exerciser Monkey(也称为Money),money 通过adb shell 来运行,可以模拟“猴子”随机按键或是发送系统消息给指定的应用来实现Stress 测试。

monkeyrunner API 主要通过下面三个包:

  • MonkeyRunner: 主要提供了monkeyrunner 应用的辅助方法以及,用来链接设备或是模拟器的方法,并提供UI支持等。
  • MonkeyDevice: 代表一个设备或是模拟器,提供安装,卸载应用的方法,启动一个Activity,发送按键或是Touch 事件等。
  • MonkeyImage: 代表一个截屏图像,可以截取不同格式的图像,比较两个MonkeyImage图像,保存图像等。

下面为一个 Python 写的monkeyrunner 应用, 因为涉及到Python 语言,这里不详细说明了

  1. # Imports the monkeyrunner modules used by this program
  2. from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
  3.  
  4. # Connects to the current device, returning a MonkeyDevice object
  5. device = MonkeyRunner.waitForConnection()
  6.  
  7. # Installs the Android package. Notice that this method returns a boolean,
  8. # so you can test to see if the installation worked.
  9. device.installPackage('myproject/bin/MyApplication.apk')
  10.  
  11. # sets a variable with the package's internal name
  12. package = 'com.example.android.myapplication'
  13.  
  14. # sets a variable with the name of an Activity in the package
  15. activity = 'com.example.android.myapplication.MainActivity'
  16.  
  17. # sets the name of the component to start
  18. runComponent = package + '/' + activity
  19.  
  20. # Runs the component
  21. device.startActivity(component=runComponent)
  22.  
  23. # Presses the Menu button
  24. device.press('KEYCODE_MENU','DOWN_AND_UP')
  25.  
  26. # Takes a screenshot
  27. result = device.takeSnapshot()
  28.  
  29. # Writes the screenshot to a file
  30. result.writeToFile('myproject/shot1.jpg','png')

详细的API说明请参考Android文档 ,如果你需要实现自动测试,编写测试代码,可以使用Python通过monkeyrunner API来实现。