pub trait AppiumFind {
// Required methods
fn find_by<'life0, 'async_trait>(
&'life0 self,
search: By
) -> Pin<Box<dyn Future<Output = Result<Element, CmdError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn find_all_by<'life0, 'async_trait>(
&'life0 self,
search: By
) -> Pin<Box<dyn Future<Output = Result<Vec<Element>, CmdError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Locates an element by given strategy.
Locates all elements matching criteria.