2

在 Nexus 7 平板电脑上搜索内容时,我无法按“开始”按钮。对于键盘上的“开始”按钮,我们没有任何文字或内容描述。我尝试使用以下 -

//Search something say "fun"

new UiObject(new UiSelector().text("Enter URL or Search & Win")).setText("fun");

getUiDevice().pressEnter(); 
OR 

getUiDevice().pressSearch(); 

Also tried :

getUiDevice().pressKeyCode(66); //for enter

getUiDevice().pressKeyCode(84); // for search

但这不起作用。谁能帮我解决这个问题。

谢谢

4

2 回答 2

0

尝试参考 index.html 使用 button 属性。

IE :

UiObject cancelButton = new UiObject(new UiSelector().className("android.widget.Button"));
于 2013-10-09T08:04:57.830 回答
0

要使用 UIAutomator 单击“完成”按钮,只需尝试以下代码使用

只需确保使用打开输入键盘的正确布局

UiObject(new UiSelector().resourceId(LAYOUTID)).clickBottomRight();

于 2015-09-15T10:00:40.063 回答