I have a simple monkeyrunner script opening a custom app, and I need to mark specific checkboxes in the application. So far I haven't managed to move up and down and press them using the usual:
MonkeyDevice.press("DPAD_DOWN", MonkeyDevice.DOWN_AND_UP)
MonkeyDevice.press("DPAD_CENTER", MonkeyDevice.DOWN_AND_UP)
How can I, if at all, mark a checkbox by its ID as designated by the apps xml?
Thanks in advance Noam