写一个help.py
然后用命令 monkeyrunner.bat help.py
即可生成help.html
#help.py
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
text = MonkeyRunner.help("html");
f = open('help.html', 'w')
f.write(text);
f.close();