51Testing软件测试论坛

标题: MonkeyRunner介绍 [打印本页]

作者: jane1229    时间: 2014-9-9 07:17
标题: MonkeyRunner介绍
本帖最后由 jane1229 于 2014-9-9 07:19 编辑



本文是自己搜集的一点资料

文档内容参考包含了一下内容:
http://www.chuanke.com/v1983382-106000-218426.html
http://blog.csdn.net/zuoyu55/article/details/7718447
http://blog.csdn.net/simmer_ken/article/details/7637556
等等

其中包含自己写的几个例子,请大家多多指点。
部分内容如下:

六、实例
1、关于录制和回放,获取坐标点
1. 将以下代码拷贝到monkey_recorder.py
#!/usr/bin/env monkeyrunner
# Copyright 2010, The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from com.android.monkeyrunner import MonkeyRunner as mr
from com.android.monkeyrunner.recorder import MonkeyRecorder as recorder
device = mr.waitForConnection()
recorder.start(device)
2. 将以下代码拷贝到monkey_playback.py
#!/usr/bin/env monkeyrunner
# Copyright 2010, The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
from com.android.monkeyrunner import MonkeyRunner
# The format of the file we are parsing is very carfeully constructed.
# Each line corresponds to a single command.  The line is split into 2
# parts with a | character.  Text to the left of the pipe denotes
# which command to run.  The text to the right of the pipe is a python
# dictionary (it can be evaled into existence) that specifies the
# arguments for the command.  In most cases, this directly maps to the
# keyword argument dictionary that could be passed to the underlying
# command.
# Lookup table to map command strings to functions that implement that
# command.
CMD_MAP = {
    'TOUCH': lambda dev, arg: dev.touch(**arg),
    'DRAG': lambda dev, arg: dev.drag(**arg),
    'PRESS': lambda dev, arg: dev.press(**arg),
    'TYPE': lambda dev, arg: dev.type(**arg),
    'WAIT': lambda dev, arg: MonkeyRunner.sleep(**arg)
    }
# Process a single file for the specified device.
def process_file(fp, device):
    for line in fp:
        (cmd, rest) = line.split('|')
        try:
            # Parse the pydict
            rest = eval(rest)
        except:
            print 'unable to parse options'
            continue
        if cmd not in CMD_MAP:
            print 'unknown command: ' + cmd
            continue
        CMD_MAP[cmd](device, rest)

def main():
    file = sys.argv[1]
    fp = open(file, 'r')
    device = MonkeyRunner.waitForConnection()
   
    process_file(fp, device)
    fp.close();
   
if __name__ == '__main__':
main()

3. 获取坐标点、脚本
(1)打开monkey_recorder.py
[attach]91805[/attach]
2)录制操作
[attach]91806[/attach]

[attach]91807[/attach]

3、回放操作
[attach]91808[/attach]

