-3

I want to go down recursively and automatically at the host and clusters tab (the blue one in the picture), and then take the text like guest os, compability, etc.

the example

I already know how to get the text from summary, but I got the problem to loop (go down) at the host and cluster tabs. Any idea how to do it?

Thank you very much.

codemonkee
  • 2,881
  • 1
  • 25
  • 32
  • I already tried from this tips but I can't find solution https://forum.uipath.com/t/how-to-select-loop-dynamic-elements/21410 – Jody Claudio Mar 02 '19 at 11:31

1 Answers1

0

It's probably not the best idea to have one robot do everything - i.e. setting filters, parsing results, clicking on each result, parsing data, then going back, and so on. Instead of that approach, divide and conquer. Create multiple sequences/workflows, each one with one specific task in mind.

Here's how I would tackle it:

This comes with the benefit that you can use multiple robots at the same time extracting data, potentially increasing scraping significantly. The Queues and Transactions feature will make sure each result is visited only once, and that multiple robots don't process the same item multiple times.

Edit: you might want to start with ReFramework, which I'd recommend.

Wolfgang Radl
  • 2,319
  • 2
  • 17
  • 22