Extract data table not works in zomato scraping name and prices

example link please go through this link and try to scrp the prices and name extract data table not working in this
i need scrap the data multiple links.

thanks
surya

Hi @Surya_prakash_Akula1

Check the below workflow:


Sequence42.xaml (18.6 KB)

Output:

Hope it helps!!

@Surya_prakash_Akula1
Sequence
Build Data Table activity
DataTable: dt
Columns: [“Name”, “Price”]

Assign activity
urls = {“http://example.com/page1”, “http://example.com/page2”, “http://example.com/page3”}

For Each activity url in urls
Open Browser
URL: url
Body :Get Text activity
Output: name
Selector: “”

            Get Text activity
                Output: price
                Selector: "<Selector for Price>"
            
            Add Data Row activity
                ArrayRow: {name, price}
                DataTable: dt

Write Range activity
    DataTable: dt
    FilePath: "OutputFilePath.xlsx"
    SheetName: "Sheet1"

try this flow in studio