I want to create a testing environment for Android apps / UIs based on monkeyrunner
. My goal is to provide an environment that automatically tests Activities
and their UI elements like EditText
or Button
, not by randomly creating touch/ gesture events but doing 'meaningful' stuff like finding an EditText
that's labeled 'email' and enter an email adress into it.
I did some research on what tools are readily available and found ChimpChat
, AndroidViewClient and of course dtmilano.blogspot.de.
I'm not familiar with python development, so my question is if it makes any sense (and is even possible) to try to use AVC from Java with Jython (I know I still have to learn some Python) or if that would be a unnecessary complication of things and I should try to develop such a thing in plain Python.
Any input would be highly appreciated :)