Download videos automation

Hi @felhaxnaloosszego ,

I watched your video, yes it is possible. There are couple of different parts that needs to be taking care of.

  1. How to go to each link one by one?
  • If the links are known, you can directly open each of them and then go to next step.
  • If the links are unknown and needs to be read from the screen, you can use AskUxer to switch to next link.
    Example:
    {Response} = AskUxer “What is the text on the first link on the page?” -UseScreenshot true
    or
    {Response} = AskUxer “What is the next link on the page?” -UseScreenshot true
    Click Text {Response}

Then you need to loop them to be able to reach all the links. You also need to scroll time to time since not all the links are visible.

  1. How to click the download icon
  1. You need to use If/Else logic to scroll on the page to check if there is any other videos.

Hope it helps.