RedEagle
RedEagle

Reputation: 2418

How to scrape whole table( instead of first ten rows) from website with Kimono Labs

Im using Kimono labs to create an Api to scrape the data in this table from this website, however the website by default shows the first 10 rows only instead of all rows, so my api provides me with only 10 rows. Is there a way to make it parse all the table rows?

-- and that's one of the columns css selector

div.dataTables_wrapper > table.display.dataTable > tbody > tr > td:nth-child(2).table_number

Upvotes: 0

Views: 192

Answers (1)

leo60228
leo60228

Reputation: 874

Haven't tried, but you really really should Google first. Found this: https://help.kimonolabs.com/hc/en-us/articles/203274990-Crawl-pages-via-following-a-next-page-or-more-link (from comment, you said to post as an answer)

In case the link goes dead:

  1. Finish your API for the first page.
  2. Click Book icon in the toolbar.
  3. Click the next page/more link on the page. It should be highlighted gray.
  4. When you save, select the maximum number of pages.

Upvotes: 0

Related Questions