Skip to content Skip to sidebar Skip to footer

Is There Any Way Of Quickening Monkeyrunner Script Execution?

I've got a particular monkeyrunner script (in Jython), which I use for taking screenshots or touching particular coordinates. My main program is written in Perl - it just executes

Solution 1:

Instead of restarting MonkeyRunner each time you need to run a script you could run it in a sub process and use normal python functions (such as raw_input) to have it wait until you need to do something.

This will save you the overhead of restarting MonkeyRunner each time you need to do something. You could probably even use this method to feed MonkeyRunner the actions that you are trying to do.


Post a Comment for "Is There Any Way Of Quickening Monkeyrunner Script Execution?"