Pagination problemsno fuction

I have problems with this pagination, I can not change the page.

{"_id":"lityfic","startUrl":["https://librerianacional.com/categoria/libros/67959d11-7bf8-a9a0-6c55-5418b38367ec"],"selectors":[{"id":"producto","type":"SelectorLink","parentSelectors":["_root","paginacion "],"selector":"a.d-flex.book-title","multiple":true,"delay":0},{"id":"paginacion ","type":"SelectorLink","parentSelectors":["_root","paginacion "],"selector":"div.pager.d-flex:nth-of-type(n+1)","multiple":true,"delay":0},{"id":"titulo","type":"SelectorText","parentSelectors":["producto"],"selector":"h1.text--extrabold","multiple":false,"regex":"","delay":0}]}

Hello there!

Since all buttons on that website work using JS (JavaScript), you have to use an Element Click selector to emulate user click for a next page.

Please check Tutorials section on a main WebScraper website.

Try this one:

{"_id":"lityfic-test","startUrl":["https://librerianacional.com/categoria/libros/67959d11-7bf8-a9a0-6c55-5418b38367ec"],"selectors":[{"id":"clicker","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.row.mx-md-0 div.d-flex.col-6","multiple":true,"delay":"1000","clickElementSelector":"div.row.border-bottom button.next","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"Title","type":"SelectorText","parentSelectors":["clicker"],"selector":"div.col-12 div.col-12 a.d-flex","multiple":false,"regex":"","delay":0}]}

Happy scraping!

thank you very much for your answer.