How to scrape ecommerce with pagination?

Hi, i'm trying to get the name, price and description of every product of the page. When i try to, i only get the first page of products, but not the other ones. How can i solve this?

Url: https://www.segurycel.cl
Or if you want to show me how to get the info from a specific page then: https://www.segurycel.cl/proteccion-personal/auditiva

Sitemap:

{"_id":"segurycel-question","startUrl":["https://www.segurycel.cl/"],"selectors":[{"id":"category-links","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.nav-link","multiple":false,"delay":0},{"id":"category-list","type":"SelectorLink","parentSelectors":["category-links"],"selector":"a.dropdown-item","multiple":true,"delay":0},{"id":"product-link","type":"SelectorLink","parentSelectors":["category-list"],"selector":".name a","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.fn","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["product-link"],"selector":"img.sku-rich-image-main","multiple":false,"delay":0},{"id":"price","type":"SelectorText","parentSelectors":["product-link"],"selector":"strong.skuBestPrice-clone","multiple":false,"regex":"[0-9]+\.[0-9]+","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["product-link"],"selector":"div.productDescription","multiple":false,"regex":"","delay":0},{"id":"brand","type":"SelectorText","parentSelectors":["product-link"],"selector":".brandName a","multiple":false,"regex":"","delay":0}]}

Interesting site. This will scroll and scrape the "Productos Destacados" row:

{"_id":"forum-segurycel","startUrl":["https://www.segurycel.cl/"],"selectors":[{"id":"Scroll Destacados","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.shelf.n9colunas:contains('Destacados')","multiple":true,"delay":"750","clickElementSelector":"div > button.owl-next","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTML"},{"id":"Scrape Destacados","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.shelf.n9colunas:contains('Destacados') div[class*='owl-item'][style] > li","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Scrape Destacados"],"selector":"h3.name","multiple":false,"regex":"","delay":0},{"id":"Brand","type":"SelectorText","parentSelectors":["Scrape Destacados"],"selector":"h4.brand","multiple":false,"regex":"","delay":0},{"id":"Price","type":"SelectorText","parentSelectors":["Scrape Destacados"],"selector":"span.price-clone","multiple":false,"regex":"","delay":0},{"id":"Product link","type":"SelectorLink","parentSelectors":["Scrape Destacados"],"selector":"h3 a","multiple":false,"delay":0}]}