I am trying to scrape the following URL : "https://www.licitor.com/ventes-judiciaires-immobilieres/tj-pontoise/mardi-7-septembre-2021.html".
Different items are then available , let say the item number 086276, this gives for example the following URL : https://www.licitor.com/ventes-judiciaires-immobilieres/tj-pontoise/mardi-7-septembre-2021.html#086276
I am particularly interested in the content of the following node:
"<article class="LegalAd"></article>"
I use currently the following code:
URL = "https://www.licitor.com/ventes-judiciaires-immobilieres/tj-pontoise/mardi-7-septembre-2021.html#086276"
page = requests.get(URL)
soup = BeautifulSoup(page.content, "html.parser")
This gives me indeed an output, however, while looking at this output, the content of "LegalAd" is not present. While inspecting the element with Chrome, I can see the html code and navigate inside "LegalAd", but while bringing it into Python, this does not seems to follow...
Does anybody knows why the content of the Nodes gets hidden ? Does anybody would have a fix or an idea ?