Capturing redirected child links

Hello,
How to fetch those links which are being redirected.
Means once you click the button it will redirect you to new URL. which is my intentions to captures.
Like in the below link

Logiciels.Pro – 16 Oct 21

Logiciels.Pro: Comparateur Logiciels SaaS Avis & Prix

Comparateur Logiciels SaaS ➤ Comparez + 20.000 progiciels : Avis & Prix des CRM + ERP + Emailing + Bureautique + Productivité + Cloud

once you are inside categories.. there are multiple pages... each page contains "Try" "Free Try" Demo and Try" buttons like this...
once you click these.. it will land you to the product page and I want to captures those product page link.
Any help here.
I used this sitemap: ( Not Working )

{"_id":"logiciels_pro","startUrl":["https://www.logiciels.pro/"],"selectors":[{"id":"Categories","parentSelectors":["_root"],"type":"SelectorLink","selector":".vc_col-sm-3 a","multiple":true,"delay":0},{"id":"saas_links","parentSelectors":["Categories","pagination"],"type":"SelectorLink","selector":"a.re_track_btn","multiple":true,"delay":0},{"id":"pagination","parentSelectors":["Categories","pagination"],"type":"SelectorLink","selector":"a.page-numbers","multiple":true,"delay":0},{"id":"saas_name","parentSelectors":["Categories","pagination"],"type":"SelectorText","selector":"h3.font130","multiple":true,"delay":0,"regex":""}]}

@Yacht007 Hi, please, after pasting the sitemaps JSON mark it with the preformatted text option, otherwise the JSON appears to be invalid. Thanks.

Hello @ViestursWS thanks for this step. :slight_smile:
Is there any solution for the above query...

@Yacht007 Hi, it seems that most of the data appear in a scattered manner(most of the unique records for each selector appear in a separate row).

The issue lies in the sitemap selector setup itself, therefore, in this case, you should update the sitemap by using an 'Element' selector set as a 'parent' with the 'multiple' option checked and all of the remaining selectors set as it's 'child' with 'multiple' option not checked.

Learn more: Web Scraper << How to >> Scrape multiple items within a listings page

Example sitemap for the 'Logiciels CRM' category:

{"_id":"logiciels_pro-test","startUrl":["https://www.logiciels.pro/comparatif-logiciels-saas/comparatif-logiciels-crm/"],"selectors":[{"delay":0,"id":"saas_links","multiple":false,"parentSelectors":["wrapper"],"selector":"a.re_track_btn","type":"SelectorLink"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":"a.next","type":"SelectorPagination"},{"delay":0,"id":"saas_name","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"h3.font130","type":"SelectorText"},{"delay":0,"id":"wrapper","multiple":true,"parentSelectors":["pagination"],"selector":"div.r_offer_details","type":"SelectorElement"}]}