如何在monkeyrunner中输入值?
我想在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
device.type("Username")
您可以在monkeyrunner中输入值。您想要输入哪个字母,您可以将其作为
type("string")
的参数给出。Using
device.type("Username")
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")
.使用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 usedevice.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 asdevice.type("username")
.