How To Save several pages that is only one page links

Hi, Everybody

I’ Trying but in this moment I’m find that the program have a lot little bugs… And all most tutorial only teaches how make process return message box

Always in the first time do execut the program, this give little erros… in the sequencia almost execut by complet…

I’ need to show um process in wednesday, but I’ have doubt how execut the process that have 2 links in te same page web, because when click in the link this open another page in the same tab, in the final this process I’ need execut another line whit for each…

Also has in the process the situation where there is no invoice, I am trying to make a if text exists with the word “Vencimento” that only contains in the invoice …
If you do not have written “Vencimento”, the process enters the Else Loop and returns to the For each

awaitingNova Pasta Compactada.zip (14.3 KB)

I’ have doubt how execut the process that have 2 links in te same page web, because when click in the link this open another page in the same tab, in the final this process I’ need execut another line whit for each…

Nova Pasta Compactada.zip (14.3 KB)

If I understand well do you try to open link in a new tab? try middle click with the activity

Or you can get the HREF text, open a new browser window to your stuff then close the tab
forum3

hello nbouscarat,

Is almost this…
when I’ open the browser, in this browser have 2 link ( print 2º copy)
I need click in this 2 links…
but when I click in the first, this open another page that I save as PDF…
The problem is that I need return a page initial that have ( print 2º copy) and click in second link…
I’ dont now how to make a For each ou While for Uipath return eand click in second link…
Tks for try help me
I hope your return

Does the number of link change?

get link collection

for each link

  • click on link with BTN_Middle (it will open a new tab / or windows)
  • attach browser / attach windows / anyway to get your newly open tab (check the selector for the URL for example
  • save as PDF

end foreach

or you can do this directly with the URL if available

get link collection url
for each url

  • open browser with url
  • save as PDF

end foreach

Hi!!
Does the number of link change? → can this happen

Can you give same example what is “get link collection”

How do “get link collection url”

Tnks…