Hierarchical OperatorsContain, Inside, Children, Parent, …
// All the paragraphs that mention “WebL”.Elem(page, “p”) contain Pat(page, “WebL”)
// The rows in the second table that mentions “xyz”.Elem(page, “tr”) inside (Elem(page, “table”) contain Pat(page, “xyz”))[1]
// The elements of the third list.Children(Elem(page, “ul”)[2])