2、MonkeyRunner执行Python脚本实例——发送短信(这是网上找的例子:连接:http://www.cnblogs.com/dimdusk/archive/2013/04/15/3011208.html)
目标:对手机短信程序进行压力测试。
#导入我们需要用到的包和类并且起别名
import sys
from com.android.monkeyrunner import MonkeyRunner as mr
from com.android.monkeyrunner import MonkeyDevice as md
from com.android.monkeyrunner import MonkeyImage as mi
#connect device 连接设备
#第一个参数为等待连接设备时间
#第二个参数为具体连接的设备ID
device = mr.waitForConnection(1.0,‘device_id’)
if not device:
    print >> sys.stderr,"fail"
    sys.exit(1)
#定义要启动的Activity
componentName='com.android.mms/.ui.BootActivity'
#启动特定的Activity
device.startActivity(component = componentName)
#等待时间,防止操作太快,设备反应不及时
mr.sleep(1.0)
#do someting 进行我们的操作
#新建短信
#参数是屏幕上坐标值,最后一个参数是动作
device.touch(57,747,'DOWN_AND_UP')
mr.sleep(1.0)
#输入收件人号码
device.type('10086')
#发送短信条数
for i in range(0,10):
    #输入短信内容
    device.touch(187,402,'DOWN_AND_UP')
    device.type('Hello')
    mr.sleep(1.0)
    #发送短信
    device.touch(432,380,'DOWN_AND_UP')
    mr.sleep(1.0)
    device.touch(51,752,'DOWN_AND_UP')
    mr.sleep(1.0)
#takeSnapshot截图
mr.sleep(1.0)
result = device.takeSnapshot()
#save to file 保存到文件,D盘的根目录下
result.writeToFile('d:\\result2.png','png');
3、monkeyrunner测试apk包安装卸载
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
device = MonkeyRunner.waitForConnection()
#install package NotesList.apk
#可以通过创建samples project 然后运行安装NotesList.apk到手机设备上
#device.installPackage('./installPackage/NotesList.apk')
device.installPackage('NotesList.apk')
print ('install success')
#remove package NotesList.apk
device.removePackage ('com.example.android.notepad')
print ('removed success')
MonkeyRunner.sleep(15)

4、使用控件ID写脚本

------------------------------------------------------------
由于帖子字数限制。。
如有需要可以下载附件。。。需要回复可见



作者: Miss_love    时间: 2014-9-9 08:50
感谢分享
作者: 猫星人    时间: 2014-9-9 10:29
看看了。谢谢


如有需要可以下载附件。。。需要回复可见
作者: baiyi    时间: 2014-9-10 09:14
猫星人 发表于 2014-9-9 10:29
看看了。谢谢

学习
作者: lovelorn0327    时间: 2014-9-10 10:00
现在也在使用monkeyrunner,前来求学
作者: yomi0517    时间: 2014-9-10 10:18
看看,准备性能测试
作者: yinlijun527    时间: 2014-9-10 16:20
感谢!
作者: chalmersmars    时间: 2014-9-16 15:38
Monkeyrunner是要学的
作者: czdfn    时间: 2014-9-17 16:03
xiela
作者: jane1229    时间: 2014-9-25 22:08
猫星人 发表于 2014-9-9 10:29
看看了。谢谢

哈哈,之前以为帖子没通过。。
一回来,居然有这么多消息
作者: 初七    时间: 2014-9-29 14:16
语句可循环吗
作者: duanchiemo_xm    时间: 2014-10-11 11:57
赞~~~~~
作者: liujianmian    时间: 2014-10-11 17:14
回复看看
作者: smlj    时间: 2014-10-12 19:55
看看
作者: alecy    时间: 2014-10-13 17:10
还挺复杂的,看看
作者: xxhylc    时间: 2014-10-15 10:39
恩很不错的哈哈哈哈哈
作者: 馋嘴小软    时间: 2014-10-15 16:28
学习学习~~~
作者: hihotb    时间: 2014-10-15 22:20
看一下啊
作者: w2syq    时间: 2014-10-16 08:56
学习
作者: damilhc44735463    时间: 2014-10-16 14:04
看看了。谢谢
作者: aflove    时间: 2014-10-21 16:23

学习一下,感谢共享
作者: whjbjj    时间: 2014-10-24 11:15

作者: w_d775    时间: 2014-10-24 11:27
这个必须支持楼主
作者: myiori888    时间: 2014-10-27 10:39
感谢楼主
作者: 地壳    时间: 2014-10-27 10:48
谢谢
作者: 董崇宇    时间: 2014-10-29 16:01
学习一i下,,,
作者: wanshannimeia    时间: 2014-10-30 14:13
支持一下!
作者: shoushuo44    时间: 2014-10-30 16:10
学习下
作者: Hola_Lexi    时间: 2014-11-3 10:30

作者: jinyon910    时间: 2014-11-3 12:01
yyyyyyyyyyyyyyyyyyyyyy
作者: lan965309383    时间: 2014-11-3 17:23
看看

作者: huangJenny    时间: 2014-11-6 16:15
蛮实用,谢谢
作者: dragonszh    时间: 2014-11-9 12:26
学习下
作者: zhihua010    时间: 2014-11-10 16:51
谢谢LZ
作者: pengxing12121    时间: 2014-11-11 11:50
33
作者: 603282475    时间: 2014-11-11 11:53
学习
作者: fjblld_521    时间: 2014-12-1 15:46
学习
作者: qq815159972    时间: 2014-12-6 16:05
qiaoqiao
作者: zhegutian0213    时间: 2014-12-10 13:18
看看了,谢谢楼主。
作者: petrel2002    时间: 2014-12-16 14:29
学习
作者: dikim    时间: 2014-12-17 09:45
回复可见
作者: dikim    时间: 2014-12-17 10:44
代码有点乱哦  (是括号“(”吧
作者: 寻路    时间: 2014-12-17 20:45
谢谢lz分享
作者: zoushujuan    时间: 2014-12-22 19:04

作者: zoushujuan    时间: 2014-12-22 19:04
lkk
作者: liaogang501    时间: 2014-12-28 22:24
MARK一下,正好需要
作者: wys702a8    时间: 2015-1-3 17:22
谢谢分享,下来看看!
作者: 测试纯小白    时间: 2015-1-6 08:15
这个和itest哪个好用?
作者: 燃情岁月    时间: 2015-2-10 10:25
学习
作者: dingjy0515    时间: 2015-2-11 17:24
想看附件
作者: edwinhuang    时间: 2015-2-18 09:06
谢谢分享
作者: james_m4a1    时间: 2015-3-30 12:59
看看先吧,谢谢分享
作者: yi2014    时间: 2015-4-20 09:13
hjjhjh
作者: best_bisu    时间: 2015-4-27 13:48
33333感谢分享~~~~~~~~~
作者: yingchun2915    时间: 2015-4-28 12:38

作者: 68480850    时间: 2015-4-30 15:00
look
作者: longlong_5945    时间: 2015-4-30 16:57
需要知识来装备自己
作者: diploma    时间: 2015-5-4 23:38
看看
作者: fk2934234    时间: 2015-5-6 19:29
感谢楼主分享 学习下
作者: 李创玲    时间: 2015-5-14 11:40
在学
作者: 李创玲    时间: 2015-5-14 11:41
在学monkeyrunner
作者: tian848    时间: 2015-5-15 17:14
看看学习学习
作者: yuyinghanxi    时间: 2015-5-19 17:07
学习下
作者: i35    时间: 2015-5-20 10:57
学习下
作者: 路orz    时间: 2015-5-21 14:39
谢谢楼主~
作者: 葙a    时间: 2015-6-2 11:22
看看
作者: Rossing_ffrj    时间: 2015-6-2 14:11
向学习手机自动化测试
作者: hemiaoer    时间: 2015-6-5 15:12
get~~
作者: lunahaha527    时间: 2015-6-9 15:15

作者: Gwenne_66    时间: 2015-6-10 16:44
强烈需要学习Monkeyrunner
作者: coco_kong    时间: 2015-6-11 16:49

作者: smallqinshihai    时间: 2015-6-15 13:05
谢谢~~~
作者: mythyang    时间: 2015-6-18 11:09
查看

作者: vs_dev    时间: 2015-6-18 17:43
看看,谢谢了
作者: vs_dev    时间: 2015-6-18 17:43
看看,谢谢了
作者: 芊芊水仙    时间: 2015-6-23 11:12
aaaaaaaaaaaaaaaaaaaaaaa
作者: 阿哆cd    时间: 2015-6-23 15:24
学习学习,谢谢楼主~!
作者: gary200    时间: 2015-7-9 14:57
ok
作者: 敏于行    时间: 2015-10-28 11:27

作者: suixingdemao    时间: 2015-10-28 12:44
谢谢分享
作者: empire    时间: 2015-10-28 19:04
好东西,分享好东西的都是好人,好人一生平安
作者: l84222780    时间: 2015-11-3 10:29

作者: weimin520    时间: 2015-11-15 23:26
谢谢
作者: 中雨郎    时间: 2015-11-16 09:35
多谢,分享
作者: fengye1113    时间: 2015-11-23 15:06
学习了,谢谢分享!
作者: sjjloveli    时间: 2015-11-24 15:14
学习
作者: 贝贝云儿    时间: 2015-11-24 15:18

作者: linda22    时间: 2015-11-28 15:15
谢谢分享!
作者: hamon1990    时间: 2015-12-1 10:26
学习学习
作者: 刘蜀黍    时间: 2015-12-1 15:45
vvvvvv
作者: 295257792    时间: 2015-12-1 16:58

作者: celeryliu    时间: 2015-12-4 10:05
多谢分享啊

作者: 李富宇    时间: 2015-12-10 09:17

作者: poapaobaha    时间: 2015-12-10 14:21
KANYIKAN
作者: Flykite    时间: 2015-12-11 11:05
看看,要回复才能下载,好麻烦
作者: lwy_001    时间: 2015-12-14 16:28
学习下
作者: 草办四夕    时间: 2015-12-18 09:19
device.touch(51,752,'DOWN_AND_UP')

(这个什么意思?

一般不是device.touch(51,752,'DOWN_AND_UP')吗?
作者: kts168    时间: 2016-1-8 21:23
无语 , 连这都需要隐藏
作者: webber.wei    时间: 2016-1-11 17:31
学习ing
作者: xuqu1984    时间: 2016-1-13 10:31
学习了,谢谢




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2