Posts Tagged ‘android’

First of all, Thanks TrevE , the author of  Logging Test App. All I done in this article is just following what he did in his app. These days, Carrier IQ brought an big earthquake in almost all popular mobile platforms including Android, iOS, Blackberry How to check if your device is CIQed or not: Update: [...]

This time I want to use English to make this article useful for all others in the world:) As you know, Android MonkeyRunner is a good testing tool, but we could only develop monkeyrunner under a text editor like Vim, emacs, etc. Diego Torres Milano wrote a blog to make Monkeyrunner running on Eclipse, he [...]

My first real project! 这是我第一次想把自己工作相关的东西拿出来开源,这也是我觉得我迄今为止做成的最像个样也最有成就感的一个工程: 一是之前自己都没有用SCM,现在用上git后发现真的非常之方便好用 二是之前都是在博客上发布些自己写的小工具,不能真正和世界挂钩。其实自己写过很多和Android自动化测试相关的东西了,只是没公开而已。这次是给Selenium+Android写的,应该有挺多人能从我写的东西里面受益吧。 本来想是不是能争取做selenium的一个committer提交的,不过鉴于俺新手的水平,没敢提。先自己练着吧。。。 这个是我的开源项目地址:https://github.com/truebit/AndroidWebDriver4Python 说明文档,需要知道的都在里面了:https://github.com/truebit/AndroidWebDriver4Python/blob/master/README 现在是1.0-final版,做了20次的压力测试(真机和模拟器各10次),没有问题 下一步准备实现同时对多个设备的操作,应该不是啥大问题。 大家如果有什么问题或者建议请在GitHub提出来,也可以在微博上问我:@SeganW 题外话,在家的时候提交修改出现以下错误: error: The requested URL returned error: 403 while accessing https://truebit@github.com/truebit/AndroidWebDriver4Python.git/info/refs fatal: HTTP request failed 后来终于知道:原来GitHub只有ssh形式的clone代码才是可以读写的。要修改也挺简单: 编辑该repo目录下的.git/config文件,找到url那行,把前面的https://truebit改成ssh://github 改完的效果是这样的: url = ssh://git@github.com/truebit/AndroidWebDriver4Python.git 改之前是 https://truebit@github.com/truebit/AndroidWebDriver4Python.git 其实就是从read-only的https改成read-write的ssh!