Forum Discussion
AlexKaras
5 years agoCommunity Hero
Hi,
> .FindAllChildren(" "," ",7)
The above line of code says: "Find all children up to the depth of 7 that have property with the name <one space> and the value of this property equals to <one space>".
I bet no such object exists in your application.
If you like to get all children up to level 7, then provide a property that exists for any object and indicate that it may have any value. E.g.: .FindAllChildren("name","*",7)
If you like to get just input fields, the code might be like this: .FindAllChildren("input field name","*",7)