Not getting complete data & from Click Pop up

Hi,

I am collecting data from Zomato for analysis and to publish in article for which I am extracting data from this tool. I am getting only 6-7 restaurant data from 6 pages, in which I am not able get the Phone number which appears on Click on "Call" Button.

Please find the below sitemap I was using and correct me how to extract all the data in correct format.

Url: https://www.zomato.com/kolkata/delivery?page=1

Here from all pages, I want to extract the following fields:
Name, Area, Address, Rating, Cuisines, and Phone Number from call button.

Sitemap:
{"_id":"zomatok","startUrl":["https://www.zomato.com/kolkata/delivery"],"selectors":[{"id":"restaurants","type":"SelectorElement","selector":"div.ui div.card","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"name","type":"SelectorText","selector":"article.search-result.first a.result-title","parentSelectors":["restaurants"],"multiple":true,"regex":"","delay":0},{"id":"area","type":"SelectorText","selector":"article.search-result.first a.ln24.search-page-text","parentSelectors":["restaurants"],"multiple":true,"regex":"","delay":0},{"id":"address","type":"SelectorText","selector":"article.search-result.first div.col-m-16","parentSelectors":["restaurants"],"multiple":true,"regex":"","delay":0},{"id":"other details","type":"SelectorText","selector":"article.search-result.first div.search-page-text","parentSelectors":["restaurants"],"multiple":true,"regex":"","delay":0},{"id":"phone","type":"SelectorLink","selector":"div.ui.four a.item.res-snippet-ph-info","parentSelectors":["restaurants"],"multiple":false,"delay":0},{"id":"pagination","type":"SelectorLink","selector":"a.paginator_item","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"numbers","type":"SelectorText","selector":"div.content div.row div.col-l-16 span","parentSelectors":["phone"],"multiple":true,"regex":"","delay":0}]}

You can just go to each place profile page using link selector and scrape all the info from there without any click actions.

How could I do that, can you please provide me a sample script or real one. It will be great help.

Here is an example sitemap, that goes to each place profile page and scrapes "Title" and "Location":

{"_id":"zamato_item_link_example","startUrl":["https://www.zomato.com/kolkata/delivery?page=1"],"selectors":[{"id":"item_link","type":"SelectorLink","selector":"a.result-title","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Title","type":"SelectorText","selector":"h1.res-name a.ui","parentSelectors":["item_link"],"multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","selector":"div.mb5 a.left","parentSelectors":["item_link"],"multiple":false,"regex":"","delay":0}]}