Popup Window Help

Hi Guys,

Just wondering if you couple help me out with a pretty basic one that I haven't been able to work out. I'm trying to collect text info from a pop-up window of a listing but it never generates the data I want.

An example would be:
https://www.zomato.com/new-york-city/restaurants?page=1

How would I set up my selectors to collect all the phone numbers of those listings?

Currently my selectors graph is:
Element(listing) - Link/popup link (call)- text (phone number)

Not having a lot of luck unfortunately.

Any help would be greatly appreciated.

{"_id":"qwqew","startUrl":["https://www.zomato.com/new-york-city/restaurants?page=1"],"selectors":[{"id":"Listing","type":"SelectorElement","selector":"div.card.search-snippet-card:nth-of-type(n+2)","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Call","type":"SelectorPopupLink","selector":"div.ui.three a.item.res-snippet-ph-info","parentSelectors":["Listing"],"multiple":false,"delay":0},{"id":"Phone Number","type":"SelectorText","selector":"div.content div.row div.col-l-16 span","parentSelectors":["Call"],"multiple":false,"regex":"","delay":0}]}

Thanks in advance

Hello,

have a look at this.
the processing could take hours because 2446 page * 15 = 37 000 restaurants to scrape !

{"_id":"test_zomato","startUrl":["https://www.zomato.com/new-york-city/restaurants?page=1"],"selectors":[{"id":"link","type":"SelectorLink","selector":"a.result-title","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"name","type":"SelectorText","selector":"h1.res-name a.ui","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"adresss","type":"SelectorText","selector":"a.nhu","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"tel","type":"SelectorText","selector":"span.fontsize2:nth-of-type(1) span.tel","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","selector":"a.paginator_item:nth-of-type(n+2)","parentSelectors":["_root","pagination"],"multiple":true,"delay":"2000"}]}