In our Home application, the button ultimately calls NavUtils.navigateUpFromSameTask . Using
solo.clickOnActionBarHomeButton();
press the Home button, this will not work. However, I noticed that solo.clickOnScreen reliably clicks the Home button. Therefore, we use this method instead of solo.clickOnActionBarHomeButton :
protected void clickOnHome() { solo.clickOnScreen(50, 50);
source share