Differentiate between RPA and traditional automation ?
To ensure the Web GUI automation processes each item from the CSV and not just the first one, follow these steps:
-
Read the data into a data stream
Use the CSV input step to load all records into a data stream. -
Use Loop with Iterator = 1
Configure the Loop step to iterate through the data stream with Iterator = 1, so the bot executes once for each row. -
Keep all Web GUI actions inside the Loop
All Web GUI steps such as search, click, and validation must be placed inside the loop scope. -
Use dynamic field mapping
While setting values in Web GUI steps, do not pass static values.
Instead, map the field from the data stream (current loop row).
This ensures that in every loop iteration, the bot picks the next row from the CSV and performs the Web GUI actions accordingly.