How to scrap div link without href (No data with elementclick)

Hi there,

I'm having some trouble to get data from a div tag ...
In the div, there is no Href displayed

Look at this page : https://www.aleou.fr/salle-seminaire/3779-resort-barriere-enghien-les-bains.html
On the right hand side, when you scroll down, there is a contact sidebar with 3 ways to contact
I want to go into the Message link to get the Email displayed there
All the problem is to get the information within "mail" ... Its not recognized as a link to be a link selector but as a click or popup selector, it goes there ... Show the email ... But impossible to get it in the result ... why ?

Here is the sitemap :

{"_id":"aleou","startUrl":["https://www.aleou.fr/recherche/salle-seminaire[1-635].html"],"selectors":[{"id":"fiches","type":"SelectorLink","parentSelectors":["_root"],"selector":"h2 a","multiple":true,"delay":0},{"id":"Nom","type":"SelectorText","parentSelectors":["fiches"],"selector":"h1[itemprop='name']","multiple":false,"regex":"","delay":0},{"id":"ville","type":"SelectorText","parentSelectors":["fiches"],"selector":"a[itemprop='containedInPlace']","multiple":false,"regex":"","delay":0},{"id":"type","type":"SelectorText","parentSelectors":["fiches"],"selector":"#d_etab_type_chaine a","multiple":false,"regex":"","delay":0},{"id":"rue","type":"SelectorText","parentSelectors":["fiches"],"selector":"[itemtype='http://schema.org/PostalAddress'] span[itemprop='streetAddress']","multiple":false,"regex":"","delay":0},{"id":"Code postal","type":"SelectorText","parentSelectors":["fiches"],"selector":"[itemtype='http://schema.org/PostalAddress'] span[itemprop='postalCode']","multiple":false,"regex":"","delay":0},{"id":"Ville","type":"SelectorText","parentSelectors":["fiches"],"selector":"[itemtype='http://schema.org/PostalAddress'] span[itemprop='addressLocality']","multiple":false,"regex":"","delay":0},{"id":"Pays","type":"SelectorText","parentSelectors":["fiches"],"selector":"span[itemprop='addressCountry']","multiple":false,"regex":"","delay":0},{"id":"mail","type":"SelectorElementClick","parentSelectors":["fiches"],"selector":"div#myd_etab_contactdiv","multiple":false,"delay":"400","clickElementSelector":"div#contactetab_display_email.myr_contact_button.etab_capturethistat","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTMLText"},{"id":"Mail","type":"SelectorText","parentSelectors":["mail"],"selector":"a[itemprop='email']","multiple":false,"regex":"","delay":"1000"},{"id":"Nom contact","type":"SelectorText","parentSelectors":["fiches"],"selector":"#myd_etab_contactdiv div div:nth-of-type(1) b","multiple":false,"regex":"","delay":0},{"id":"Website","type":"SelectorElementAttribute","parentSelectors":["fiches"],"selector":"div.linketab_website","multiple":false,"extractAttribute":"data-href","delay":0},{"id":"phone","type":"SelectorPopupLink","parentSelectors":["fiches"],"selector":"div#contactetab_display_tel","multiple":false,"delay":0},{"id":"phone1","type":"SelectorText","parentSelectors":["fiches"],"selector":"b:nth-of-type(1) span[itemprop='telephone']","multiple":false,"regex":"","delay":0},{"id":"phone2","type":"SelectorText","parentSelectors":["fiches"],"selector":"b:nth-of-type(2) span","multiple":false,"regex":"","delay":0},{"id":"Chaine d'hotel","type":"SelectorText","parentSelectors":["fiches"],"selector":"a[title='Novotel Seminar']","multiple":false,"regex":"","delay":0}]}

I tried with all combination to try to get that Email ...
When i use a link selector, it result with "mail" and i get all the other date
Only when i use Elementclick or popup link it actually goes to the right page to get the information but then eventually it result in "No data scrap"

If there is any way to make this email pop up in the result, please let me know :slight_smile:
Thank you for you help

The info is embedded in the source but it is not visible and you can't select it with WS alone. For cases like this, you'll need to poke around the HTML source to find suitable selectors. Try the sitemap below. I used Page load delay 6000

{"_id":"forum-aleou-test","startUrl":["https://www.aleou.fr/salle-seminaire/3779-resort-barriere-enghien-les-bains.html"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"h1[itemprop='name']","multiple":false,"regex":"","delay":0},{"id":"Email","type":"SelectorText","parentSelectors":["_root"],"selector":"div.d_etab_content div[style]:contains('Email') a","multiple":false,"regex":"","delay":0},{"id":"Phone","type":"SelectorText","parentSelectors":["_root"],"selector":"div#display_etab_infotel","multiple":false,"regex":"","delay":0}]}

Thank you so much @leemeng for your help,

Have a good day !