There is a site (https://www.schoolmaterialen.nl) I would like to scrape for specific items using beautifulsoup python. I can query the item I want using the url: https://www.schoolmaterialen.nl/#sqr:(q[9789053001813]), but instead of showing a page with results, it shows a popup using sooqr and the results can't be found in the html code I obtained using beautifulsoup. The only mention of the sooqr popup in the found code is this:
<!-- Start Sooqr.com on-site search and navigation code -->
<script>
document.addEventListener("DOMContentLoaded", function() {
document.getElementsByClassName("keywords")[0].setAttribute("id", "search");
});
var _wssq = _wssq || [];
_wssq.push(['_load', {'suggest': {"account":"SQ-119341-1","fieldId":"search","version":4}}]);
_wssq.push(['suggest._setPosition', 'screen-middle']);
_wssq.push(['suggest._setLocale', 'nl_NL']);
_wssq.push(['suggest._excludePlaceholders', 'Search..']);
(function () {
var ws = document.createElement('script');
ws.type = 'text/javascript';
ws.async = true;
ws.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'static.sooqr.com/sooqr.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ws, s);
})();
</script>
<!-- End Sooqr.com on-site search and navigation code -->
I already tried to directly use the url of the page I want, but it needs the title of the book which is one of the things I want to find using the isbn. Is there a way to somehow still get the link to the page that is in the popup?