Re: Prepare dynamic csv test data in setup thread

2020-12-16 Thread Tong Sun
On Wed, Dec 16, 2020 at 7:37 AM glin...@live.com wrote: > > Everything is possible, just make sure to: > > 1. Use setUp Thread Group > > which is executed *before* other thread groups > 2. If you want

Re: Prepare dynamic csv test data in setup thread

2020-12-16 Thread glin...@live.com
Everything is possible, just make sure to: 1. Use setUp Thread Group which is executed *before* other thread groups 2. If you want to make csv file names dynamic make sure to define them using

Prepare dynamic csv test data in setup thread

2020-12-15 Thread Tong Sun
Hi, I want to - prepare dynamic csv test data in setup thread - and use the generated .csv data for all other thread groups - ideally, the name of the .csv is better be changed in the setup thread as well. How much of the above steps are possible? Point 2 & 3 seems to be impossible t