For Each Ui Element activity

Can we iterate for each Ui Element activity in reverse order? If yes how can we achieve that ?
Thankyou

@akhil_n.v

it might not directly support…one thign you can do is simply use find children and then the order can be reversed

or first run a for each ui element and create a list of ui elements ..then the list can be reversed and used

List.Reverse is a direct method that is available

but be cautious if multiple pages are there then click on back etc needs to be handled manually

cheers

@akhil_n.v,

You can use Find Children activity to get all the ui element you need to iterate through.

Then use While loop with condition which will start from ui element collection count -1 to 0 th index.

Give this a try