Need help to scrap phone number

Hi community,

Can anyone help me to scrap the phonenumber in popup window?
What i can see is, that the phone link is individual.

Here is the Sitemap:

{"_id":"kompass","startUrl":["https://de.kompass.com/"],"selectors":[{"id":"Kategorien","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.navClassifSecteurLink","multiple":true,"delay":0},{"id":"Sub-Kategorie","type":"SelectorLink","parentSelectors":["Kategorien"],"selector":".col-xs-12 #secteur-0 a","multiple":true,"delay":0},{"id":"Firmen","type":"SelectorLink","parentSelectors":["Sub-Kategorie"],"selector":".col-sm-8 h2 a","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Firmen"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Adresse","type":"SelectorText","parentSelectors":["Firmen"],"selector":"p.blockAddress:nth-of-type(1) span.spRight","multiple":false,"regex":"","delay":0},{"id":"Land","type":"SelectorText","parentSelectors":["Firmen"],"selector":"span[itemprop='addressCountry']","multiple":false,"regex":"","delay":0},{"id":"Webseite","type":"SelectorText","parentSelectors":["Firmen"],"selector":"a#webSite_presentation_0","multiple":false,"regex":"","delay":0},{"id":"Phone","type":"SelectorElement","parentSelectors":["Firmen"],"selector":".in div.modal-dialog","multiple":false,"delay":0}]}

Fortunately, the phone numbers are right in the source code so you do not need to click. E.g. for this page, https://de.kompass.com/c/witzenmann-gmbh/de600359/

The phone number is in:

Type: Element attribute
Selector: input[id^='freePhone-contactCompany']
Attribute name: value

1 Like

Thank you very much... can you show me where you have find the selector? It works, but now i have next problem... he is not collecting the complete pagination. Do you have a quick help, again?

Kind Regards

PS: Why you know that you have to transform:
input id="freePhone-contactCompanyForCompany
into
input[id^='freePhone-contactCompany']

new sitemap:

{"_id":"kompass3","startUrl":["https://de.kompass.com/"],"selectors":[{"id":"Kategorien","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.navClassifSecteurLink","multiple":true,"delay":0},{"id":"Sub-Kategorie","type":"SelectorLink","parentSelectors":["Kategorien"],"selector":".col-xs-12 #secteur-0 a","multiple":true,"delay":0},{"id":"Firmen","type":"SelectorLink","parentSelectors":["Sub-Kategorie"],"selector":".col-sm-8 h2 a","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Firmen"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Adresse","type":"SelectorText","parentSelectors":["Firmen"],"selector":"p.blockAddress:nth-of-type(1) span.spRight","multiple":false,"regex":"","delay":0},{"id":"Land","type":"SelectorText","parentSelectors":["Firmen"],"selector":"span[itemprop='addressCountry']","multiple":false,"regex":"","delay":0},{"id":"Webseite","type":"SelectorText","parentSelectors":["Firmen"],"selector":"a#webSite_presentation_0","multiple":false,"regex":"","delay":0},{"id":"Phone","type":"SelectorElementAttribute","parentSelectors":["Firmen"],"selector":"input[id^='freePhone-contactCompany']","multiple":false,"extractAttribute":"value","delay":0}]}