I am building a flow on power automate that goes to a website reads the data and then extracts to excel, but I don't know how to tell the flow that the page needs to be scrolled to show more results.
I have tried to use a java script functions but it seems that the flow just don't use it while is recording the web site.
Any help would be appreciated!
You will need to access the page manually, first, to ascertain the API pulls, then grab the information that it's pushing to the page directly through an HTTP connector.
Quite often sites will populate more information via JSON code (which is perfect for Power Automate) and once you've identified where that comes from you can then make the calls yourself from an HTTP connector in the flow. Hopefully that will be the case here, otherwise, look up other methods (like XML) for more information on how to process it.
You'll need to pay attention to the 'Request' that is sent in order to know what to call in your flow. Plus for any given request the XHR section of Dev Tools also helps here.
There's a few articles online about this stuff, it's worth a StartPage search on finding client side API calls.