Lines Matching refs:Selects
410 | ``tag`` | Selects all child elements with the given tag. |
416 | ``*`` | Selects all child elements. For example, ``*/egg`` |
419 | ``.`` | Selects the current node. This is mostly useful |
423 | ``//`` | Selects all subelements, on all levels beneath the |
427 | ``..`` | Selects the parent element. Returns ``None`` if the |
431 | ``[@attrib]`` | Selects all elements that have the given attribute. |
433 | ``[@attrib='value']`` | Selects all elements for which the given attribute |
437 | ``[tag]`` | Selects all elements that have a child named |
440 | ``[.='text']`` | Selects all elements whose complete text content, |
445 | ``[tag='text']`` | Selects all elements that have a child named |
449 | ``[position]`` | Selects all elements that are located at the given |