1. 本人硬件环境:MAC Pro;开发环境:JDK7,Android SDK,并正确配置了环境变量。Python不知道是mac自带的,还是我以前装过。。。

编写个简单脚本

#coding=utf-8# Imports the monkeyrunner modules used by this programfrom com.android.monkeyrunner import MonkeyRunner, MonkeyDevice# Connects to the current device, returning a MonkeyDevice objectdevice = 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('myproject/bin/MyApplication.apk')# sets a variable with the package's internal namepackage = 'com.wankr.app.doubi'# sets a variable with the name of an Activity in the packageactivity = 'com.wankr.app.doubi.MainActivity'# sets the name of the component to startrunComponent = package + '/' + activity# Runs the componentdevice.startActivity(component=runComponent)MonkeyRunner.sleep(5)# Takes a screenshotresult = device.takeSnapshot()# Writes the screenshot to a fileresult.writeToFile('/Users/HanHongmin/Documents/start.png','png')MonkeyRunner.sleep(2)#for i in range(1,3):    device.drag((400,500),(100,500),0.2,10)    MonkeyRunner.sleep(1)# Takes a screenshotresult2 = device.takeSnapshot()# Writes the screenshot to a fileresult2.writeToFile('/Users/HanHongmin/Documents/exit.png','png')device.press('KEYCODE_HOME',MonkeyDevice.DOWN_AND_UP) 

命令行直接

monkeyrunner /Users/HanHongmin/Documents/wankr/monkeyrunner/test.py

脚本中可用的更多API请参照官方文档或者度娘

补充:获取局部图像进行比较

获取图像的一部分:subPic = result.getSubImage((0,57,715,1123))

图像比较:newpic.sameAs(subPic,1.0)

更多相关文章

  1. android 获取视频缩略图终极解决方案(ffmpeg)
  2. Android获取LayoutInflater对象的方法总结
  3. 关于Android(安卓)列表多布局的那些事
  4. 查看 android 现在有什么分支
  5. Android(安卓)Studio 2.3使用CMake方式NDK入门
  6. Android中使用adb命令获取当前打开app的包名
  7. Android2.3 API变更概要
  8. Android之使用MediaMetadataRetriever类获取媒体信息
  9. Android获取各种路径方法以及对路径的解释

随机推荐

  1. 如何解决:Android中 Error generating fin
  2. Android_RecyclerView&SwipeRefreshLayou
  3. Android(安卓)自定义 ExpandableListView
  4. android Spinner控件的使用
  5. C++项目RapidJson的详细用法总结
  6. 初学Android的几个常见问题
  7. (转 Android(安卓)UI学习 - Menu)
  8. Android(安卓)系统各种音量的获取及音量
  9. android 实现服务器连接获取数据和传递数
  10. Android(安卓)Audio代码分析10 - audio_t