Links clinking on Popup message

Hi all,

Greetings of the DAy,

I am new to UI Path, i have one problem in ui path can any one pls help me. In my Project when we search by details its displays output results in Popup message. In that popup message its displays multiple links in a table, here i have to click that links one by one. Any one pls help me.

I am attaching Popup Attachment:
image

Hi @anon96676723

you can take the attach browser ativity and indicate the pop up and then use the data scraping and click on every link by looping through the table

@anon96676723,

Use data scraping and will give you output as data table and then use For Each Row activity to iterate it and open one by one link.

Using for each row its clicking First link only multiple times

Thanks for your Help, After Data Scraping i taken For Eah row activity but still its clicking First link only multiple times

Thanks for your Help Lakshman, After Data Scraping i taken For Eah row activity but still its clicking First link only multiple times

@anon96676723,

Could you please send me that workflow so that I will check and get back to you.

@lakshman

Opening Links in Popup.xaml (14.2 KB)

@anon96676723,

I checked your workflow and found mistake in IF condition: row(0).ToString.Trim=“External Document”. Because of this, BOT is clicking first item only.

Change it to row.Item(0).ToString.Trim=“External Document” and let me know it works or not.

@lakshman

Thanks a lot for your help its working fine.

1 Like

@lakshman

I need one more help, in website its displaying multiple Links when we click on that link its download one document, i am saving that document name as “Boardid-LicNum” , here my doubt is how to save all documents in a sinle folder with same Boardid & Lic number.

Ex:

I want to save files like this

  • Boardid-LicNum_1
  • Boardid-LicNum_2
  • Boardid-LicNum_3
    "
    "
  • Boardid-LicNum_n

@anon96676723,

  1. Declare one variable “Count” of type integer and assign value to 1.
  2. At the time of saving “Boardid-LicNum_”+count.Tostring
  3. Assign count = count + 1
2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.