How to scrap the phone number

Describe the problem.
Hi
I would like to scrap the phone number behind the text "Display telephone number" in the URL below. I have tried different ways but nothing seems to work.
Thanks in advance.

Url: https://www.wlw.ch/en/company/densa-ag-118717?category_id=93759&q=Packages+for+hazardous+goods

Sitemap:
{"_id":"wwwwlwch","startUrl":["https://www.wlw.ch/en/companies/packages-for-hazardous-goods?entered_search=1&q=Packages+for+hazardous+goods"],"selectors":[{"id":"Company Name","type":"SelectorLink","selector":"h4.media-heading a.link-unstyled","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Phone","type":"SelectorElementClick","selector":"a.font-h3","parentSelectors":["Company Name"],"multiple":false,"delay":"2000","clickElementSelector":"li a.link-inverse.fn-popover-outside-click","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"phone2","type":"SelectorLink","selector":"li a.link-inverse.fn-popover-outside-click","parentSelectors":["Company Name"],"multiple":false,"delay":0}]}

Hello there!

You've had an element click selector set, but did not have any selector inside it to pick the value up. With a click selector, you select an element to be clicked ("Click selector"), and then you select a field that comes up("Selector", a wrapper of the value inside). Then you create another selector, in your case, a text selector, that picks up the phone number while it's popped up by a click selector, and if parent selector isn't set automatically to the above Element click selector, you pick it from the parent selectors list.

You don't need a delay to be set, as the phone number pops out immediately anyway.

Here's the fixed sitemap:

{"_id":"wwwwlwch","startUrl":["https://www.wlw.ch/en/companies/packages-for-hazardous-goods?entered_search=1&q=Packages+for+hazardous+goods"],"selectors":[{"id":"Company Name","type":"SelectorLink","selector":"h4.media-heading a.link-unstyled","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Phone_click","type":"SelectorElementClick","selector":"div.popover-content","parentSelectors":["Company Name"],"multiple":false,"delay":"0","clickElementSelector":"li a.link-inverse.fn-popover-outside-click","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"Pick_the_phone_№","type":"SelectorText","selector":"a.font-h3","parentSelectors":["Phone_click"],"multiple":false,"regex":"","delay":0}]}

And some of the results:

Happy scraping!

Thanks a lot for the fast answer.