我正在尝试在Robotium中运行一些自动化测试。我的应用程序中有以下代码,用于设置选项菜单:
public boolean onCreateOptionsMenu(com.actionbarsherlock.view.Menu menu) {
com.actionbarsherlock.view.MenuInflater inflater = getSupportMenuInflater();
inflater.inflate(R.layout.logoutmenu, menu);
return super.onCreateOptionsMenu(menu);
}
我尝试使用代码点击Robotium中的菜单:
solo.sendKey(Solo.MENU);
solo.clickOnView(solo.getView(R.id.share)); //share is the id of the menu item
但是我的测试因错误而失败:
View is null and therefore cannot be clicked.
我也尝试使用下面的代码也失败了:
solo.clickOnView(solo.getView(R.id.logoutmenu));
solo.clickOnMenuItem("Share My Artists");
答案 0 :(得分:18)
如果您在Android 4.0+上运行Robotium测试,请考虑使用solo.clickOnActionBarItem()
。
答案 1 :(得分:1)
就这样做:
solo.sendKey(Solo.MENU);
solo.clickInList(5);
5是位置,只需将其更改为菜单项的位置即可 第一个是1,第二个是2等。
答案 2 :(得分:0)
我可以使用它来使用所有SDK:
View ab = _solo.getCurrentActivity().findViewById(R.id.action_bar);
ArrayList<View> views = _solo.getViews(ab);
for (int i = 0; i <views.size(); i++) {
if (views.get(i).getClass().getName().contains("ActionMenuPresenter")) {
_solo.clickOnView(views.get(i));
_solo.waitForText(SOME_TEXT);
}
}