如何在monkeyrunner中输入值?

发布于 2024-12-14 19:26:04 字数 77 浏览 0 评论 0原文

我想在monkeyrunner中输入值,例如输入用户名、密码来登录我的应用程序。但我不知道该怎么做,我只知道如何触摸和按下。 感谢您的帮助。

I want to input values in monkeyrunner,such as input username,password to login my application.but I don't know how to do it,I just only know how to touch and press.
thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倒数 2024-12-21 19:26:04

使用device.type("Username")

device.type("password")

您可以在monkeyrunner中输入值。您想要输入哪个字母,您可以将其作为 type("string") 的参数给出。

Using device.type("Username")

device.type("password")

You can input the values in monkeyrunner. Which letter do u want to type that string u can be give as a argument of type("string").

那些过往 2024-12-21 19:26:04

使用monkeyrunner 输入值有两种方法。

第一种是使用 MonkeyDevice 类的 press 函数将 type 指定的按键事件发送到 keycode 指定的按键(参见 http://developer.android.com/tools/help/MonkeyDevice.html#press)。通过这种方式,您可以发送Android.view.KeyEvent中包含的所有按键事件。例如,如果您想输入数字键8,可以使用device.press('KEYCODE_8', 'DOWN_AND_UP')

但是,如果您只想输入用户名或密码等字符串,那么使用 type 函数会很方便,例如 device.type("username")

There are two ways to input values using monkeyrunner.

The first is to use the press function of the MonkeyDevice class to send key event specified by type to the key specified by keycode (see http://developer.android.com/tools/help/MonkeyDevice.html#press). By this way, you can send all key events contained in Android.view.KeyEvent. For example, if you want to input the number key 8, you can use device.press('KEYCODE_8', 'DOWN_AND_UP').

However, if you just want to input strings such as a username or a password, it is convenient to use the type function such as device.type("username").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文