Python Forum
Python - Scrapy Javascript Pagination (next_page)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python - Scrapy Javascript Pagination (next_page)
#2
The best way to do things like this is often to figure out what requests are being made using your browser's developer tools, and simply recreate those.
For example, clicking the next button shows this request:
[Image: tNDcG2E.png]
[Image: 9RnVCbR.png]
I tried playing with some parameters, changing a few and omitting them, and also found out you can get all the results using a single request.
All that's left to do now is replace start_urls with start_requests() yielding a custom request, and you get all the items:
def start_requests(self):
    yield scrapy.FormRequest(
        url='https://www.siriocenter.gr/Proionta/PartialAntallaktika',
        formdata={
            'modelStr': json.dumps({
                'pageSize': 1000,
            }),
        },
    )
Reply


Messages In This Thread
RE: Python - Scrapy Javascript Pagination (next_page) - by stranac - Oct-08-2018, 11:32 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  BeautifulSoup pagination using href rhat398 1 2,465 Jun-30-2021, 10:55 AM
Last Post: snippsat
  Using Python request without selenium on html form with javascript onclick submit but eraosa 0 3,241 Jan-09-2021, 06:08 PM
Last Post: eraosa
  Python Scrapy Date Extraction Issue tr8585 1 3,431 Aug-05-2020, 04:32 AM
Last Post: tr8585
  Python Scrapy tr8585 2 2,431 Aug-04-2020, 04:11 AM
Last Post: tr8585
  question about using javascript on python selenium Kai 1 1,934 Apr-12-2020, 04:28 AM
Last Post: Larz60+
  Python beautifulsoup pagination error The61 5 3,567 Apr-09-2020, 09:17 PM
Last Post: Larz60+
  Pagination prejni 2 2,475 Nov-18-2019, 10:45 AM
Last Post: alekson
  Scrapy Javascript Pagination (next_page) nazmulfinance 2 3,138 Nov-18-2019, 01:01 AM
Last Post: nazmulfinance
  the next_page command using Scrapy Splash is not working nazmulfinance 0 2,122 Nov-16-2019, 03:47 PM
Last Post: nazmulfinance
  pagination for non standarded pages zarize 12 6,196 Sep-02-2019, 12:35 PM
Last Post: zarize

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020