How can I list the elements from TableView using REPL? I need all the elements with class UIAccessibilityElementMockView
. These are the elements that are visible after tree command:
Xamarin_Tree
I've tried already the following commands:
app.Query(x=>x.Class("UITableView").Child())
app.Query(x=>x.Class("UITableView").Child("UITableViewCell"))
Any help would be greatly appreciated.