I'd like to slow down the threads, when I put it to run, it run all at once ! I'd like to take a break of 2~5seconds between each thread opens !
Вложения
-
12,3 КБ Просмотры: 304
Use the scheduler if you want to run the template at different times.I'd like to slow down the threads, when I put it to run, it run all at once ! I'd like to take a break of 2~5seconds between each thread opens !
If You add pause of range 10-30 seconds then each thread will generate random pause between 10-30 sec and wait this time before going to the next action.I already tried adding several "pauses" on module, trying to make them have random timing between opening the page, but looks like when u run it, it only follow one parameter so if u put a pause interval between 10~30 seconds before opening the page and run 20 threads at once it will roll it once and use this value on every thread
so the result is : it take 10~30 seconds to open all the 20 threads, and it doesnt work.. it just slow down the process of opening the page but it doesnt slow down the proccess of each thread, but them all
I'd like to slow down the threads, when I put it to run, it run all at once ! I'd like to take a break of 2~5seconds between each thread opens !