The number of clicks varies depending on the number of data entered on the website.
What should I do
ex1) 8 numbers → click each number (total: 8ea)
ex2) 3 numbers → click each number (total : 3ea)
The number of clicks varies depending on the number of data entered on the website.
What should I do
ex1) 8 numbers → click each number (total: 8ea)
ex2) 3 numbers → click each number (total : 3ea)
Hi @wjdtpghks29
You can use For Each UI Element Activity or Find Children activity if the first doesn’t work as expected
ForEach UI Element example | For each UI element activity in UiPath (youtube.com)
Cheers
Hi @wjdtpghks29
You can use the For each Ui element activity for this.
→ Drag and drop the For each Ui element activity and indicate the elements which are in pattern, in your case it is numbers. Output of For each Ui element is currentElement.
→ Inside for each Ui element activity insert the Click activity and pass the currentElement to the Input element option in the properties of click activity.
The for each Ui element captures the pattern based elements and iterate the each element and it pass the each element to the click activity then it performs to click on each element in the pattern.
Check the below workflow for better understanding,
Hope it helps!!
hi~
Thank you for your answer.
I can’t click on the number because the range is large when “click” (green)
What should I do if I want to get a separate number like 1.2.3?

Thank you for your answer.
I can’t click on the number because the range is large when “click” (green)
What should I do if I want to get a separate number like 1,2,3?

Thank you for teaching me YouTube, too.
I can’t click on the number because the range is large when “click” (green)
What should I do if I want to get a separate number like 1.2.3?

Could you be more specific… @wjdtpghks29
Press UI CLICK to click only the large range…
I would like to click on the small range (1,2).
What should I do?
For each Ui element not working for this… @wjdtpghks29
Could you try with Find Children activity, this is the classic activity.