[Solved] How to navigate through HTMl pages that have paging for their content using Python? [closed]


As I can see in this page, you need to interact with java script that is invoked by button Go or Next Page button. For Go button you need to fill the textbox each time. You can use different approaches to work around this:

1) Selenium – Web Browser Automation

2) spynner – Programmatic web browsing module with AJAX support for Python and also take look here

3) If you are familiar with c#, it also provide a webBrowser component that helps you to click on the html elements. (e.g. here). You save html content of each page and later on crawl them from offline pages.

2

solved How to navigate through HTMl pages that have paging for their content using Python? [closed]