while dynamic scraping . its only fetching data for first search . its searching for other inputs but not scraping data for them .
I didn’t get you, be more specific
I am trying to fetch title and price from flipkart into excel file for multiple searches using dynamic scraping. For ex: I am giving 2 search inputs like Nike T-shirt and nothing phone 1 . so the title and price data for “nike T-shirt” is getting feeded into excel sheet but for “nothing phone 1” search the excel sheet is empty . i.e its not fetching title and price data for “nothing phone 1” but its searching for nothing phone 1 in flipkart search option. Just the data is not getting scraped.
hi,
Datascraping should be kept in loop,as it has to scrap for each input
create an array for the inputs
arr_inputs={“Nike T-shirt”,“nothing phone 1”}
use while or for each activity
place datascraping inside the above mentioned activity(for each or while)
you will get the expected output
cheers
I am storing the input in excel sheet
If You are extracting the data by using the extract datatable activity. In the properties check the append results. Then it will append the next scraping results to the datatable.
Hoper you understand!! @mridul.badgurjar
use append range activity below the datascraping
so that it will append all the extarcted datatables
cheers