Wait for Button to be Clickable

That is how all timeouts work. They always continue immediately when the desired action is complete, object is ready, etc.

However, Wait for Download isn’t going to work for you, because it only waits for one file. It appears you are downloading multiple files. You will need to get a count of how many files to wait for, count how many files are already in the folder, then using a Do While you wait until the number of files is two more (or however many files) than how many were there before the downloads started.

I have an automation I’m working on right now that does something very similar, but I don’t have to first count how many files are in the folder - because I know I’m downloading into an empty folder.

I use Find Children to see how many reports will be downloaded:

image

Then I click the first report:

image

If there is more than one report then I shift-click the last one:

Then for me it’s a keyboard press to begin all the file downloads.

Then I calculate a total wait time that comes from a config file:

image

And here is my Do While that checks for all the files to be downloaded: