UiPath Find Children Activity | Select values from Dropdown| Select Item | Example | Selectors | RPA

  Рет қаралды 9,243

Tutorials by Mukesh Kala

Tutorials by Mukesh Kala

Күн бұрын

➤ This video consists of the basics of Selectors in #UiPath studio. we will see how can we make use of Find Children Activity in UiPath Studio to tackle Difficult situations.
To automate specific actions in the user interface, you are required to interact with various windows, buttons, drop-down lists and many others. One of the ways in which UI elements can be identified is by using their position on the screen, but this can be unreliable.
⦿ To overcome this problem, UiPath Studio uses what we call selectors. These store the attributes of a graphical user interface element and its parents, in the shape of an XML fragment.
⦿ Most of the times, selectors are automatically generated by Studio and do not require further input from you, especially if the apps you are trying to automate have a static user interface.
➤➤➤
This Video Demonstrates -
How can we make use #FindChildren Activity to manage Difficult situations with #Selectors in UiPath.
➤➤➤ Timestamps
0:00 - Start
0:59 - Sample Demonstration
2:37 - Defining the Use Case
3:10 - Selecting Single Value
6:27 - Find Children Activity
9:16 - Get Specific Value from UiElement
16:27 - Passing Dynamic Value to Select Item
➤➤➤
Playlist List for selectors -
• Selectors in UiPath
➤➤➤
get Attributes Activity
• What is Property Explo...
➤➤➤
UiPath Common Properties UI Elements | Delay | Timeouts
• 🔴 9. LIVE Conversation...
➤➤➤
Anchor Base Activity Explained -
• UiPath - Anchor Base A...
➤➤➤
All About UI Explorer -
• UI Frameworks | Unders...
➤➤➤
#UiPath #Selectors #RPA #IDX #RPA #UiPathCommunity
➤➤➤ Happy Automation!
➤➤➤ Social Media Links
👉 Instagram : / uipathtutor. .
👉 LinkedIn : / mukeshkala
👉 Twitter : / tweetmukeshkala
👉 Facebook: / uipathfb
👉 KZfaq : / tutorialsby. .
👉 Mail : mailmukeshkala@gmail.com
#UiPathCommunity #UiPath #RPA

