如何使用 Monkey runner 在 Android 模拟器的文本字段中输入文本
我正在使用猴子跑步者。
我在屏幕 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,人们可以关注文本字段并在该字段中键入文本。
我是用Python 做的。以下是我的代码中的相关行:
然后,启动相关活动并使用 press 功能移至文本字段。
通常,当您到达文本字段时,焦点已经在那里,但如果不是,则单击该字段。
现在,可以使用 type 函数键入文本。
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:
Then, launch the relevant activity and move to the text field using the press function.
Normally, when you reach a text field then focus is already there, but if it is not then click the field.
Now, one can type the text using the type function.