Scrape through a load more website with selectors in the next level (link)

I am trying to scrape clothing under each section, the sitemap works but under each category (kadin, Erkek, ...) , the products are in a load more type of page. The sitemap below will scrape what is needed but only from the first page and will not do "load more". I tried using "Element click" which worked to do the load more but I couldn't have the scraper go into each link (each item) and then scrape the selectors from there

{"_id":"uspolo","startUrl":["https://tr.uspoloassn.com/"],"selectors":[{"id":"category-link","parentSelectors":["_root"],"type":"SelectorLink","selector":"#hafta-sonu-firsatlari-1 .button a","multiple":true,"delay":0},{"id":"product","parentSelectors":["category-link"],"type":"SelectorLink","selector":".product__name a","multiple":true,"delay":0},{"id":"description","parentSelectors":["product"],"type":"SelectorText","selector":"h1","multiple":false,"delay":0,"regex":""},{"id":"price","parentSelectors":["product"],"type":"SelectorText","selector":".hidden-xs del","multiple":false,"delay":0,"regex":""},{"id":"sku","parentSelectors":["product"],"type":"SelectorText","selector":"div.product-sku","multiple":false,"delay":0,"regex":""},{"id":"size-avail","parentSelectors":["product"],"type":"SelectorElementAttribute","selector":".js-product-sizes li > a:not(.disabled)","multiple":true,"delay":0,"extractAttribute":"data-value"},{"id":"discounted_price","parentSelectors":["product"],"type":"SelectorText","selector":".product__payment--price.hidden-xs ins","multiple":false,"delay":0,"regex":""}]}

{"_id":"uspolo","startUrl":["https://tr.uspoloassn.com/"],"selectors":[{"delay":0,"id":"category-link","multiple":false,"parentSelectors":["_root"],"selector":"#hafta-sonu-firsatlari-1 .button a","type":"SelectorLink"},{"delay":0,"id":"product","multiple":true,"parentSelectors":["category-link","next"],"selector":".product__name a","type":"SelectorLink"},{"delay":0,"id":"description","multiple":false,"parentSelectors":["product"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["product"],"regex":"","selector":".hidden-xs del","type":"SelectorText"},{"delay":0,"id":"sku","multiple":false,"parentSelectors":["product"],"regex":"","selector":"div.product-sku","type":"SelectorText"},{"delay":0,"extractAttribute":"data-value","id":"size-avail","multiple":true,"parentSelectors":["product"],"selector":".js-product-sizes li > a:not(.disabled)","type":"SelectorElementAttribute"},{"delay":0,"id":"discounted_price","multiple":false,"parentSelectors":["product"],"regex":"","selector":".product__payment--price.hidden-xs ins","type":"SelectorText"},{"id":"next","paginationType":"clickMore","parentSelectors":["category-link","next"],"selector":"button.js-product-list-load","type":"SelectorPagination"}]}