Click on "DISPLAY" button then scrap the displayed text

Hello, I would like to scrap an email from a webpage. The problem is that it's needed to click on a "DISPLAY" button in order to display the email on the webpage. (email contact > "AFFICHER").

I have tried a sitemap using just an element click but I can't make it click on the button and then scrap the displayed email...

Url: https://www.besport.com/group/964319

Sitemap : {"_id":"test","startUrl":["https://www.besport.com/group/964319"],"selectors":[{"id":"click","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div[data-eliom-id='IQhWGzGAkDii']","multiple":false,"delay":0,"clickElementSelector":"[data-eliom-c-onclick='h+jW29Gf0cXj'] span","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"}]}

Thanks in advance for your time and help

This works for me:

{"_id":"forum-besport-test","startUrl":["https://www.besport.com/group/964319"],"selectors":[{"id":"Name","type":"SelectorText","parentSelectors":["_root"],"selector":"span.user-lastname","multiple":false,"regex":""},{"id":"Click email","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".pb-about div.pb-content","multiple":false,"delay":"4000","clickElementSelector":"div.pb-content div[class^='pb-about-itm']:contains('Email') button:contains('Show')","clickType":"clickOnce","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueText"},{"id":"Email","type":"SelectorElementAttribute","parentSelectors":["Click email"],"selector":"a:contains('@')","multiple":false,"extractAttribute":"href"}]}