Copy lines from one screen and paste one by one into an app and execute

I have an app where I need to paste individual URLs into a field and then click 2 different buttons.

I want to create a macro where I can iterate through dozens or hundreds of URLs in a list, grab each URL and send it to the app, and continue through each URL in the list.

Can someone share the process, or point me to the right place?

Thanks!

The general process would be to create a macro you run from the target app:

  1. Create a variable containing the list of URLs, one per row.
  2. Use the For Each Line in a Variable action to iterate through each row of your variable.
  3. Each iteration will have the URL stored in the variable your define in the For Each action. Select the field where the URL goes by clicking at a location or a button name or whatever.
  4. Insert the text by pasting or typing.

Repeat the loop until done, though you may need a pause at the end to let the page do whatever it's doing with the URL.

-rob.