MonkeyRunner
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
静的ユーティリティ メソッドを含む monkeyrunner クラス。
概要
メソッド |
void
|
alert
(string message,
string title,
string okTitle)
現在のプログラムを実行しているプロセスのアラート ダイアログを表示します。
|
integer
|
choice
(string message,
iterable choices,
string title)
現在のプログラムを実行しているプロセスに対する選択肢のリストをダイアログに表示します。
|
void
|
help
(string format)
指定された形式を使用して、Python の pydoc ツールと同様のスタイルで monkeyrunner API リファレンスを表示します。
|
文字列
|
input
(string message,
string initialValue,
string title,
string okTitle,
string cancelTitle)
入力を受け付けるダイアログを表示します。
|
void
|
sleep
(float seconds)
指定された秒数の間、現在のプログラムを一時停止します。
|
MonkeyDevice
|
waitForConnection
(float timeout,
string deviceId)
monkeyrunner バックエンドと、指定されたデバイスまたはエミュレータとの間で接続を試みます。
|
パブリック メソッド
string
alert
(
string message,
string title,
string okTitle)
現在のプログラムを実行しているプロセスで、アラート ダイアログを表示します。このダイアログはモーダルであるため、ユーザーがダイアログのボタンをクリックするまでプログラムは一時停止します。
引数
message |
ダイアログに表示するメッセージ。
|
title |
ダイアログのタイトル。デフォルト値は「Alert」です。
|
okTitle |
ダイアログのボタンに表示されるテキスト。デフォルト値は「OK」です。
|
integer
choice
(string message,
iterableChoice,
string title)
現在のプログラムを実行しているプロセスで、選択肢のリストを含むダイアログを表示します。このダイアログはモーダルであるため、ユーザーがダイアログのボタンの 1 つをクリックするまでプログラムは一時停止します。
引数
message |
ダイアログに表示されるプロンプト メッセージ。 |
choices |
文字列として表示される 1 つ以上のオブジェクトを含む、反復可能な Python データ。推奨される形式は、文字列の配列です。
|
タイトル
|
ダイアログのタイトル。デフォルトは「Input」です。
|
戻り値
-
ユーザーが選択を行って「OK」ボタンをクリックすると、このメソッドは反復可能な範囲内の選択肢のインデックスを返します(インデックスは 0 から始まります)。
ユーザーが「キャンセル」ボタンをクリックすると、メソッドは -1 を返します。
指定された形式を使用して、Python の pydoc
ツールと同様のスタイルで monkeyrunner API リファレンスを表示します。
引数
format |
出力で使用するマークアップ形式。指定できる値は、書式なしテキストの場合は「text」、HTML の場合は「html」です。
|
入力を受け取り、それをプログラムに返すダイアログ。このダイアログはモーダルであるため、ユーザーがダイアログのボタンの 1 つをクリックするまでプログラムは一時停止します。
このダイアログには、okTitle の値を表示するボタンと cancelTitle の値を表示するボタンの 2 つのボタンがあります。ユーザーが okTitle ボタンをクリックすると、入力ボックスの現在の値が返されます。ユーザーが cancelTitle ボタンをクリックすると、空の文字列が返されます。
引数
message |
ダイアログに表示されるプロンプト メッセージ。 |
initialValue |
ダイアログに表示される初期値。デフォルトは空の文字列です。
|
title |
ダイアログのタイトル。デフォルトは「Input」です。
|
okTitle |
okTitle ボタンに表示されるテキスト。デフォルトは「OK」です。
|
cancelTitle |
cancelTitle ボタンに表示されるテキスト。デフォルトは「Cancel」です。
|
戻り値
-
ユーザーが okTitle ボタンをクリックすると、このメソッドはダイアログの入力ボックスの現在の値を返します。ユーザーが cancelTitle ボタンをクリックすると、このメソッドは空の文字列を返します。
void
sleep
(
float 秒
)
現在のプログラムを、指定した秒数の間一時停止します。
MonkeyDevice
waitForConnection
(float タイムアウト、
string deviceId)
monkeyrunner
バックエンドと、指定されたデバイスまたはエミュレータとの間で接続を試みます。
引数
timeout |
接続を待機する秒数。デフォルトでは、無制限に待機します。
|
deviceId
|
デバイスまたはエミュレータのシリアル番号を指定する正規表現。デバイスとエミュレータのシリアル番号の説明については、Android Debug Bridge のトピックをご覧ください。
|
戻り値
-
デバイスまたはエミュレータの
MonkeyDevice
インスタンス。このオブジェクトを使用して、デバイスまたはエミュレータを制御し、通信を行います。
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-07-27 UTC。
[null,null,["最終更新日 2025-07-27 UTC。"],[],[],null,["# MonkeyRunner\n\nA monkeyrunner class that contains static utility methods.\n\nSummary\n-------\n\n| Methods ||||||||||||\n|------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|---|---|---|---|---|---|---|---|---|\n| void | [alert](#alert) (*string* message, *string* title, *string* okTitle) Displays an alert dialog to the process running the current program. |\n| *integer* | [choice](#choice) (*string* message, *iterable* choices, *string* title) Displays a dialog with a list of choices to the process running the current program. |\n| void | [help](#help) (*string* format) Displays the monkeyrunner API reference in a style similar to that of Python's `pydoc` tool, using the specified format. |\n| *string* | [input](#input) (*string* message, *string* initialValue, *string* title, *string* okTitle, *string* cancelTitle) Displays a dialog that accepts input. |\n| void | [sleep](#sleep) (*float* seconds) Pauses the current program for the specified number of seconds. |\n| ` `[MonkeyDevice](/tools/help/MonkeyDevice)` ` | [waitForConnection](#waitForConnection) (*float* timeout, *string* deviceId) Tries to make a connection between the `monkeyrunner` backend and the specified device or emulator. |\n\nPublic methods\n--------------\n\n#### *string*\nalert\n( *string* message, *string* title, *string* okTitle)\n\n\nDisplays an alert dialog to the process running the current\nprogram. The dialog is modal, so the program pauses until the user clicks the dialog's\nbutton. \n\n##### Arguments\n\n| message | The message to display in the dialog. |\n| title | The dialog's title. The default value is \"Alert\". |\n| okTitle | The text displayed in the dialog button. The default value is \"OK\". |\n|---------|---------------------------------------------------------------------|\n\n#### *integer*\nchoice\n(*string* message, *iterable* choices, *string* title)\n\n\nDisplays a dialog with a list of choices to the process running the current program. The\ndialog is modal, so the program pauses until the user clicks one of the dialog's\nbuttons. \n\n##### Arguments\n\n| message | The prompt message displayed in the dialog. |\n| choices | A Python iterable containing one or more objects that are displayed as strings. The recommended form is an array of strings. |\n| title | The dialog's title. The default is \"Input\". |\n|---------|------------------------------------------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- If the user makes a selection and clicks the \"OK\" button, the method returns the 0-based index of the selection within the iterable. If the user clicks the \"Cancel\" button, the method returns -1. \n\n#### void\nhelp\n(*string* format)\n\n\nDisplays the monkeyrunner API reference in a style similar to that of Python's\n`pydoc` tool, using the specified format. \n\n##### Arguments\n\n| format | The markup format to use in the output. The possible values are \"text\" for plain text or \"html\" for HTML. |\n|--------|-----------------------------------------------------------------------------------------------------------|\n\n#### *string*\ninput\n(*string* message *string* initialValue, *string* title, *string* okTitle, *string* cancelTitle)\n\n\nDisplays a dialog that accepts input and returns it to the program. The dialog is\nmodal, so the program pauses until the user clicks one of the dialog's buttons.\n\n\nThe dialog contains two buttons, one of which displays the okTitle value\nand the other the cancelTitle value. If the user clicks the okTitle button,\nthe current value of the input box is returned. If the user clicks the cancelTitle\nbutton, an empty string is returned. \n\n##### Arguments\n\n| message | The prompt message displayed in the dialog. |\n| initialValue | The initial value to display in the dialog. The default is an empty string. |\n| title | The dialog's title. The default is \"Input\". |\n| okTitle | The text displayed in the okTitle button. The default is \"OK\". |\n| cancelTitle | The text displayed in the cancelTitle button. The default is \"Cancel\". |\n|--------------|-----------------------------------------------------------------------------|\n\n##### Returns\n\n- If the user clicks the okTitle button, then the method returns the current value of the dialog's input box. If the user clicks the cancelTitle button, the method returns an empty string. \n\n#### void\nsleep\n( *float* seconds )\n\n\nPauses the current program for the specified number of seconds. \n\n##### Arguments\n\n| seconds | The number of seconds to pause. |\n|---------|---------------------------------|\n\n#### `\n`[MonkeyDevice](/tools/help/MonkeyDevice)`\n`\nwaitForConnection\n(*float* timeout, *string* deviceId)\n\n\nTries to make a connection between the `monkeyrunner` backend and the\nspecified device or emulator. \n\n##### Arguments\n\n| timeout | The number of seconds to wait for a connection. The default is to wait forever. |\n| deviceId | A regular expression that specifies the serial number of the device or emulator. See the topic [Android Debug Bridge](/tools/help/adb) for a description of device and emulator serial numbers. |\n|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n\n##### Returns\n\n- A [MonkeyDevice](/tools/help/MonkeyDevice) instance for the device or emulator. Use this object to control and communicate with the device or emulator."]]