Scrap hidden information with no url change

Hi! I try to extract data (email + phone + website). This info appears when clicking on "contact" but it doesn't change the URL. I don't manage to find what selector I should use...?

Url: Coach Marie-France FOURRIER Coaching d’Equipe

Sitemap:
{"_id":"coachs-icf-2501","startUrl":["https://www.coachfederation.fr/trouver-coach/"],"selectors":[{"id":"homename","parentSelectors":["_root"],"type":"SelectorLink","selector":"div:nth-of-type(n+4) .h5 a","multiple":true,"delay":0},{"id":"name","parentSelectors":["homename"],"type":"SelectorText","selector":"h1","multiple":false,"delay":0,"regex":""},{"id":"contact","parentSelectors":["homename"],"type":"SelectorElementClick","clickElementSelector":"a.d-block","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","multiple":false,"selector":"a.d-block"},{"id":"email","parentSelectors":["contact"],"type":"SelectorText","selector":".modal-body p:nth-of-type(1) a","multiple":false,"delay":0,"regex":""},{"id":"tel","parentSelectors":["contact"],"type":"SelectorText","selector":"p:nth-of-type(2) a","multiple":false,"delay":0,"regex":""},{"id":"website","parentSelectors":["contact"],"type":"SelectorText","selector":"p a[target]","multiple":false,"delay":0,"regex":""}]}

@Alixmarie Hi, it happens because you have not created a valid 'parent' selector for the 'email', 'tel' & 'website' selectors. You should change the 'Element click' using a 'Selector' - body or whatever qualifies as a parent for the aforementioned selectors.

Example:

{"_id":"coachfederation-fr","startUrl":["https://www.coachfederation.fr/trouver-coach/coach/philippe-beucher/"],"selectors":[{"clickElementSelector":"a.d-block","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"contact","multiple":false,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"delay":0,"id":"email","multiple":false,"parentSelectors":["contact"],"regex":"","selector":".modal-body p:nth-of-type(1) a","type":"SelectorText"},{"delay":0,"id":"tel","multiple":false,"parentSelectors":["contact"],"regex":"","selector":"p:nth-of-type(2) a","type":"SelectorText"},{"delay":0,"id":"website","multiple":false,"parentSelectors":["contact"],"regex":"","selector":"p a[target]","type":"SelectorText"},{"delay":0,"id":"name","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"h1","type":"SelectorText"}]}

Hello!

Thanks for your help with this, it works now!

Cheers,
Alix