Click on Link in robotium -


How can I click robotium on a particular link in a page?

You should try to click the anchor text in the link. For example, if the link is called www.google.com, then you can:

  this.solo.clickOnText ("www.google.com");   

This is working for me, it should work for you as well.

Comments