How can I get the length of the grid_table element? I have the following output from the REPL tree:
Currently, I can only get the "grid_table" element, but not its "container" elements or at least the "grid_table" Length. Is it possible? Or can I only get items using the "container" Id?
To count all direct children for grid_table, use:
app.Query(q => q.Id("grid_table").Child()).Length
"", "grid_table", :
app.Query(q => q.Id("grid_table").Descendant().Id("container")).Length