Command: How to target all elements of a specific class?

I’m inquiring if there’s a dead-simple method for this specific need — to some degree I completed the task using xpath, but the method also targets unwanted elements and (as always) I prefer using the least complicated means when viable.

With this Target I find the first matching element (the download icon):

//*[contains(@class, 'font_icon download_icons clickable start icon_download_start')]

How to proceed through all following elements (around a hundred on the page with the same class)?


As I’m attempting to batch download, a delay between actions is also integral (the filesizes are small and a minute or two is more than enough — no need to verify that the downloads have finished or anything.

What is the HTML code around the elements that you want to match? Or can you link to the web page?

Can’t share the link, sadly.

What is the HTML code around the elements that you want to match?

I was after an easy solution which would work on every page — perhaps I should research first if that’s even possible and learn the RPA basics.

There may not be much of a benefit in sharing parts of the page source code, I may not learn anything.