Here is the deal. I started a new summer job, and was asked to do the following task:
Open Excel, get a list of item numbers tied to a list of products.
Copy/paste the item number into a search bar of a competitors website.
Get an unique product page where the price is listed.
Copy this price and paste it back into the Excel file.
Repeat 1,561 times.
For obvious reasons this is poor use of human capital, and I would like to try to use UIPath to automate it as a personal for fun project. Though, I am inexperienced with UIPath and need your guidance on how to attack this problem.
Should I focus more on learning the basics as of now, or is there step-by-step examples (e.g. via YT or PDFs) of a similar task I could follow?
Itās always good to use the available learning portals to get the basics, so you can learn at your own pace and tackle the issues you face more efficiently.
That said the approach iād probably take for this task would be the following:
Read excel to datatable (Workbook - Read Range)
Add new column (if not yet present) āCompetitor priceā
Open the search page (Open Browser)
For Each Row in read Datatable
{
Type into search field row(āItem Numā).ToString
Click Search
Get Text - new price
row(āCompetitor priceā) = newPrice
}
Write updated datatable to excel (Workbook - Write Range)