Without access to that webpage, any advice you're going to get will be very generic. But as high-level, I would start by looking closely at the HTML attributes of the buttons to try and find something that can be looped through iteratively. For example, if each button has something like class="button-1", class="button-2", etc... then you can use a loop and loop counter variable. First you'll need to add the UI element to the flow and change it to include the dynamic variable, for example:
button[Class="button-1"]
to
button[Class="button-%loopCounter%"]
and then the flow would look something like:
- Obtain webBrowser instance.
- Set variable loopCounter to 0.
- Loop condition while loopCounter < 10
- Get details of element [button-%loopCounter%].
- Do something with extracted data.
- Increase variable loopCounter by 1.
- End
If you're able to share the page you're trying to get the info out of, that would make it easier to help.