我正在尝试在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); }
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");
解决方法
如果您在Android 4.0上运行Robotium测试,请考虑使用solo.clickOnActionBarItem().