Pagination - need help

Hi guys,

Some time ago I've used webscrapper with pleasure in previous work. Right now i am on my own (new ecommerce shop) and decide to use webscrapper to know my competitors products and prices.

But Ive used previous version (same as used in official tutorials videos) of webscrapper, right now I have tried several times and still failing. I need your advise; how to run scrapping with pagination in this new version? There is no more pagination sellector. How to prepare scrapper with pagination?

Url: https://malaszklarnia.pl/sklep/kategoria/rosliny/page/1/

Sitemap:
{"_id":"malaszklarnia-pagination","startUrl":["https://malaszklarnia.pl/sklep/kategoria/rosliny/page/1/"],"selectors":[{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"span.page-numbers, a.page-numbers","multiple":true,"delay":2000,"clickElementSelector":"span.page-numbers","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"produkty-rosliny","type":"SelectorElement","parentSelectors":["_root"],"selector":"li.col-xs-6","multiple":true,"delay":0},{"id":"nazwa","type":"SelectorText","parentSelectors":["produkty-rosliny"],"selector":".un-product-title a","multiple":false,"regex":"","delay":0},{"id":"cena","type":"SelectorText","parentSelectors":["produkty-rosliny"],"selector":"span.price","multiple":false,"regex":"","delay":0},{"id":"zdjecie","type":"SelectorImage","parentSelectors":["produkty-rosliny"],"selector":"img.image-hover","multiple":false,"delay":0}]}

Hi @88milion

You will not be able to paginate through this website by using the 'Element click' selector because each of the time page is reloaded, instead would recommend using the 'Selector pagination' - a.next.

Helpful resources:

https://webscraper.io/how-to-video/pagination-next
https://webscraper.io/how-to-video/pagination-number-buttons

Example:

{"_id":"malaszklarnia-pagination-1","startUrl":["https://malaszklarnia.pl/sklep/kategoria/rosliny/page/1/"],"selectors":[{"delay":0,"id":"nazwa","multiple":false,"parentSelectors":["product-wrapper"],"regex":"","selector":".un-product-title a","type":"SelectorText"},{"delay":0,"id":"cena","multiple":false,"parentSelectors":["product-wrapper"],"regex":"","selector":"span.price","type":"SelectorText"},{"delay":0,"id":"zdjecie","multiple":false,"parentSelectors":["product-wrapper"],"selector":"img.image-hover","type":"SelectorImage"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a.next","type":"SelectorPagination"},{"delay":0,"id":"product-wrapper","multiple":true,"parentSelectors":["pagination"],"selector":"li.wcpa_has_options","type":"SelectorElement"}]}

Hope it helps.