pub trait CanReplaceValue: AppiumClientTrait {
    // Provided method
    fn replace_value<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        element: &'life1 Element,
        value: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
}
Expand description

Replacing element value (instead of retyping into field)

Provided Methods§

source

fn replace_value<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, element: &'life1 Element, value: &'life2 str ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§