[Query] How do I loop through a list of items to click?

I was wondering if there was a way to specify the ID of the objects to click using a csv. and to loop through that list of IDs.

Thanks for your time!

This can be done.

  • Read IDs from CSV with csvRead => values are in ${!col1}

  • Use this variable with click | id=${!col1}

1 Like

Thanks a lot! That helped