Hi I am new to robotium and currently testing android "actionbaritems" in my application, i used the following code ,
assertTrue(solo.searchText("Log In";));
solo.clickOnButton("Log In";);
solo.waitForActivity(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
assertTrue(solo.searchText("Forgot password?";));
solo.clearEditText(0);
solo.enterText(0, "stest123";);
solo.enterText(1, "123456";);
solo.waitForActivity(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
final EditText editText = solo.getEditText(1); // Create a runnable which triggers the
onEditorAction callback Runnable runnable = new Runnable()
{
public void run()
{
editText.onEditorAction(EditorInfo.IME_ACTION_DONE);
}
}; // Use Solo to get the current activity, and pass our runnable to the UI // thread.
solo.getCurrentActivity().runOnUiThread(runnable);
solo.waitForActivity(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
System.out.println(solo.getCurrentActivity().getLocalClassName().toString());
getInstrumentation().invokeContextMenuAction(getActivity(),3,0);
solo.clickOnText("Nearby";);
solo.sleep(1000);
View actionbarItem1 = solo.getView(2);
solo.clickOnView(actionbarItem1);
i cant able to click on the actionbaritem can anyone advise where i went wrong at code? Since i dont have the apk's source i cant pass it through regular methods, any alternative to this or any idea where i went wrong? thanks in advance