Deringhall - extract ' link within a link

Deringhall - has a list of professional interior designers

Url: https://deringhall.com/design-professionals/atoz

Each listing is a link to a presentation page. All presentation pages have an 'Official Website' link. I want to extract this url.

Sitemap:
{"_id":"deringhall","startUrl":["https://deringhall.com/design-professionals/atoz"],"selectors":[{"id":"company","type":"SelectorLink","parentSelectors":["_root"],"selector":"ul.columns a.link","multiple":true,"delay":0},{"id":"url","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"li.section-header--brand__tool.section-header--brand__tool--www a.icon","multiple":false,"extractAttribute":"","delay":0},{"id":"tets","type":"SelectorLink","parentSelectors":["tets"],"selector":"ul.profile__info-social-links a.icon.icon__new-window","multiple":true,"delay":0}]}

I cannot figure out how to get the 'official website' link.

All help or advice greatly appreciated.

Thanks
Malc.

This is an easy fix.

1 - When you use a link selector, you're telling it go to that URL. Anything you want to scrape in the new page, you need to put as a CHILD to the link selector.

2- To scrape the URL you need to use Element Attribute and set it to href

Here is your map

{"_id":"forum-broke-link-in-a-link-10/16","startUrl":["https://deringhall.com/design-professionals/atoz"],"selectors":[{"id":"company","type":"SelectorLink","parentSelectors":["_root"],"selector":"ul.columns a.link","multiple":true,"delay":0},{"id":"url","type":"SelectorElementAttribute","parentSelectors":["company"],"selector":"li.section-header--brand__tool.section-header--brand__tool--www a.icon","multiple":false,"extractAttribute":"href","delay":0},{"id":"tets","type":"SelectorLink","parentSelectors":["tets"],"selector":"ul.profile__info-social-links a.icon.icon__new-window","multiple":true,"delay":0}]}