web scraping dynamic content with python

Instead of trying to reverse engineer it, you can use ghost.py to directly interact with JavaScript on the page. If you run the following query in a chrome console, you’ll see it returns everything you want. document.getElementsByClassName(‘inline-text-org’); Returns [<div class=​”inline-text-org” title=​”University of Manchester”>​University of Manchester​</div>, <div class=​”inline-text-org” title=​”University of California Irvine”>​University of California …​</div>​ etc… … Read more