Html scraping - element sorting

Hey there,

I want to scrape urls and recognize if the element of the page is at the top of the page or at the bottom of the page. Do you have any recommendation how to do it?

Thanks

This may be a very basic or silly :grin: solution but follow the steps to get this;

  1. You can calculate the length of the content returned using the length function.

  2. Split the content by half using Substring function (i.e. length/2)

  3. Use the Contains function to check whether the content is in first half or second half.

Watch here: Loom | Free Screen & Video Recording Software | Loom

1 Like

Hey @Growwstacks.com ,

Thanks for your response and idea. Truth be told, I was looking for the correct setting in scraping modules from make, but the idea you presented and the logic is definitely right and works!
Thanks a lot !

1 Like