Correct usage of the "--throttle" parameter of monkey?

Viewed 1198

I could not set the interval between the generated events by monkey. The official documentation defines the usage of --throttle as "Inserts a fixed delay between events. You can use this option to slow down the Monkey. If not specified, there is no delay and the events are generated as rapidly as possible."

I need to generate 500 events with a 1-second interval between them.

Here is what I have used:

monkey -v --throttle 1000 -p com.estrongs.android.pop 500

So, the process should take at least 1000*500 milliseconds which mean more than 8 minutes. But the job finishes in seconds.

Is there something I miss? How do you set the interval between events generated by monkey tool?

1 Answers
Related