where i am calling an API with that API i am getting data and writtng in RPA challange portal
I need a help that i want to run that process again and again… on loop for 50 time…
please let me know how can i do it,…
Assuming the workflow runs fine, you can add a counter variable initialized to 50, run the process in a while loop (While counter variable is greater than one or zero) and decrement the variable in each iteration (counter = counter -1).
Please correct me if I’m wrong.
You want to fetch data via API and write in the portal. This has to be repeated 50 times.
If yes, put the entire sequence in while loop and set condition as counter <= 50. Inside while loop after you write the data, you can increment the counter by 1.