Hi,
I'm having problems with a while loop within a while loop, doing the
following (written in pseudocode):
String header, url;
header = readFromCSV(file1);
url = readFromCSV(file2);
while (header != "<EOF>")
{
while (url != "<EOF>")
{
HTTPRequest(header, url);
}
}
Is there any way to do something equivalent in JMeter? I currently
cannot get it to loop through all the urls and all the headers. Am I
missing something?
Thanks,
Simon

