skip to Main Content

Woocommerce – This website cannot be correctly scraped even with requets-html

i'm trying to get the prices displayed on : https://campervans.jeanlain.com/locations/?city-input=annecy&city-name=ANNECY&departure_date=06%2F01%2F2025&departure_time=11%3A00&return_date=10%2F01%2F2025&return_time=10%3A00 I tried with requests, and requests-html but neither works... Here is my code : from requests_html import HTMLSession session = HTMLSession() from bs4 import BeautifulSoup response = session.get('https://campervans.jeanlain.com/locations/?city-input=annecy&city-name=ANNECY&departure_date=06%2F01%2F2025&departure_time=11%3A00&return_date=10%2F01%2F2025&return_time=10%3A00') response.html.render() soup…

VIEW QUESTION
Back To Top
Search