Its About Selector Building


here I want to make selector by using find children activity and I want to pick

    tag so that i will get all the
  • elements as a child can anyone how i make it . Here I am grabbing experience from Linkedln

1 Like

@Muhammad_Bin_Waseem

give the parent selector as the one with div id=“experience” in find children and in filter give <webctrl tag='LI' /> and select descendants in properties

cheers

These are not working

Here is the precise method. The key isn’t just the tag, but the Scope.

  1. Use ‘Indicate Element’ to select the main parent container for the ‘Experience’ section.
  2. In the Properties panel for ‘Find Children’, set the Filter property to: <webctrl tag='LI' />
  3. Set the Scope property to: Find.Scope.FIND_DESCENDANTS.

This configuration instructs the activity to look inside the main container and retrieve all list items (LI) at any level, which is what you need.

This video demonstrates the ‘Find Children’ logic effectively: https://youtu.be/QP3toiOSNks?si=GcxlkmHRQvuqApgL

@Muhammad_Bin_Waseem

Show some screenshots of what you have done

Cheers