Monkeyrunner 录制脚本&回放

上一篇 / 下一篇  2013-08-27 16:31:56 / 个人分类:monkeyrunner

  前两天在网上看到一个博客有关monkeyrunner录制脚本&回放的,写的很详细,易懂,操作了下木有问题。记下:

OK下面开始介绍monkeyrunner录制和回放功能

 monkeyrunner的源代码可以在android源代码里找到,monkeyrunner源代码里有个scripts文件夹,里面有monkey_recorder.pymonkey_playback.py两个python文件,这两个文件就是用来录制和回放的~


录脚本是这样的,very easy:

连上设备,打开命令行(如果是windows系统的话)=>输入monkeyrunner xxx/xxx/monkey_record.py(这个要填完整路径,不然会提示找不到) 

这样就可以录制啦~~

下图是录制的界面,点击屏幕即会生成坐标,please see the top还有button,输入文本,滑动等事件

录制完毕后选择Export Actions就将脚本保存下来了,保存的时候不需要后缀名。


录完脚本,下面就是回放了,同样很easy

打开命令行=>输入monkeyrunner monkey_playback.py(这里写完整路径)刚刚export的脚本(写明完整路径)

这样就可以回放了~

monkeyrunner脚本录制

1.在窗口输入 monkeyrunner monkey_recorder.py  调用录制脚本工具

2.在窗口输入 monkeyrunner monkey_playback.py  d:\game  执行已经录制的脚本工具

3.E:\Android SDK\ tools>monkeyrunner test.mr 自行写的脚本运行,定位到脚本文件位置,然后执行 

1.脚本录制:

该窗口的功能:

     1、可以自动显示手机当前的界面

     2、自动刷新手机的最新状态

     3、点击手机界面即可对手机进行操作,同时会反应到真机,而且会在右侧插入操作脚本

     4:、wait: 用来插入下一次操作的时间间隔,点击后即可设置时间,单位是秒

            Press a Button:用来确定需要点击的按钮,包括menu、home、search,以及对按钮的press、down、up属性

            Type Something:用来输入内容到输入框

            Fling:用来进行拖动操作,可以向上、下、左、右,以及操作的范围

            Export Actions:用来导出脚本

            Refresh Display:用来刷新手机界面,估计只有在断开手机后,重新连接时才会用到



贴一下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)


贴一下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(**a

rg),

    '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()



TAG:

ljh01的个人空间 引用 删除 ljh01   /   2015-04-13 10:16:51
问个问题  如何调整record中的边框大小,貌似手机分辨率越高,越模糊,看不清楚
Ruby0312的个人空间 引用 删除 Ruby0312   /   2013-08-30 11:26:19
直接将上面monkey_recorder.py中的脚本复制到一个文件中,并命名为monkey_recorder.py就可以了
原帖由huangpingping于2013-08-29 16:26:26发表
找不到monkey_recorder.py
Asia 引用 删除 张亚洲   /   2013-08-29 20:40:51
那不是写上代码了啊!
引用 删除 huangpingping   /   2013-08-29 16:26:26
找不到monkey_recorder.py
 

评分:0

我来说两句

Open Toolbar