Automatic button click on a web page one by one

Hello dear experts, I would like to click on each of the same web elements on a page in the weba browser. The elements are arranged one below the other on the page. The bot should click on the elements one after the other and automatically scroll down. How can I implement this?

You can use Simulateclick on every clcik element so it will scroll and slect clcik element or for scroll down page you can use Hot key

Happy Automation

it’s a website and i just want to click on the hearts one by one and automatically scroll down when they’re all liked.

kindly share your click element selector

@Maxi_B

Use strict selector which is more precise and try to get most stable attribute of the element like id,name

  1. use find children to get ALL the heart buttons
    , set filter to:
    "<webctrl class = 'SVGInline-svg SvgImg_SVGInline-sc-gmpgdo-0-svg hua-dGa.svg' >"

set output = children (iEnumerable variable)

  1. next use foreach loop to loop over children, inside
    use click activity, where target= “item”

this will make robot click all the heart icons

@Maxi_B