Loop in listview

@Jenni_K

the idx can be dynamized with following:

define a counter representing your idx

in a do while loop you can handle:

  • element exits - check if the elemen is present
  • if yes - click / process / otherwise end loop
  • counter = counter +1

the loop runs as long the element exists is true

3 Likes