Anyone know how to run Instruments from Python? I tired to use os.system and it didn't work.
If I run Instruments from a command line, I only need to run:
instruments -w id -t xxxxxxxxxxxxxx xx.js
I will need to run the above in python. I suppose the following will work
import os
os.system('instruments -w id -t xxxxx xx.js')
I also tried with os.system ('open -a instruments xxxxxx')
Neither way worked. Anyone have a better idea?
I expected it to run instruments just like running it from command line. And start to run javascritps using instruments. It didn't happen. What happened was just a 256 printed out.
os.system('open -a Instruments')? – CoffeeRain Oct 29 '12 at 18:26