Forum Discussion
There's a subtle difference between FindElement and FindElements, an easy mistake to miss!
pkudrys just want to reiterate, FindAll method will only work on those objects that appear in the Object Browser.
Standard methodsExtended methodsOtherwise, you will have to implement your own "FindAll" method. Which means finding the parent node first, and then iterating through each child node, any node that matches your criteria, you then save and append that node to an array - this is real programming, and you'll have total control of your search criteria!
I don't understand the issue here. He wants to get the list of all mat-chip-row and then doing something (click on the [X] button).
With FindElements (and the proper xpath) he gets an already populated array, and just need to iterate through.
That's what I'm doing in my projet, and it works fine. Without needing NameMapping.