pub trait ExecutesCDP: AppiumClientTrait {
    // Provided method
    fn execute_cdp_command<'life0, 'life1, 'async_trait>(
        &'life0 self,
        command: &'life1 str,
        params: Option<HashMap<String, Value>>
    ) -> Pin<Box<dyn Future<Output = Result<HashMap<String, Value>, CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
}
Expand description

Chrome DevTools protocol commands (Chrome and webview)

Provided Methods§

source

fn execute_cdp_command<'life0, 'life1, 'async_trait>( &'life0 self, command: &'life1 str, params: Option<HashMap<String, Value>> ) -> Pin<Box<dyn Future<Output = Result<HashMap<String, Value>, CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§