I want to download images from a website which are arranged in grid layout, this is the selector
<html app='chrome.exe' title='Ideogram – *' />
<webctrl css-selector='body>div>div>div>div>div>div>div>div>div>div>div>div' parentid='root' tag='DIV' idx='{Counter}' />
I’m using while loop to click all of these(After thant I’ll click download button to download all of the selected images) but it is not able to click and neither throwing any error.
And one more issue, there are lot of images (more than 10000 or even more) and i dont know the index of the last image so how to handle that scenario as well
@Sami_Rajput,
Your Selector is incorrect for images. You should be using Find Children activity to get all Images as List of Ui Element.
Use For Each UiElement activity to iterate through all the images.
Inside For Each use Get Attribute activity to get the URL of the image to download. The URL should be like this.
Then use Download file from URL activity to download image.
Thanks,
Ashok 
@ashokkarale @br1117jonnala
I have tried using Find children,
,
but it is giving me only 3 childs (It is treating whole column as one child.
And whats the function (CurrentUiElement.???) to get the url of that children
@Sami_Rajput,
Try analyzing the structure of your webpage and see how it loads and take call on that basis how you would get the child elements.
Use Get Attribute to get the URL of the image.
Thanks,
Ashok 