Dynamic webpages using UiPath

I have a scenario where I need to fetch ID’s from each row of a data table and use it at the end of a URL as follows: https://acme-test.uipath.com/ID
This must be repeated until all the values of the row are finished.
What is the command to achieve this?

@vivek_Chowdary assuming you are looking for the activity to nagvigate to the ID page,you can use “Navigate To” activity inside an Attach browser.
Eg:“https://acme-test.uipath.com/”+yourvariable where ID value is stored.

1 Like

Fetch the Id’s into a datatable

For Each Row

Navigate to … “https://acme-test.uipath.com/ID” + Row.Item(“ID”).tostring

@Jersey_Practical_Sho, Thank you very much. It worked fine.

Thanks!

1 Like