啄木鸟专吃虫,故名啄木鸟。
全部博文(67)
发布时间:2014-05-26 15:43:05
新手辛辛苦苦写的一点东西,说我打广告,把我的删了。木有办法。复制了一篇记录一下,免得忘记:1. EasyMonkeyDevice提供了根据ID进行touch,type,locate,getText的方法.2. By提供了根据ID返回PyObject的方法,使用EasyMonkeyDevice和By的配合可以利用ID做很多事情.3. HierarchyViewer提供了.........【阅读全文】
发布时间:2014-05-23 17:59:00
1.首先 ,要使用hierarchyviewer.bat,设备必须要支持打开view server如果支持打开view server的话可以使用命令:c:\android-sdk-windows\platform-tools>adb shell service call window 1 i32 4939Result: Parcel(00000000 00000001 '........')则表示开启view server若返回值是:Result: Parcel(00000000.........【阅读全文】
发布时间:2014-05-23 17:13:57
转自:http://blog.csdn.net/bruce_ke/article/details/8470252一、Monkey测试简介Monkey测试是Android平台自动化测试的一种手段,通过Monkey程序模拟用户触摸屏幕、滑动Trackball、按键等操作来对设备上的程序进行压力测试,检测程序多久的时间会发生异常。二、Monkey程序介绍1) Monkey程序由Android系统自带,使用Ja.........【阅读全文】
发布时间:2014-05-13 17:57:05
>>> from com.android.monkeyrunner import MonkeyRunner,MonkeyDevice,MonkeyImage>>> 连接设备:device=MonkeyRunner.waitForConnection(5,'4d12d4443032117d')>>> 截屏:img = device.takeSnapshot()>>> 截图命名:img.writeToFile('test.png','png')通过adb shell截图:adb shell /system/bin/screencap .........【阅读全文】