Пікірлер: 39
@shaikjaveed3934
@shaikjaveed3934 2 жыл бұрын
Hello sir ji, You're explanations was so simple and easy to understand the concept Thanks for uploading such videos it's very helpful☺☺
@MukeshKala
@MukeshKala 2 жыл бұрын
It's my pleasure
@jaganr4792
@jaganr4792 3 жыл бұрын
Great. This is really helpful..
@MukeshKala
@MukeshKala 3 жыл бұрын
Glad it was helpful!
@satyambaviskar2017
@satyambaviskar2017 3 жыл бұрын
Very nicely explained, thanks a lot buddy.
@satyambaviskar2017
@satyambaviskar2017 3 жыл бұрын
Hi Mukesh, can you please make a video on - How to use RE framework without Queue. I appreciate your guidance.
@MukeshKala
@MukeshKala 3 жыл бұрын
Most welcome!
@MukeshKala
@MukeshKala 3 жыл бұрын
Sure ! I will add this to my To Do List , Will Definitely make one .. Thank you for the comment
@akonhassan
@akonhassan 3 жыл бұрын
Hello Mukesh, please make the videos on linq. We are lucky we have you as a uipath trainer you are champ stay blessed Thanks for the great videos
@MukeshKala
@MukeshKala 3 жыл бұрын
Noted ! Appreciate your Feedback ..
@NadaSharafuddin
@NadaSharafuddin Жыл бұрын
thank you
@MukeshKala
@MukeshKala Жыл бұрын
You're welcome
@khooshbudave7669
@khooshbudave7669 2 жыл бұрын
Hi, Your videos are very good. All topics are explained in a simple way. Thank you for your efforts. Can you please make one video on Assets. If you already have one, please send the link.
@MukeshKala
@MukeshKala 2 жыл бұрын
No , I don't have one ... however If there is something you need immediate assistance , happy to connect and discuss ... Drop me a note on mailmukeshkala@gmail.com
@yashobantadash6670
@yashobantadash6670 2 жыл бұрын
great video sir! i am using click activity to click on 'generate", but after generating for one country my bot is getting freezed. how to generate values for each country after select item activity and store the generated information in a word file or notepad?
@MukeshKala
@MukeshKala 2 жыл бұрын
without looking at the screen and the code , it would be difficult for me to assist as there can be multiple reasons for this behaviours
@yashobantadash6670
@yashobantadash6670 2 жыл бұрын
cant we use the "item" in element instead of clicking on the dropdown menu in the web page, like we used in get attribute property section in element
@MukeshKala
@MukeshKala 2 жыл бұрын
But that will be always selecting one Item , Find children is used to get the complete tree
@lemon2524
@lemon2524 Жыл бұрын
Sorry 1 question when I use the select item activity it says the ui element is invalid? how do I solve this.
@MukeshKala
@MukeshKala Жыл бұрын
It means the control you are using is not rendered as in Drop Down Box - So instead of select Item - we use a Click Activity and pass the Dynamic selector
@vs8738
@vs8738 2 жыл бұрын
Thanks @Mukesh for the video... To extend this case what I am trying is In my case select item is not supported (control doesnt support selected item…) Scenario:- Click drop down on web , xls column has some values mentioned How to pass that first value from xls ,perform match with drop down and click
@MukeshKala
@MukeshKala 2 жыл бұрын
Click would be working then ... Simply modify the click selector with the variable you get from xlx
@vs8738
@vs8738 2 жыл бұрын
@@MukeshKala Sir can you please advise on below... I did perform as below Assign activity Cnctdrpdwn=row.item("ContactType").ToString On click the variable was passed as below But not working... I debugged do see the value from column , I see value as expected for the variable but the value is not passed to the variable Some issue in scope ? I mean visibility of the data
@MukeshKala
@MukeshKala 2 жыл бұрын
@@vs8738 1. The variable Cnctdrpdwn should have the value. Print and Check this 2. Second , For the item you want to click - generate the selector from UI Explorer and 3. then in the UI Explorer - Replace the attribute with the value of the Cnctdrpdwn 4. Validate if this Run. 5. Save the Selector 6. Edit the selector , Right Click on the variable value Cnctdrpdwn andreplace with variable name.
@vs8738
@vs8738 2 жыл бұрын
@@MukeshKala updates as below... 1. The variable Cnctdrpdwn should have the value. Print and Check this - [VS] Yes it does have the value from the column that is the first row value as 'Email' 2. Second , For the item you want to click - generate the selector from UI Explorer and 3. then in the UI Explorer - Replace the attribute with the value of the Cnctdrpdwn [VS] - 4. Validate if this Run. 5. Save the Selector 6. Edit the selector , Right Click on the variable value Cnctdrpdwn and replace with variable name. Also tried passing the value 'Email' for the variable as default but not working... can u share me ur email id I will share u screen shots may be u can advise SIR what I have been doing wrong. Thanks
@MukeshKala
@MukeshKala 2 жыл бұрын
@@vs8738 its available in the description 😊
@bharathivaddireddy8168
@bharathivaddireddy8168 Жыл бұрын
Hi mukesh I'm using find children activity for dropdown values but in local ui elemnt is showing null what is the issue??
@MukeshKala
@MukeshKala Жыл бұрын
Selector are not properly build or the control is not supporting the find Children
@bharathivaddireddy8168
@bharathivaddireddy8168 Жыл бұрын
Thanks for your reply and videos also.i'm beginer to uipath your videos are very helpful to me. U r doing great job
@bharathivaddireddy8168
@bharathivaddireddy8168 Жыл бұрын
Could you please help me how can i achive this
@MukeshKala
@MukeshKala Жыл бұрын
This is totally a scenarios specific .. without looking at the application and selectors I won’t be able to guide you
@akonhassan
@akonhassan 3 жыл бұрын
Hello Mukesh how are you? How can I copy file from RDP to local machine?
@MukeshKala
@MukeshKala 3 жыл бұрын
You would have to enable the copying of the data in the RDP .. or you can map the drive in your local computer ... This link has the details .. stackoverflow.com/questions/9304953/copy-files-from-remote-rdp-to-local-machine/13494086 Also , you can have a shared drive accessible to both the RDP and the local machine and then you can copy paste ...
@akonhassan
@akonhassan 3 жыл бұрын
@@MukeshKala thanks bro
@trungnguyencong3216
@trungnguyencong3216 3 жыл бұрын
if select item does not work how can I click on value with Findchildren
@MukeshKala
@MukeshKala 3 жыл бұрын
We use use the normal click activity... Say there are 10 items - we make the selector for any one item and open the selector in UiExplorer There would be some property that will be unique to the item we selected , say aaname or Inner tex.. We take this selector and now we change the aaname or the innertext with a variable This variable will now have the aaname of the item we need to select ..
@trungnguyencong3216
@trungnguyencong3216 3 жыл бұрын
@@MukeshKala ty man I did solve it after I can't use click activities because the dropdown made of span and all the values inside comes with ID, which is generate randomly..... so all I gotta do is disable Id field in Ui explorer
@MukeshKala
@MukeshKala 3 жыл бұрын
Awesome 👍👍
Как быстро замутить ЭлектроСамокат
00:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 13 МЛН
Кәріс өшін алды...| Synyptas 3 | 10 серия
24:51
kak budto
Рет қаралды 1,2 МЛН
Introducing Oracle Database@Google Cloud
2:47
Google Cloud Tech
Рет қаралды 4,7 М.
How to use Find Children in UiPath to get static and unique selector
18:58