Can I use multiple CSV Data Set Config's to accomplish the following
scenario:

I have 2 (or n) csv files and I want to iterate through each line in first
file and for each line in the first file I want to iterate trough each line
in the second file

Logically something like this:

Files:
CSV File 1:
a,b
c,d
e,f
CSV File 2:
1,2
3,4

The output, if I use a Sampler that writes to a log file, should look
something like this:

a,b,1,2
a,b,3,4
c,d,1,2
c,d,3,4
e,f,1,2
e,f,3,4

So basically a sampler would be executed 6 times with the above 2 files.
Currently I can only get the following to happen 

a,b,1,2
c,d,3,4
e,f,1,2

Note: I do not know how many rows are in each of the CSV files. That is
changing dynamically.

Thx




-- 
View this message in context: 
http://www.nabble.com/Multiple-CSV-files-tp19674514p19674514.html
Sent from the JMeter - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to