can we write LINQ query for uipath.Core.activities.findchildren output
like if i want to see the index wise data instead of using for loop
like we can see the data for array with index
similar if want see the particular index values of uipath.core.UiElement value like
we see with uipath.Core.activities.GetAttribute attribute and uipath.Core.activities.GetValue
or more clearly like ----------------------------------
yeh like output of uipath.Core.activities.findchildren with index
then LINQ query for
uipath.Core.activities.GetAttribute attribute target output
uipath.Core.activities.GetValue input target output
so like if filter for finnd children like with span HTMl element
– <“div”>
– <“img”>
<“span”>
once i get all the elements
i want to write LINQ query to get Attribute and value of that attribute
attribute can be like class or row of dicison in HTML element
yeh like output of uipath.Core.activities.findchildren with index
then LINQ query for
uipath.Core.activities.GetAttribute attribute target output
uipath.Core.activities.GetValue input target output
so like if filter for finnd children like with span HTMl element
–
–
once i get all the elements
i want to write LINQ query to get Attribute and value of that attribute
attribute can be like class or row of dicison in HTML element
lets assume that the output variable name is uiChildren
So we can do: arrValue = uiChildren.Select(Function (x) x.Get("YourAttributeName").toString).ToArray()