I'm a huge fan of python/jython's -i switch, as in
$ jython -i set_up_my_stuff.py
..
..sets up object1
..sets up object2
>>> object1.do_stuff()
I'm wondering if there is an equivalent for monkeyrunner? Doesn't seem to be a ./monkeyrunner -i option.
This way, I can set up my tests with a script, then explore with the phone afterwards with an interactive prompt.
Thanks!!