I start my monkeyrunner script like this

monkeyrunner my_script

but I want to pass some arguments for example like this

monkeyrunner my_script -n 100

and how can I read this value inside the my_script

link|improve this question

64% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can access the script arguments in sys.argv list:

#! /usr/bin/env monkeyrunner

import sys

print sys.argv
link|improve this answer
do you have any ideas what is the syntax for for loop in monkeyrunner script ? I couldn't find anywhere . . . – Lukap Jan 17 at 16:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.