I have created a beanshell script in beansheill Timer where I am adding delay between requests. That delay is calculated based on a csv file where I have timestamps all requests.
Now problem I am facing is Within a thread group If one request is taking execution time more than the delay then second request can't be executed. It would have to wait until previous request has been served.
So to solve such problem, I would have to create a new thread group and execute it programmatically. Can someone please help me in this?