Struct BoundFunctions

Source
pub struct BoundFunctions { /* private fields */ }

Implementations§

Source§

impl BoundFunctions

Source

pub fn find_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn find_all_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn find_all_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, wait_for_options: WaitForOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn get_all_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn get_all_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Option<HtmlElement>, QueryError>

Source

pub fn query_all_by_alt_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_display_value<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_label_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_placeholder_text<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_role<M: Into<ByRoleMatcher>>( &self, matcher: M, options: ByRoleOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_test_id<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_text<M: Into<Matcher>>( &self, matcher: M, options: SelectorMatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Source

pub fn query_all_by_title<M: Into<Matcher>>( &self, matcher: M, options: MatcherOptions, ) -> Result<Vec<HtmlElement>, QueryError>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.