Scrape including the text when click

Hi everyone, I’m new here… Its actually my first time to do automation… I’m having a problem getting the text in these phone models, I scrape them all BUT what i want is to get also the information of each phones, and to do that is to click each phone to get the description, is there any video or tutorial where i can watch, I check all over in youtube and google and I still can’t get the right result.

Thank you in advance…

Hi @iMarch, welcome to the Community.

Please ho through the contents available on the ‘Find Children’ activity, as this approach will help you in getting the required details of each phone model.

Using the Find Children activity, you can iterate through each phone model division & pick up the desired attributes such as their name, description, etc.

Hope this helps,
Best Regards.

Thank you for your reply, i did search how ‘Find Children’ activity, and i cant find any related topic what im doing :frowning: … its a bit frustrating

@iMarch

Please find the following resources, as they might help you with the better understanding & implementation of this activity:

https://docs.uipath.com/activities/other/latest/ui-automation/find-children

Best Regards.

@iMarch

It would be good to use for eqch ui element activity…what it does is it loops through all the similar elements once you indicate and show the pattern…

Inside the loop…you can include the clicks you need to perform using currentelement to click on the rewuired element …

Then after the page is navigated…you can scrape the data inside which ever you need and make sure you dont use any page specific selectors sot hat it can be used for all pages…ui explorer will help you in understanding the selector and you can use center top and righ top menus to understand and change the selector…if any title attribute is having pge info then you can use wildcards like * instead of the actual name…

Once all data is scrapped you can
Navigate back so that next element can be clicked in the loop

Hope this helps

Cheers

Thank you @Anil_G… this method seems pretty good… hope i can do it properly will update you soon…

1 Like

Hello everyone, i run into this error, please help

"Could not uniquely identify the user-interface element for this action.

Edit the element, run Validation, and add anchors in order to ensure the element is uniquely identified."

dup1

I already add anchor but every time my automation goes in to almost similar names i always get the error.

Hello everyone, i tried different approach but it always comes with error like this:

I validated it and it says 100% but why i keep getting this when the second search is going…

Please Help…

Don’t use Find Children as other are recommending. That’s the old way. Use the For Each UI Element activity (modern).

Also, if you’re completely new to UiPath and RPA, you should do the free training on the UiPath Academy web page. It’ll teach you a lot of what you need to know for processes like this.

@iMarch

That means the selector you are using is valid for cirst page but not for second and all…you need to validate …change the pge and revalidate if it is proper

Cheers