Not sure how accurate my query is going to be, this is my first time using UIPath as my boss has given me a task where I need to create a consolidated list from an online database, the problem however is that need to go into each record within the database and export a csv with the required details (6 columns wide by a variable number of Rows per record)
The problem I’m having is that I’m trying to automate the downloading of the CSV files but can only do it via the hyperlink for each record and don’t know how to essentially take a URL and add a variable into it from a spreadsheet and have the robot run the rest
Essentially my process is going to look something like the below
Created a sequence
Opened a browser
Navigated to Reporting section in website
Create some kind of table array (possibly utilize an existing excel document) to generate the missing portion of hyperlinks to make life easier
use “Navigate to” and “Click” functions within UIPath to download the CSV Files
Move downloaded CSV files to one consolidated folder.
Consolidate data into 1 spreadsheet.
Due to the nature of my work I’m unfortunately unable to provide example data sheets but if someone is able to help me I would be appreciative.
Hi Schirru,
The webpage shows a list of the records but there is no clearly defined table as per say.
It shows as a list only until the CSV is downloaded then it becomes a table
Regards
Sorry that I wasnt very clear, I need to download multiple CSV files from the website but in order to download each CSV I have to go into each record within the report and download the data from there.
The bit im essentially struggling with is what I have listed as step 4. Create some kind of table array (possibly utilize an existing excel document) to generate the missing portion of hyperlinks to make life easier.
I’ve managed to get the Datatable to generate but my problem seems to be coming from my “Navigate to” within my “For Each Row”
Im trying to navigate to “Report (with incomplete URL) + datatable result” to get to the document however I dont know what the column is labeled as at the moment and feel like this is my biggest hurdle at the moment, is there a generic code I can use to replace
“+ row(“currently known column name”).ToString”? or is there something glaringly obvious that im missing?
Yes that is correct, I have a list of imcomplete URL’s and the missing details that are required to make them complete, the issue that I am encountering is adding the missing details into a “navigate to” function