Trait augdom::testing::Query[][src]

pub trait Query: Sized {
    fn find(&self) -> Finder<'_, Self>;
}
Expand description

A type which can be queried as a DOM container, returning results from its subtree.

Required methods

Begin a subtree query. The returned value supports methods like Finder::by_label_text which create queries against this container’s children.

Implementors