I am trying to collect the names, phone numbers, emails, and whatsapp numbers of these businesses on this latin american yellow pages website
The difficulty I'm having is that the phone number and emails are behind a button with some pretty intense looking div stuff and im not sure if im just not adding [ ]'s in the right places or just doing the wrong thing entirely.
if someone wants to just get all that for me that would be much appreciated, im down to learn tho.
so far ive set up clicking the individual business page and to click the phone button. i went into that element click and added a text action and set it to the selector of the parent action. i can only seem to get it to output "phone" instead of a phone number so i suspect im using the wrong element somewhere but it seems to be the parent.
im thinking i need to set up a second click action under the first that selects the new (?) parent (?) that actually holds the phone number and then a text action under that one that selects the phone number.
the thing that has the number in it is
<span class="w-3/5 font-semibold ng-star-inserted"> (809) 565-5797 </span>
i cant get it to show up as a number because i dont know css
{"_id":"paginasamarillas-com-do-2026-02-08","startUrl":["https://paginasamarillas.com.do/en/business/search/republica-dominicana/c/ferreterias?p=1&sort=alpha"],"selectors":[{"id":"businessselect","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":".yp-result-card-external-information a[data-component]","type":"SelectorLink","version":2},{"clickActionType":"real","clickElementSelector":"li div button.flex","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"clickbutton","multiple":true,"parentSelectors":["businessselect"],"selector":"div.col-start-3","type":"SelectorElementClick"}]}
update // got a good start to my day and got to work on figuring this out. i can now get the phone number and email consistently, the whatsapps are a link so that what im trying to figure out now
{"_id":"paginasamarillas-com-do-2026-02-08","startUrl":["https://paginasamarillas.com.do/en/business/search/republica-dominicana/c/ferreterias?p=1&sort=alpha"],"selectors":[{"id":"businessselect","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":".yp-result-card-external-information a[data-component]","type":"SelectorLink","version":2},{"clickActionType":"real","clickElementSelector":"li .relative button[data-component='telephone']","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard","id":"phoneclick","multiple":false,"parentSelectors":["businessselect"],"selector":"div.col-start-3","type":"SelectorElementClick"},{"id":"phone number","multiple":false,"multipleType":"singleColumn","parentSelectors":["phoneclick"],"regex":"","selector":"span.font-semibold","type":"SelectorText","version":2},{"clickActionType":"real","clickElementSelector":"button.mt-1","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard","id":"emailclick","multiple":false,"parentSelectors":["businessselect"],"selector":"div.col-start-3","type":"SelectorElementClick"},{"id":"emailgrab","multiple":false,"multipleType":"singleColumn","parentSelectors":["emailclick"],"regex":"","selector":"span.font-semibold","type":"SelectorText","version":2}]}
