自己写的一个monkey runner的py文件,实现camera的简单压力
自己写的一个monkey runner的py文件,实现camera的简单压力monkey runner这几天研究了一下,由于网络上教程稀少,学得很纠结
现在大概明白什么意思了,
为了避免初入的同学走我一样的弯路,分享出我自己写的一个脚本;
语言很简单,没什么技术含量哦,但初学者还是能看看的,我试验了 是可以运行的,如果你的运行报错了
估计是空格的原因,注意函数,循环的缩进对齐
还有,如果有什么问题,我懂的,我会回答的,刚发现51test这个论坛还不错的,希望大家一起学习研究~:)
import random
from com.android.monkeyrunner import MonkeyRunner,MonkeyDevice,MonkeyImage
#connect phone device
print("start to connect to the phone")
MonkeyRunner.sleep(1)
device = MonkeyRunner.waitForConnection()
print("connect sucessed!")
#start a Activity,we must get the name of the pakage and acitivity
#you can use "adb logcat ActivityManager:I MyApp:D *:S"
def startActivity():
#which activity you will run("pakage name/activity name")
print("start an Activity")
connectcomponent="com.android.camera/.Camera"
device.startActivity(component = connectcomponent)
#exit current Activity
def exitActivity():
print("exit an Activity")
device.press("KEYCODE_HOME",'DOWN_AND_UP')
#snap a shot
def snap():
result = device.takeSnapshot()
result.writeToFile("E:\sdk\monkeysnap\shot.png",'png')
print("picture has saved!")
#touch the LCD in random
#circulate times;
def randomtouchLCD(Times):
print("start to touch LCD in random")
LCDWidth=480
LCDHeigth=800
for k in range(0,Times):
i=random.randint(1, Times)
j=random.randint(1, Times)
device.touch(int(LCDWidth*i/Times),int(LCDHeigth*j/Times),"DOWN_AND_UP")
print("touch ",int(LCDWidth*i/Times),int(LCDHeigth*j/Times))
MonkeyRunner.sleep(0.5)
#desgin Testing,you can also add a circulate for better stress testing
def test():
print("testing start!")
startActivity()
randomtouchLCD(10)
exitActivity()
print("testing end!")
test() 在真机上面执行过了,可以达到你脚本里面的效果,不过snap()这个方法并没有用到哦。
支持哈~~ 在真机上面执行过了,可以达到你脚本里面的效果,不过snap()这个方法并没有用到哦。
支持哈~~
xiao08_25 发表于 2012-8-14 14:50 http://bbs.51testing.com/images/common/back.gif
截图的路径错误,应该是斜杠/而不是反斜杠\ python 版本要3.0? from com.android.monkeyrunner import MonkeyRunner,MonkeyDevice,MonkeyImage
device = MonkeyRunner.waitForConnection(5,‘TA74402ZTR’)
手机连接上了以后,再输入
device.press('KEYCODE',MonkeyDevice.DOWN_AND_UP)
提示error sending touch event
我们是测试软件兼容手机,手机root成功了,请教会是什么原因导致的? 顶 顶 顶 顶顶 好东西啊 我啥时候能写这些脚本啊 楼主有心了 多多分享 感谢分享。 :victory: 学习了,明显是python3.x版本 回复 5# chy2436447@
第一个参数有问题,KEYCODE_CALL, KEYCODE_NUM1, KEYCODE_ENDCALL等,你只写KEYCODE当然不识别了,去developer.android.com上看看,结束很清楚 学习了,谢谢分享!
页:
[1]