Unable to scrap all pages from booking

Describe the problem.
Hi,

I wanted to scrap al the hotels of Paris to have some datas (name, stars, adress, price) for this month.
I entered this url:

Url:https://www.booking.com/searchresults.fr.html?aid=304142&label=gen173nr-1DCAEoggI46AdIM1gEaE2IAQGYAQ24ARfIAQzYAQPoAQGIAgGoAgO4ApTu6_EFwAIB&sid=209857ca4ed066d8ea55cb97ff44ed4e&tmpl=searchresults&class_interval=1&dest_id=-1456928&dest_type=city&from_sf=1&group_adults=2&group_children=0&label_click=undef&no_rooms=1&raw_dest_type=city&room1=A%2CA&sb_price_type=total&shw_aparth=1&slp_r_match=0&src=index&src_elem=sb&srpvid=c5ea7922c16f0035&ss=paris&ssb=empty&top_ufis=1&rows=25&offset=375

After maybe 3000 results, the scraping stops and I don't have the last pages.
Sometimes, it's less, sometimes more but never full.

I thought of the delay and played with the values in the "scrape" button:
Request interval (ms)
2000
Page load delay (ms)
2000

But, is it? Or am I kicked out of Booking?
Thanks.
Best

Hard to diagnose without a sitemap, I'm guessing you are hitting the WS/Chrome limits 'cos of too much data. You can try limiting your scraping sessions to say 2,000 results each.

With Booking.com the Url changes with new pages, so you can use that to limit the scraping sessions and continue later where you stopped.

Hi Leemeng,

Is there away to up the limit? Is there away to automate multiple sitemaps?

How can I continue off from the previous scrape? Do I need to create a new site map (different page ranges) to continue the scraping session?

ie
https://www.webscraper.io/test-sites/e-commerce/static/computers/laptops?page=[1-4]

and then make another sitemap like the following to continue?
https://www.webscraper.io/test-sites/e-commerce/static/computers/laptops?page=[5-8]

https://www.webscraper.io/test-sites/e-commerce/static/computers/laptops?page=[6-10]

If you're talking about automatically appending a new scrape result to a previous scrape's results, then no, WS doesn't do that. But it is quite trivial to combine the various .Csv files into one file.

Ref: https://www.itsupportguides.com/knowledge-base/office-2010/how-to-merge-multiple-csv-files-into-one-csv-file-using-cmd/

Thanks for your reply,

can you please help answer my other questions?