I have an issue with my Robotium tests. On one of my Activity A, I am clicking on a button. Clicking on this button launches another activity B. So in my robotium test I hav
Please try methods like
solo.clickOnView(R.id.myBtn)
to click on your button You can also try
solo.clickOnButton()
To go back to activity you can use
solo.goBack();
or
solo.goBackToActivity("ActivityName");