`

android monkeyrunner 2

阅读更多
Running monkeyrunner
运行monkeyrunner


You can either run monkeyrunner programs from a file, or enter monkeyrunner statements in an interactive session. You do both by invoking the monkeyrunner command which is found in the tools/ subdirectory of your SDK directory. If you provide a filename as an argument, the monkeyrunner command runs the file's contents as a Python program; otherwise, it starts an interactive session.
您可以直接使用一个代码文件运行monkeyrunner,抑或在交互式对话中输入monkeyrunner语句。不论使用哪种方式,您都需要调用SDK目录的tools子目录下的monkeyrunner命令。如果您提供一个文件名作为运行参数,则monkeyrunner将视文件内容为Python程序,并加以运行;否则,它将提供一个交互对话环境。

The syntax of the monkeyrunner command is
monkeyrunner命令的语法为:


monkeyrunner -plugin <plugin_jar> <program_filename> <program_options>
monkeyrunner -plugin  <程序文件名> <程序选项>

Table 1 explains the flags and arguments.
表 1阐释了命令的标志和参数。

Table 1. monkeyrunner flags and arguments.
表1.monkeyrunner标志和参数。
    

Argument               Description
-plugin <plugin_jar>  (Optional) Specifies a .jar file containing a plugin for monkeyrunner. To learn more about monkeyrunner plugins, see Extending monkeyrunner with plugins. To specify more than one file, include the argument multiple times.
<program_filename> If you provide this argument, the monkeyrunner command runs the contents of the file as a Python program. If the argument is not provided, the command starts an interactive session.
<program_options> (Optional) Flags and arguments for the program in <program_file>.                                                                                           
           

参数                   说明
----------------------------------------------------------------------------------------------
-plugin              (可选)指定一个内含monkeyrunner插件的.jar文件。
                         欲了解更多关于monkeyrunner插件的内容,请参照使
                         用插件扩展monkeyrunner。  要指定多个文件,包括
                         多次论证。如欲指定超过一个文件,可以多次使用此参数。
----------------------------------------------------------------------------------------------     <程序文件名>     如果您指定此参数,monkeyrunner将视文件内容为Python
                         程序并予以执行。如果此参数未予指定,则开启一个交互式会话。
----------------------------------------------------------------------------------------------
<程序选项>      (可选)<程序文件名>           
                        所指定的程序所需的参数
----------------------------------------------------------------------------------------------
monkeyrunner Built-in Help      
monkeyrunner内建帮助

You can generate an API reference for monkeyrunner by running:
您可以用以下命令来生成monkeyrunner的API参考:

monkeyrunner <format> help.py <outfile>
monkeyrunner  help.py

The arguments are:
参数说明:

    * <format> is either text for plain text output or html for HTML output.
    * 可以为text或html,分别代表纯文本和HTML输出。
    * <outfile> is a path-qualified name for the output file.
    *  指定了输出文件的全路经名称。



Extending monkeyrunner with Plugins
使用插件扩展monkeyrunner


You can extend the monkeyrunner API with classes you write in the Java programming language and build into one or more .jar files. You can use this feature to extend the monkeyrunner API with your own classes or to extend the existing classes. You can also use this feature to initialize the monkeyrunner environment.
您可以用Java语言创建新的类,并打包成一个或多个.jar文件,以此来扩展monkeyrunnerAPI。您可以使用您自己写的类或者继承现有的类来扩展monkeyrunnerAPI。您还可以使用此功能来初始化monkeyrunner环境。

To provide a plugin to monkeyrunner, invoke the monkeyrunner command with the -plugin <plugin_jar> argument described in table 1.
为了使monkeyrunner加载一个插件,您应当如使用如表1中所述的-plugin参数来调用monkeyrunner命令。

In your plugin code, you can import and extend the the main monkeyrunner classes MonkeyDevice, MonkeyImage, and MonkeyRunner in com.android.monkeyrunner (see The monkeyrunner API).
在您编写的插件中,您可以导入或继承位于com.android.monkeyrunner包中的几个主要的monkeyrunner类:MonkeyDevice, MonkeyImage和MonkeyRunner(参见monkeyrunnerAPI )。


Note that plugins do not give you access to the Android SDK. You can't import packages such as com.android.app. This is because monkeyrunner interacts with the device or emulator below the level of the framework APIs.
请注意,插件无法让你访问Android的SDK。您不能导入com.android.app等包。这是因为monkeyrunner是在框架API层次之下与设备或模拟器进行交互的。


The plugin startup class
插件启动类


The .jar file for a plugin can specify a class that is instantiated before script processing starts. To specify this class, add the key MonkeyRunnerStartupRunner to the .jar file's manifest. The value should be the name of the class to run at startup. The following snippet shows how you would do this within an ant build script:
用于插件的.jar文件可以指定一个类,使其在脚本执行之前就实例化。如欲指定这个类,您需要在.jar文件的manifest中添加键MonkeyRunnerStartupRunner。其值为启动时运行的类的名称。以下代码段显示了如何在一个ant构建脚本达到这样的目的:

<jar jarfile="myplugin" basedir="${build.dir}">
<manifest>
<attribute name="MonkeyRunnerStartupRunner" value="com.myapp.myplugin"/>
</manifest>
</jar>

   
To get access to monkeyrunner's runtime environment, the startup class can implement com.google.common.base.Predicate<PythonInterpreter>. For example, this class sets up some variables in the default namespace:
如欲访问monkeyrunner的运行时环境,启动类可以实现com.google.common.base.Predicate。例如,用这个类在默认的命名空间中设置一些变量:

package com.android.example;
 
 import com.google.common.base.Predicate;
 import org.python.util.PythonInterpreter;
 
 public class Main implements Predicate {
     @Override
     public boolean apply(PythonInterpreter anInterpreter) {
 
         /*
         * Examples of creating and initializing variables in the monkeyrunner environment's
         * namespace. During execution, the monkeyrunner program can refer to the variables "newtest"
         * and "use_emulator"
         *
         */
         anInterpreter.set("newtest", "enabled");
         anInterpreter.set("use_emulator", 1);
 
         return true;
     }
 }
分享到:
评论

相关推荐

    android计算器monkeyrunner测试脚本

    用于测试Android计算器,适合初学monkeyrunner测试脚本编写者

    Android应用Monkeyrunner测试脚本

    2. **Monkeyrunner脚本结构** 一个典型的Monkeyrunner脚本通常包括导入所需的模块(如`com.android.monkeyrunner.MonkeyRunner`和`com.android.monkeyrunner.Recordable`),定义设备对象,然后编写一系列操作步骤...

    monkeyrunner在pydev的集成

    MonkeyRunner工具和Monkey工具都是Android系统提供的用于进行自动化测试的命令行工具,但它们的应用方式和目的存在一定的差异。 首先我们来理解Monkey工具。Monkey是一个命令行工具,它可以运行在Android的模拟器...

    android自动化测试monkeyrunner学习

    ### Android自动化测试MonkeyRunner详解 #### 一、MonkeyRunner简介 MonkeyRunner是Android SDK中一个强大的自动化测试工具,它提供了一套API来控制Android设备或模拟器。通过编写Python脚本,用户可以实现诸如...

    android自动化测试之monkeyrunner教程

    android自动化测试monkeyrunner的入门使用教程,讲解了如何使用monkeyrunner进行android的自动化测试

    安卓MonkeyRunner自动化测试Lowen.zip

    lowen 基于monkeyrunner的android应用的自动化测试,并输出测试结果到html的框架 仿腾讯utest测试框架 代码有待完善,欢迎有兴趣的朋友一起讨论(目前报表里面使用echarts部分没有写数据处理逻辑,框架已搭好) ...

    monkeyrunner录制回放文件.rar

    MonkeyRunner是Android SDK中一个强大的自动化测试工具,它允许开发者编写Python脚本来控制Android设备或模拟器,并进行各种UI操作,如触摸、滑动、点击等。这个名为"monkeyrunner录制回放文件.rar"的压缩包包含两个...

    Android自动化测试_Monkeyrunner

    ### Android自动化测试_Monkeyrunner #### 搭建Android自动化测试环境 ##### 环境准备 在开始使用Monkeyrunner进行自动化测试之前,需要确保已经正确安装并配置了以下软件环境: 1. **JDK (Java Development Kit...

    monkeyrunner

    总的来说,monkeyrunner为Android自动化测试提供了一种强大的工具,它能够灵活地处理多种测试场景,通过编写Python脚本实现对Android设备的全面控制,简化了测试流程,提高了测试效率。对于大型项目或持续集成环境,...

    MonkeyRunner脚本生成工具

    MonkeyRunner脚本生成工具是一种Android自动化测试框架,它允许开发者编写Python脚本来控制设备或模拟器,进行应用程序的UI测试。这个工具对于大型项目和持续集成环境尤其有用,因为它可以大大提高测试效率,减少...

    测验自己开拓的Android利用过程之monkeyrunner.docx

    2. **Monkeyrunner的主要用途** - **多设备控制**:Monkeyrunner可以同时连接并控制多个Android设备或模拟器,这对于大规模测试尤其有用。 - **性能测试**:编写脚本,模拟用户从头到尾的完整使用流程,对应用进行...

    Android自动化测试(MonkeyRunner)脚本python

    MonkeyRunner是Android SDK提供的一种工具,用于编写和执行对Android设备或模拟器的自动化测试。这个工具通过Python脚本来控制设备,进行各种用户交互,如点击、滑动、输入文本等,从而实现对应用程序的系统级测试。...

    Android自动测试之monkeyrunner工具.docx

    【Android自动测试之monkeyrunner工具】是Android平台上用于自动化测试的一种工具,它提供了一套Python API,使得开发者能够在PC上编写脚本,控制Android设备或模拟器进行测试操作。Monkeyrunner不仅适用于应用的...

    monkeyrunner 简单实用手册

    Monkeyrunner 是 Android SDK 中的一个自动化测试工具,它提供了一个基于 Python 的接口,允许开发者编写脚本来控制设备或模拟器的行为,进行功能测试、性能测试或任何其他自动化任务。这个工具对于开发者来说非常...

    android自动化测试工具monkeyrunner总结

    2. **Monkeyrunner工具**:则是在开发者的计算机上通过一套API控制Android设备或模拟器执行各种操作。相比Monkey,Monkeyrunner提供了更多的灵活性和控制能力,支持复杂的测试场景设计。 #### 三、Monkeyrunner支持...

    MonkeyRunner录制脚本相关工具

    2. `monkey.mr`:这是MonkeyRunner的脚本文件,扩展名为`.mr`。这个文件包含了通过MonkeyRunner编写的命令序列,用于模拟用户与应用的交互。例如,它可能包含了点击屏幕上的特定坐标、输入文本、等待特定时间等操作...

    MonkeyRunner培训简单教程

    MonkeyRunner是一种强大的自动化测试工具,主要用于Android设备或模拟器上的应用程序测试。它基于Python语言,能够轻松地与Android框架进行交互,实现各种复杂的测试场景。 **1. 多设备控制** MonkeyRunner支持...

    monkeyrunner使用要点

    Monkeyrunner 是一个由 Android SDK 提供的工具,用于自动化测试 Android 应用程序。它基于 Python,允许开发者编写脚本来控制设备或模拟器的行为,并与应用程序进行交互。本篇文章将详细讲解 Monkeyrunner 的环境...

Global site tag (gtag.js) - Google Analytics