I have a webpage which i need to extract the URLs of, and for each URL, go in to perform a click in order to download a file.
I did the following:
The first iteration for item was ok. I managed to download the file. However, on the next iteration, it is stuck at the Get Attribute function (which is ‘href’), leading to an error.
I am not sure what the issue, as running the debug shows the correct selector (as compared to the one shown in UIExplorer).
I notice your Find Children has ‘A’ in the name. I’m guessing when you indicated for that activity you clicked one of the links. That’s incorrect. The Find Children needs to be given a selector for a PARENT element that CONTAINS all the links. Then you add tag=‘A’ to the Filter property of Find Children. You also should set it to FIND_DESCENDANTS for this.