i am tryig to execute a sample python program through monkey runner command prompt and it is throwing an error Can't open specified script file Usage: monkeyrunner [options] SCRIPT_FILE

-s      MonkeyServer IP Address.
-p      MonkeyServer TCP Port.
-v      MonkeyServer Logging level (ALL, FINEST, FINER, FINE, CONFIG, INFO,

WARNING, SEVERE, OFF)

Exception in thread "main" java.lang.NullPointerException so any one can guide me how to resolve this one

link|improve this question
feedback

2 Answers

scriptfile should be a full path file name try below monkeyrunner c:\test_script\first.py

link|improve this answer
Yes, it's really so, because monkeyrunner changes current directory to where it (monkeyrunner.bat on Windows) is located, thus looking for the script (first.py in your case) in monkeyrunner folder. – evgeny9 Feb 24 at 14:04
feedback

try using something like

...\tools>monkeyrunner -v ALL first.py

where first.py was my sample python script which I copied into tools folder of android SDK (the place where monkeyrunner.bat is located)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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