[][src]Trait thirtyfour::sync::RemoteConnectionSync

pub trait RemoteConnectionSync: Debug + Send + Sync {
    fn execute(
        &self,
        session_id: &SessionId,
        command: Command
    ) -> WebDriverResult<Value>; }

Required methods

fn execute(
    &self,
    session_id: &SessionId,
    command: Command
) -> WebDriverResult<Value>

Loading content...

Implementors

impl RemoteConnectionSync for ReqwestDriverSync[src]

fn execute(
    &self,
    session_id: &SessionId,
    command: Command
) -> WebDriverResult<Value>
[src]

Execute the specified command and return the data as serde_json::Value.

Loading content...