I can grab only the links of the listings but not grab the data of the "product" pages

Describe the problem. I can grab only the data of the listing page, but I didn't understand how to scrape the data from the product pages .

Url: Corotos | Descubre los 452 anuncios de solares en venta

Sitemap:
{"_id":"corotos-solares-en-venta","startUrl":["https://www.corotos.com.do/sc/inmuebles-en-venta/solares-terrenos"],"selectors":[{"delay":0,"id":"title","multiple":false,"parentSelectors":["link"],"regex":"","selector":".breadcrumbs__item span","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h2.post__price","type":"SelectorText"},{"delay":0,"id":"date-of-pubblication","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"p.post__date","type":"SelectorText"},{"delay":0,"id":"place","multiple":false,"parentSelectors":["link"],"regex":"","selector":".post__category-and-location li:nth-of-type(1)","type":"SelectorText"},{"delay":0,"id":"tag","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":".post__category-and-location li:nth-of-type(2)","type":"SelectorText"},{"delay":0,"id":"tipo-de-uso","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"span[title='translation missing: es.Residencial']","type":"SelectorText"},{"delay":0,"id":"metriquadri","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"span[title='translation missing: es.300']","type":"SelectorText"},{"delay":0,"id":"description","multiple":false,"parentSelectors":["pagination"],"regex":"","selector":"p:nth-of-type(n+2)","type":"SelectorText"},{"delay":0,"id":"img","multiple":false,"parentSelectors":["pagination"],"selector":".main-carousel img","type":"SelectorImage"},{"delay":0,"id":"elements","multiple":true,"parentSelectors":["pagination"],"selector":"div.listing__item","type":"SelectorElement"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a.listing__load-more","type":"SelectorPagination"},{"id":"link","paginationType":"auto","parentSelectors":["elements","link"],"selector":"a.truncate-two-lines","type":"SelectorPagination"}]}

@matteoraggi Hi, the issue definitely lies in the way you have structured your sitemap.

Try to update your sitemap by the following example:

{"_id":"corotos-solares-en-venta","startUrl":["https://www.corotos.com.do/sc/inmuebles-en-venta/solares-terrenos"],"selectors":[{"delay":0,"id":"title","multiple":false,"parentSelectors":["elements"],"regex":"","selector":".breadcrumbs__item span","type":"SelectorText"},{"delay":0,"id":"price","multiple":false,"parentSelectors":["elements"],"regex":"","selector":"h2.post__price","type":"SelectorText"},{"delay":0,"id":"date-of-pubblication","multiple":false,"parentSelectors":["elements"],"regex":"","selector":"p.post__date","type":"SelectorText"},{"delay":0,"id":"place","multiple":false,"parentSelectors":["elements"],"regex":"","selector":".post__category-and-location li:nth-of-type(1)","type":"SelectorText"},{"delay":0,"id":"tag","multiple":false,"parentSelectors":["elements"],"regex":"","selector":".post__category-and-location li:nth-of-type(2)","type":"SelectorText"},{"delay":0,"id":"tipo-de-uso","multiple":false,"parentSelectors":["elements"],"regex":"","selector":"span[title='translation missing: es.Residencial']","type":"SelectorText"},{"delay":0,"id":"metriquadri","multiple":false,"parentSelectors":["elements"],"regex":"","selector":"span[title='translation missing: es.300']","type":"SelectorText"},{"delay":0,"id":"description","multiple":false,"parentSelectors":["elements"],"regex":"","selector":"p:nth-of-type(n+2)","type":"SelectorText"},{"delay":0,"id":"img","multiple":false,"parentSelectors":["elements"],"selector":".main-carousel img","type":"SelectorImage"},{"delay":0,"id":"elements","multiple":true,"parentSelectors":["detail-links"],"selector":"body:has(h1.post__title)","type":"SelectorElement"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a.listing__load-more","type":"SelectorPagination"},{"delay":0,"id":"detail-links","multiple":true,"parentSelectors":["pagination"],"selector":"a.truncate-two-lines","type":"SelectorLink"}]}

thanks it worked! IT just miss the grab of the square meters and I adjusted it.