How to scrape emails and website URLs hidden by icon

I am having trouble scraping emails and website link URLs hidden by an icon from this website. I tried doing selector: element attribute, and putting the attribute name as "href" for both Website URL and email address but it does not scrape anything.

This is my sitemap; please help me out, I've been stuck on this for 4 hours!

{"_id":"vegantest","startUrl":["https://www.yellowpages.com.au/search/listings?clue=vegan&locationClue=&lat=&lon=[1-29"],"selectors":[{"id":"business_page","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"div.cell:nth-of-type(n+3) div.srp-brand-bar-container a.listing-name, div.cell div.cell div.body a.listing-name","multiple":true,"delay":0},{"id":"business_number","type":"SelectorText","parentSelectors":["business_page"],"selector":"a.click-to-call span.text div","multiple":false,"regex":"","delay":0},{"id":"business_address","type":"SelectorText","parentSelectors":["business_page"],"selector":"p.listing-address","multiple":false,"regex":"","delay":0},{"id":"business_class_location","type":"SelectorText","parentSelectors":["business_page"],"selector":"h2.listing-heading","multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.pagination:nth-of-type(6)","multiple":true,"delay":0},{"id":"website","type":"SelectorElementAttribute","parentSelectors":["business_page"],"selector":".contact-url .text div","multiple":false,"extractAttribute":"href","delay":0},{"id":"email","type":"SelectorElementAttribute","parentSelectors":["business_page"],"selector":".contact-email .text div","multiple":false,"extractAttribute":"href","delay":0}]}

Element attribute is the right type to use, but you need to have the correct selectors and attribute names.You would usually need to view the source code (Chrome inspector) for this info. Example:

{"_id":"forum-yellowpages-au","startUrl":["https://www.yellowpages.com.au/find/plumbers-gas-fitters/canberra-cbd-act"],"selectors":[{"id":"Result wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.find-show-more-trial:nth-of-type(n+2)","multiple":true,"delay":0},{"id":"Business","type":"SelectorLink","parentSelectors":["Result wrappers"],"selector":"a.listing-name","multiple":false,"delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Result wrappers"],"selector":".listing-heading a","multiple":false,"regex":"","delay":0},{"id":"Email","type":"SelectorElementAttribute","parentSelectors":["Result wrappers"],"selector":"a.contact.contact-main.contact-email","multiple":false,"extractAttribute":"data-email","delay":0},{"id":"Website","type":"SelectorElementAttribute","parentSelectors":["Result wrappers"],"selector":"a.contact.contact-main.contact-url","multiple":false,"extractAttribute":"href","delay":0}]}