pub type ElementQueryFn<T> = Box<dyn Fn(&WebElement) -> BoxFuture<'_, WebDriverResult<T>> + Send + Sync + 'static>;
Expand description
Generic element query function that returns some type T.
Aliased Typeยง
struct ElementQueryFn<T>(/* private fields */);