Android自动化测试之MonkeyRunner之MonkeyRunner
A monkeyrunner class that contains static utility methods.
Summary
Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void |
alert(
string message,
string title,
string okTitle)
Displays an alert dialog to the process running the current program.
| ||||||||||
integer |
choice(
string message,
iterable choices,
string title)
Displays a dialog with a list of choices to the process running the current program.
| ||||||||||
void |
help(
string format)
Displays the monkeyrunner API reference in a style similar to that of Python's
pydoc tool, using the specified format.
| ||||||||||
string |
input(
string message,
string initialValue,
string title,
string okTitle,
string cancelTitle)
Displays a dialog that accepts input.
| ||||||||||
void |
sleep(
float seconds)
Pauses the current program for the specified number of seconds.
| ||||||||||
MonkeyDevice
|
waitForConnection(
float timeout,
string deviceId)
Tries to make a connection between the
monkeyrunner backend and the specified device or emulator.
|
Public Methods
string alert(string message,string title,string okTitle)
Displays an alert dialog to the process running the current program. The dialog is modal, so the program pauses until the user clicks the dialog's button.
integer choice(string message,iterable choices,string title)
Displays a dialog with a list of choices to the process running the current program. The dialog is modal, so the program pauses until the user clicks one of the dialog's buttons.
string input(string messagestring initialValue,string title,string okTitle,string cancelTitle)
Displays a dialog that accepts input and returns it to the program. The dialog is modal, so the program pauses until the user clicks one of the dialog's buttons.
The dialog contains two buttons, one of which displays the okTitle value and the other the cancelTitle value. If the user clicks the okTitle button, the current value of the input box is returned. If the user clicks the cancelTitle button, an empty string is returned.
Arguments
message | The prompt message displayed in the dialog. |
---|---|
initialValue | The initial value to display in the dialog. The default is an empty string. |
title | The dialog's title. The default is "Input". |
okTitle | The text displayed in the okTitle button. The default is "OK". |
cancelTitle | The text displayed in the cancelTitle button. The default is "Cancel". |
MonkeyDevice
waitForConnection(float timeout,string deviceId)
Tries to make a connection between the monkeyrunner
backend and the specified device or emulator.
Arguments
timeout | The number of seconds to wait for a connection. The default is to wait forever. |
---|---|
deviceId | A regular expression that specifies the serial number of the device or emulator. See the topicAndroid Debug Bridge for a description of device and emulator serial numbers. |
Returns
- A
MonkeyDevice
instance for the device or emulator. Use this object to control and communicate with the device or emulator.
参考:http://developer.android.com/tools/help/MonkeyRunner.html