Home > OS >  Jmeter skips alternate row from CSV file
Jmeter skips alternate row from CSV file

Time:06-15

I am running API load test using JMeter. In which I am using a CSV file to pass the data.

API :

enter image description here

CSV :

enter image description here

CSV file :

enter image description here

Issue: JMeter always picks the rows which have isExternal = true and skips all the rows with isExternal as false. This is something weird behaviour I am facing. Can anyone please explain the reason behind it?

CodePudding user response:

For me it doesn't:

enter image description here

Double check that:

  1. Delimiter in the CSV file matches the one you set in the CSV Data Set Config
  2. Location of the CSV Data Set Config (i.e. Scoping Rules might have impact)
  3. jmeter.log file doesn't have any suspicious entries, it would be also a good idea to enable debug logging for the CSV Data Set Config
  • Related