如何使用 Monkey runner 在 Android 模拟器的文本字段中输入文本

发布于 2024-12-17 05:30:29 字数 151 浏览 1 评论 0原文

我正在使用猴子跑步者。

我在屏幕 1 上看到,我需要填写页面表格并提交。

我需要将焦点转移到第一个字段并需要输入文本。

如何将焦点放在任何文本字段上或者我可以以任何方式输入吗?

请让我知道..

问候, 钱德拉

I am using monkey runner.

I have on Screen 1 and I need to fill the form of the page and submit.

I need to take the focus to the first field and need to enter the text.

How to give the focus to any text field or can i type any way?

Please let me know..

REgards,
Chandra

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

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

发布评论

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

评论(1

桜花祭 2024-12-24 05:30:29

是的,人们可以关注文本字段并在该字段中键入文本。

我是用Python 做的。以下是我的代码中的相关行:

import os, subprocess
import sys
import time
import random
import string
import re
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice

#connect to the device
device = MonkeyRunner.waitForConnection(99, "emulator-5554")

然后,启动相关活动并使用 press 功能移至文本字段。

device.press ('KEYCODE_DPAD_DOWN', MonkeyDevice.DOWN_AND_UP)# move down

通常,当您到达文本字段时,焦点已经在那里,但如果不是,则单击该字段。

device.press ('KEYCODE_DPAD_CENTER', MonkeyDevice.DOWN_AND_UP)#click the field

现在,可以使用 type 函数键入文本。

device.type('text')

Yes, one can focus on a text field and type text in that field.

I did it using Python. Followings are relevant lines from my code:

import os, subprocess
import sys
import time
import random
import string
import re
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice

#connect to the device
device = MonkeyRunner.waitForConnection(99, "emulator-5554")

Then, launch the relevant activity and move to the text field using the press function.

device.press ('KEYCODE_DPAD_DOWN', MonkeyDevice.DOWN_AND_UP)# move down

Normally, when you reach a text field then focus is already there, but if it is not then click the field.

device.press ('KEYCODE_DPAD_CENTER', MonkeyDevice.DOWN_AND_UP)#click the field

Now, one can type the text using the type function.

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