Scrapy beginner here. I am trying to scrape data from multiple pages. Each page contains 20 entries, you then click the next button to go to the next page. However the URL does not change because the tag is:
<a href="#" onClick="nextPage(2);"> Click me! </a>
This page is unique since it does not use XHR requests like many other examples I have found. A few other answers suggest to monitor the GET requests through Chrome/Firefox development tools and then replicate them. This site doesn't produce XHR requests but a series of javascript requests (one AJAX).
I want to use scrapy to transfer to the next page (preferably without selenium, if possible) so I can continue the scrape on the viewed data.
This is the webpage for reference: http://www.australianschoolsdirectory.com.au/search-result.php
First time asker. Thank you in advance!