摘要: http://www.devdiv.com/home.php?mod=space&uid=14682&do=blog&id=5779Robotium的jar包和程序例子地址:http://code.google.com/p/robotium/ Android的自动测试研究,我相信有很多在接触android的人当中,也在网上不断的搜索和研究究竟有没有能应用android自动化测试手段,我也是如此,经过一番寻找研究有幸接触到了Robotium这个东东,他能一定程度上给我们一些想要的效果,现将小试牛刀的一些东东分享出来. Robotium is a test framewor 阅读全文
posted @ 2011-10-24 10:51 张兴业 阅读(259) 评论(0) 推荐(0) 编辑
摘要: A monkeyrunner class that contains static utility methods.Methods void alert (string message,string title, string okTitle) Displays an alert dialog to the process running the current program.integerchoice (string message,iterable choices, string title) Displays a dialog with a list of choices to th. 阅读全文
posted @ 2011-10-24 10:34 张兴业 阅读(163) 评论(0) 推荐(0) 编辑
摘要: monkeyrunner类可以保存设备或模拟器的截图。MonkeyImage提供了图像转换、图像存储、复制部分图像能方法。这样可以把通过截图显性的观察问题。 MonkeyImage创建对象的方法如下: newimage =MonkeyDevice.takeSnapshot() MonkeyImage提供了如下方法:MethodsstringconvertToBytes (string format) Converts the current image to a particular format and returns it as astring that you can then acce 阅读全文
posted @ 2011-10-24 10:32 张兴业 阅读(315) 评论(0) 推荐(0) 编辑
摘要: MonkeyDevice是用来控制Android设备或模拟器,发送UI事件的方法,检索信息,安装和删除应用程序,并可以运行应用程序。 通常,不必使用newdevice = MonkeyDevice()来创建MonkeyDevice的一个实例。相反的经常使用MonkeyRunner.waitForConnection()来创建一个新的MonkeyDevice对象。MonkeyDevice的常用方法:SummaryConstantsstring DOWN Use this with the type argument ofpress() ortouch() to send a DOWN event 阅读全文
posted @ 2011-10-24 10:31 张兴业 阅读(245) 评论(0) 推荐(0) 编辑
摘要: http://www.devdiv.com/home.php?mod=space&uid=14682&do=blog&id=5878monkeyrunner工具 前言:最近开始研究Android自动化测试方法,对其中的一些工具、方法和框架做了一些简单的整理,其中包括android测试框架、CTS、Monkey、Monkeyrunner、benchmark、其它test tool等等。因接触时间很短,很多地方有不足之处,希望能和大家多多交流。一、什么是monkeyrunnermonkeyrunner工具提供了一个API,使用此API写出的程序可以在Android代码之外控 阅读全文
posted @ 2011-10-24 10:26 张兴业 阅读(202) 评论(0) 推荐(0) 编辑
摘要: http://www.devdiv.com/home.php?mod=space&uid=14682&do=blog&id=5857Monkey工具前言:最近开始研究Android自动化测试方法,对其中的一些工具、方法和框架做了一些简单的整理,其中包括android测试框架、CTS、Monkey、Monkeyrunner、benchmark、其它test tool等等。因接触时间很短,很多地方有不足之处,希望能和大家多多交流。一、 什么是MonkeyMonkey是Android中的一个命令行工具,可以运行在模拟器里或实际设备中。它向系统发送伪随机的用户事件流(如按键输入 阅读全文
posted @ 2011-10-24 10:23 张兴业 阅读(203) 评论(0) 推荐(0) 编辑