(no title)
FrenchDevRemote | 1 year ago
Then find how the pagination works, usually it's a get number parameter or a cursor in the URL.
Some websites will have a limited number of results on the same search, so you'll need to tinker with the faceted search, it's a "simple" loop, for example:
for (i in categories)
for (j in price_ranges)
for (k in price_ranges.pages[j])
get_products_on_the_page()
mateozaratefw|1 year ago