`
yidongkaifa
  • 浏览: 4068004 次
文章分类
社区版块
存档分类
最新评论

Android自动化测试之MonkeyRunner之MonkeyDevice(八)

 
阅读更多

Android自动化测试之MonkeyRunner之MonkeyDevice

A monkeyrunner class that represents a device or emulator accessible by the workstation runningmonkeyrunner.

This class is used to control an Android device or emulator. The methods send UI events, retrieve information, install and remove applications, and run applications.

You normally do not have to create an instance of MonkeyDevice. Instead, you useMonkeyRunner.waitForConnection() to create a new object from a connection to a device or emulator. For example, instead of using:

newdevice = MonkeyDevice()

you would use:

newdevice = MonkeyRunner.waitForConnection()

Summary


Constants
string DOWN Use this with the type argument ofpress() ortouch()to send a DOWN event.
string UP Use this with the type argument ofpress() ortouch()to send an UP event.
string DOWN_AND_UP Use this with the type argument ofpress() ortouch()to send a DOWN event immediately followed by an UP event.
Methods
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#broadcastIntent">broadcastIntent</a></span>(<em>string</em> uri,<em>string</em> action,<em>string</em> data,<em>string</em> mimetype,<em>iterable</em> categories<em>dictionary</em> extras,<em>component</em> component,<em>iterable</em> flags)</nobr>
Broadcasts an Intent to this device, as if the Intent were coming from an application.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#drag">drag</a></span>(<em>tuple</em> start,<em>tuple</em> end,<em>float</em> duration,<em>integer</em> steps)</nobr>
Simulates a drag gesture (touch, hold, and move) on this device's screen.
<nobr><em>object</em> </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#getProperty">getProperty</a></span>(<em>string</em> key)</nobr>
Given the name of a system environment variable, returns its value for this device. The available variable names are listed in thedetailed description of this method.
<nobr><em>object</em> </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#getSystemProperty">getSystemProperty</a></span>(<em>string</em> key)</nobr>
. The API equivalent of adb shell getprop <key>. This is provided for use by platform developers.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#installPackage">installPackage</a></span>(<em>string</em> path)</nobr>
Installs the Android application or test package contained in packageFile onto this device. If the application or test package is already installed, it is replaced.
<nobr><em>dictionary</em> </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#instrument">instrument</a></span>(<em>string</em> className,<em>dictionary</em> args)</nobr>
Runs the specified component under Android instrumentation, and returns the results in a dictionary whose exact format is dictated by the component being run. The component must already be present on this device.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#press">press</a></span>(<em>string</em> name,<em>dictionary</em> type)</nobr>
Sends the key event specified by type to the key specified by keycode.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#reboot">reboot</a></span>(<em>string</em> into)</nobr>
Reboots this device into the bootloader specified by bootloadType.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#removePackage">removePackage</a></span>(<em>string</em> package)</nobr>
Deletes the specified package from this device, including its data and cache.
<nobr><em>object</em> </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#shell">shell</a></span>(<em>string</em> cmd)</nobr>
Executes an adb shell command and returns the result, if any.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#startActivity">startActivity</a></span>(<em>string</em> uri,<em>string</em> action,<em>string</em> data,<em>string</em> mimetype,<em>iterable</em> categories<em>dictionary</em> extras,<em>component</em> component,<em>flags</em>)</nobr>
Starts an Activity on this device by sending an Intent constructed from the supplied arguments.
<nobr><code><a href="http://developer.android.com/tools/help/MonkeyImage.html">MonkeyImage</a></code></nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#takeSnapshot">takeSnapshot</a>()</span></nobr>
Captures the entire screen buffer of this device, yielding aMonkeyImageobject containing a screen capture of the current display.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#touch">touch</a></span>(<em>integer</em> x,<em>integer</em> y,<em>integer</em> type)</nobr>
Sends a touch event specified by type to the screen location specified by x and y.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#touch">type</a></span>(<em>string</em> message)</nobr>
Sends the characters contained in message to this device, as if they had been typed on the device's keyboard. This is equivalent to callingpress() for each keycode inmessage using the key event type DOWN_AND_UP.
<nobr>void </nobr> <nobr><span class="sympad"><a href="http://developer.android.com/tools/help/MonkeyDevice.html#touch">wake</a></span>()</nobr>
Wakes the screen of this device.

Constants


string DOWN

press() ortouch() value. Specifies that a DOWN event type should be sent to the device, corresponding to pressing down on a key or touching the screen.

string UP

press() ortouch() value. Specifies that an UP event type should be sent to the device, corresponding to releasing a key or lifting up from the screen.

string DOWN_AND_UP

press(),touch() ortype() value. Specifies that a DOWN event type followed by an UP event type should be sent to the device, corresponding to typing a key or clicking the screen.

Public Methods


void broadcastIntent(string uri,string action,string data,string mimetype,iterable categoriesdictionary extras,component component,iterable flags)

Broadcasts an Intent to this device, as if the Intent were coming from an application. SeeIntent for more information about the arguments.

Arguments
uri action data mimetype categories extras component flags
The URI for the Intent. (see Intent.setData()).
The action for this Intent (see Intent.setAction()).
The data URI for this Intent (see Intent.setData()).
The MIME type for the Intent (see Intent.setType()).
An iterable data structure containing strings that define categories for this Intent (seeIntent.addCategory()).
A dictionary of extra data for this Intent (see Intent.putExtra() for an example).

The key for each dictionary item should be a string. The item's value can be any simple or structured data type.

The component for this Intent (see ComponentName). Using this argument will direct the Intent to a specific class within a specific Android package.
An iterable data structure containing flags that control how the Intent is handled (seeIntent.setFlags()).

void drag(tuple start,tuple end,float duration,integer steps)

Simulates a drag gesture (touch, hold, and move) on this device's screen.

Arguments
start end duration steps
The starting point of the drag gesture, in the form of a tuple (x,y) where x and y areintegers.
The end point of the drag gesture, in the form of a tuple (x,y) where x and y areintegers.
The duration of the drag gesture in seconds. The default is 1.0 seconds.
The number of steps to take when interpolating points. The default is 10.

object getProperty(string key)

Given the name of a system environment variable, returns its value for this device.

Arguments
key
The name of the system environment variable. The available variable names are listed inTable 1. Property variable names at the end of this topic.
Returns
  • The value of the variable. The data format varies according to the variable requested.

object getSystemProperty(string key)

Synonym for getProperty().

Arguments
key
The name of the system environment variable. The available variable names are listed inTable 1. Property Variable Names.
Returns
  • The value of the variable. The data format varies according to the variable requested.

void installPackage(string path)

Installs the Android application or test package contained in packageFile onto this device. If the application or test package is already installed, it is replaced.

Arguments
path
The fully-qualified path and filename of the .apk file to install.

dictionary instrument(string className,dictionary args)

Runs the specified component with Android instrumentation, and returns the results in a dictionary whose exact format is dictated by the component being run. The component must already be present on this device.

Use this method to start a test case that uses one of Android's test case classes. SeeTesting Fundamentals to learn more about unit testing with the Android testing framework.

Arguments
className args
The name of an Android component that is already installed on this device, in the standard form packagename/classname, where packagename is the Android package name of a.apk file on this device, and classname is the class name of an Android component (Activity, ContentProvider, Service, or BroadcastReceiver) in that file. Both packagename and classname must be fully qualified. SeeComponentName for more details.
A dictionary containing flags and their values. These are passed to the component as it is started. If the flag does not take a value, set its dictionary value to an empty string.
Returns
  • A dictionary containing the component's output. The contents of the dictionary are defined by the component itself.

    If you use InstrumentationTestRunner as the class name in the componentName argument, then the result dictionary contains the single key "stream". The value of "stream" is a string containing the test output, as if InstrumentationTestRunner was run from the command line. The format of this output is described inTesting in Other IDEs.

void press(string name,integer type)

Sends the key event specified by type to the key specified by keycode.

Arguments
name type
The name of the keycode to send. See KeyEvent for a list of keycode names. Use the keycode name, not its integer value.
The type of key event to send. The allowed values are DOWN,UP, andDOWN_AND_UP.

void reboot(string bootloadType)

Reboots this device into the bootloader specified by bootloadType.

Arguments
into
The type of bootloader to reboot into. The allowed values are "bootloader", "recovery", or "None".

void removePackage(string package)

Deletes the specified package from this device, including its data and cache.

Arguments
package
The Android package name of an .apk file on this device.

object shell(string cmd)

Executes an adb shell command and returns the result, if any.

Arguments
cmd
The command to execute in the adb shell. The form of these commands is described in the topicAndroid Debug Bridge.
Returns
  • The results of the command, if any. The format of the results is determined by the command.

void startActivity(string uri,string action,string data,string mimetype,iterable categoriesdictionary extras,component component,iterable flags)

Starts an Activity on this device by sending an Intent constructed from the supplied arguments.

Arguments
uri action data mimetype categories extras component flags
The URI for the Intent. (see Intent.setData()).
The action for the Intent (see Intent.setAction()).
The data URI for the Intent (see Intent.setData()).
The MIME type for the Intent (see Intent.setType()).
An iterable data structure containing strings that define categories for the Intent (seeIntent.addCategory()).
A dictionary of extra data for the Intent (see Intent.putExtra() for an example).

The key for each dictionary item should be a string. The item's value can be any simple or structured data type.

The component for the Intent (see ComponentName). Using this argument will direct the Intent to a specific class within a specific Android package.
An iterable data structure containing flags that control how the Intent is handled (seeIntent.setFlags()).

MonkeyImagetakeSnapshot()

Captures the entire screen buffer of this device, yielding a screen capture of the current display.

Returns
  • A MonkeyImage object containing the image of the current display.

void touch(integer x,integer y,string type)

Sends a touch event specified by type to the screen location specified by x and y.

Arguments
x y type
The horizontal position of the touch in actual device pixels, starting from the left of the screen in its current orientation.
The vertical position of the touch in actual device pixels, starting from the top of the screen in its current orientation.
The type of key event to send. The allowed values are DOWN,UP, andDOWN_AND_UP.

void type(string message)

Sends the characters contained in message to this device, as if they had been typed on the device's keyboard. This is equivalent to callingpress() for each keycode inmessage using the key event type DOWN_AND_UP.

Arguments
message
A string containing the characters to send.

void wake()

Wakes the screen of this device.

参考:http://developer.android.com/tools/help/MonkeyDevice.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics