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":""}]}