How to scrape detail pages from a list?

Currently I am trying to get the info from the property individual pages and not from the list itself. So the main idea would be to open a list page, then enter in each of the properties displayed in that list and finally returning to the list page, in order to go to the next page.

Any idea how to do it?

Url: https://casa.sapo.pt/Venda/Apartamentos/

Sitemap:
Already tried so many different combinations, that I rather not put here any of them

Thanks in advance

Hello,
try this and adapt it to what you want to scrap:

{"_id":"test_casa","startUrl":["https://casa.sapo.pt/Venda/Apartamentos/?ly=1970&gy=1971"],"selectors":[{"id":"link","type":"SelectorLink","selector":"div.searchResultProperty > a","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"price","type":"SelectorText","selector":"p.detailPropertyPrice","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"type","type":"SelectorText","selector":"div.detailLocTitle p.detailPropertyTitle","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"localisation","type":"SelectorText","selector":"div.detailLocTitle p.detailPropertyLocation","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","selector":"a.paginadorNext","parentSelectors":["_root","pagination"],"multiple":true,"delay":0}]}