daikang1988 发表于 2012-7-16 12:47:25

自己写的一个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()

xiao08_25 发表于 2012-8-14 14:50:38

在真机上面执行过了,可以达到你脚本里面的效果,不过snap()这个方法并没有用到哦。
支持哈~~

zgc1031 发表于 2012-10-11 12:53:38

在真机上面执行过了,可以达到你脚本里面的效果,不过snap()这个方法并没有用到哦。
支持哈~~
xiao08_25 发表于 2012-8-14 14:50 http://bbs.51testing.com/images/common/back.gif

截图的路径错误,应该是斜杠/而不是反斜杠\

xiaomayi0323 发表于 2012-11-21 15:58:49

python 版本要3.0?

chy2436447@ 发表于 2013-5-11 15:02:27

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成功了,请教会是什么原因导致的?

guang_feng 发表于 2013-6-7 22:09:27

guang_feng 发表于 2013-6-7 22:09:52

guang_feng 发表于 2013-6-7 22:10:06

guang_feng 发表于 2013-6-7 22:10:27

顶顶

guang_feng 发表于 2013-6-7 22:10:56

好东西啊

liuhaisheng2008 发表于 2013-10-17 09:57:45

我啥时候能写这些脚本啊

t_user 发表于 2013-11-8 11:00:25

楼主有心了 多多分享

chengweilu 发表于 2013-12-17 16:01:11

感谢分享。

momang 发表于 2014-2-7 10:38:18

:victory:

harold 发表于 2014-3-11 12:55:30

学习了,明显是python3.x版本

loading_happy 发表于 2014-5-20 13:51:36

回复 5# chy2436447@
第一个参数有问题,KEYCODE_CALL, KEYCODE_NUM1, KEYCODE_ENDCALL等,你只写KEYCODE当然不识别了,去developer.android.com上看看,结束很清楚

fengye1113 发表于 2015-11-23 14:09:34

学习了,谢谢分享!
页: [1]
查看完整版本: 自己写的一个monkey runner的py文件,实现camera的简单压力