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 */);