So i try to web Scrape a website with pythons requests lib (I am using session and headers already). I already did it a few times but this time i run in to the problem that the information that i want is not there if I open it in the browser I can get the info but when I search for this div in my script then there is only this:
<a class="ch-next-btn href=#/next/ rel=next>
(#/next/) in the browser there is the info I want and i think the problem is that the info isn't in the original html document but a serve side request with php or other backend languages. So my question is how I still get the infos i need.