I have seen similar issues with trying to scrape the html of these links: https://agsjournals.onlinelibrary.wiley.com/toc/15325415/2021/69/7 and https://www.just-eat.fr/en/delivery/italian-style-pizza/paris-13e-arrondissement-centre with the issue being that the html that I request is not the URL of the webpage. This error is a part of the html that gets pulled, this specific snippet being from the first link:
<div class="cf-alert cf-alert-error cf-cookie-error" data-translate="enable_cook
ies" id="cookie-alert">Please enable cookies.</div>
Where do I configure to enable cookies so that I can scrape the data for the site? I am currently using bs4 version 4.9.3 and requests version 2.25.1. Any help is much appreciated.