Creates duplicates

Describe the problem.
Hi, i run scrape from pagination tutorial but in CSV it makes every row duplicates.

By graph it seems all the same as in tutorial.

Of course it is not that much of problem to delete in excel but I want to scrape all categories multiple times so..

Here is sitemap:

{"_id":"test-paginace-slune","startUrl":["https://www.slune-cz.cz/autosedacky/0-13-kg/"],"selectors":[{"id":"paginace","parentSelectors":["_root","paginace"],"type":"SelectorLink","selector":"a.paginator-item:nth-of-type(n+2)","multiple":true,"delay":0},{"id":"product-wrap","parentSelectors":["_root","paginace"],"type":"SelectorElement","selector":"div.product","multiple":true,"delay":0},{"id":"title","parentSelectors":["paginace","product-wrap"],"type":"SelectorLink","selector":".title a","multiple":false,"delay":0}]}

Thanks a lot for a reply & help

@jiricapek Hi. Try to update the pagination selector to - a.paginator-item.active + a

Hope it helps!

1 Like

Awesome. It works. Thanks!