This is an interview question… plz respond someone
i have an excel with 200 rows… i have to read the data. and enter the details in a web application. but the application is only entering the 10 rows at one time. how can u handle this prblm…
Hi
- First you can add these 200 data to a queue
- Have a bot created and use it to enter the data to that website with 10 data at a time with get queue item activity or use a get transaction item activity and loop it for 10 times
- Now use a QUEUE TRIGGER and assig the above created bot to it
- So that all the new queue item will trigger the bot and let’s the bot to add 10 item per trigger
- This will repeat automatically by queue trigger itself until all transaction items are consumed
Cheers @katta_nikhil
thank you for u r reply
i have another question
i have a table in web browser with column’s and rows
i can easily get that table using data scrapping
but i want only specific columns to scraping
how can we handle that
while scrapping it self you can define how many columns you require
once you are scraping , as you get all the columns then you can remove the columns that you dont require and also check in metadata property as well.
Hope this helps
Regards
You can store data in database connect through database you can easily access hole data or
Second options you have api for that data you can used upi
You can handle this by processing the data in batches. Read the first 10 rows from Excel, enter them into the web application, then move to the next 10, and so on until all 200 rows are entered. If using automation, a script (e.g., Python with Selenium or VBA) can loop through the data in chunks of 10, ensuring smooth entry.