How To Click On A View Which Contains Specified Text Using Monkeyrunner And Android ViewClient?
I'm trying to simulate a click on an Android tablet using monkey runner and Android ViewClient. I want to click on a region/ view which has specific text. Here's an example of what
Solution 1:
Problem solved. The latest version of AndroidViewClient solves my issue with the views.
I can use:
view = vc.findViewWithText('Dsiplay')
view.touch()
Post a Comment for "How To Click On A View Which Contains Specified Text Using Monkeyrunner And Android ViewClient?"