Małpi biegacz
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Klasa monkeyrunner zawierająca statyczne metody narzędziowe.
Podsumowanie
Metody |
void
|
alert
(wiadomość dotycząca ciągu znaków,
ciąg znaków tytuł,
ciąg znaków okTitle)
Wyświetla okno alertu dotyczące procesu uruchomionego w bieżącym programie.
|
liczba całkowita
|
choice
(komunikat w ciągu tekstowym,
możliwy do wyboru,
ciąg znaków tytuł)
Wyświetla okno z listą opcji do wyboru w procesie uruchamiania bieżącego programu.
|
void
|
help
(format ciągu znaków)
Wyświetla dokumentację interfejsu monkeyrunner API w stylu podobnym do narzędzia pydoc w Pythonie i w określonym formacie.
|
ciąg znaków
|
input
(komunikat string,
string initialValue,
string title,
string okTitle,
ciąg cancelTitle)
Wyświetla okno, w którym można wprowadzać dane.
|
void
|
uśpienie
(liczba zmiennoprzecinkowa sekund)
Wstrzymuje bieżący program na określoną liczbę sekund.
|
MonkeyDevice
|
waitForConnection
(limit czasu float, ciąg znaków deviceId)
Próbuje nawiązać połączenie między backendem monkeyrunner a określonym urządzeniem lub emulatorem.
|
Metody publiczne
string
alert
(wiadomość string, string title, string okTitle)
Wyświetla okno alertu dotyczące procesu uruchomionego w bieżącym programie. Okno jest modalne, więc program zostaje wstrzymany, dopóki użytkownik nie kliknie przycisku okna.
Argumenty
wiadomość |
Komunikat, który ma się wyświetlić w oknie.
|
title |
Tytuł okna dialogowego. Wartość domyślna to „Alert”.
|
Tytuł OK |
Tekst wyświetlany w przycisku okna. Wartość domyślna to „OK”.
|
integer
choice
(komunikat: string,
iterable opcje,
string title)
Wyświetla okno z listą opcji do wyboru w procesie uruchamiania bieżącego programu. Okno jest modalne, więc program jest wstrzymywany, dopóki użytkownik nie kliknie jednego z przycisków okna.
Argumenty
wiadomość |
Wiadomość wyświetlana w oknie.
|
możliwości wyboru |
Program iteracyjny w języku Python zawierający co najmniej 1 obiekt wyświetlany jako ciągi znaków. Zalecana forma to tablica ciągów znaków.
|
title
|
Tytuł okna dialogowego. Domyślne ustawienie to „Wejście”.
|
Zwroty
-
Jeśli użytkownik dokona wyboru i kliknie przycisk „OK”, metoda zwróci indeks wyboru liczony od 0 w ramach funkcji iteracyjnej.
Jeśli użytkownik kliknie przycisk „Anuluj”, metoda zwraca -1.
Wyświetla dokumentację interfejsu monkeyrunner API w stylu podobnym do narzędzia pydoc
w Pythonie i w określonym formacie.
Argumenty
format |
Format znaczników, który ma być używany w danych wyjściowych. Możliwe wartości to „text” (tekst) w przypadku zwykłego tekstu lub „html” w przypadku kodu HTML.
|
Wyświetla okno, które akceptuje dane wejściowe i zwraca je do programu. Okno jest modalne, więc program jest wstrzymywany, dopóki użytkownik nie kliknie jednego z przycisków okna.
Okno zawiera 2 przyciski, z których jeden ma wartość okTitle, a drugi – cancelTitle. Jeśli użytkownik kliknie przycisk okTitle, zostanie zwrócona aktualna wartość pola do wprowadzania danych. Jeśli użytkownik kliknie przycisk cancelTitle, zostanie zwrócony pusty ciąg znaków.
Argumenty
wiadomość |
Wiadomość wyświetlana w oknie.
|
Wartość początkowa |
Wartość początkowa wyświetlana w oknie. Domyślnie jest to pusty ciąg znaków.
|
title |
Tytuł okna dialogowego. Domyślne ustawienie to „Wejście”.
|
Tytuł OK |
Tekst wyświetlany pod przyciskiem okTitle. Wartość domyślna to „OK”.
|
AnulujTytuł |
Tekst wyświetlany w przycisku cancelTitle. Wartość domyślna to „Anuluj”.
|
Zwroty
-
Jeśli użytkownik kliknie przycisk okTitle, metoda zwróci bieżącą wartość pola do wprowadzania danych w oknie. Jeśli użytkownik kliknie przycisk cancelTitle, metoda zwróci pusty ciąg znaków.
void
uśpienie
(
Liczba zmiennoprzecinkowa s
)
Wstrzymuje bieżący program na określoną liczbę sekund.
Argumenty
s |
Liczba sekund wstrzymania.
|
MonkeyDevice
waitForConnection
(limit czasu float, ciąg znaków deviceId)
Próbuje nawiązać połączenie między backendem monkeyrunner
a określonym urządzeniem lub emulatorem.
Argumenty
przerwa w grze |
Liczba sekund oczekiwania na połączenie. Domyślnie czeka się w nieskończoność.
|
Identyfikator urządzenia
|
Wyrażenie regularne określające numer seryjny urządzenia lub emulatora. Informacje o numerach seryjnych urządzenia i emulatora znajdziesz w temacie Android Debug Bridge.
|
Zwroty
-
Instancja
MonkeyDevice
dla urządzenia lub emulatora. Ten obiekt umożliwia sterowanie urządzeniem lub emulatorem i komunikowanie się z nim.
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-27 UTC.
[null,null,["Ostatnia aktualizacja: 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."]]