Loop in WEB GUI using csv

While doing Web GUI using loop to search multiple item names from an external csv file; how to appropriately use loop so that it doesn’t fetch just the first item from the list everytime? Loop in WEB GUI using csv

While performing Web GUI automation using values from a CSV file, you should use a Loop so that each row is processed once.

Steps:

  1. Read the CSV file using a suitable step (e.g., CSV Input).

  2. Use a Loop and set the iterator value as 1 (so execution happens once for each row).

  3. Inside the loop, pass the required field (e.g., item name) from the current row into the Value configuration of the Web step.

  4. Do not hardcode the value. Always use the field coming from the CSV row.

This ensures that for every iteration, the automation picks the next record from the CSV file instead of repeatedly using only the first item.