chromedriver-api 0.1.14

This API is designed for interacting with chromedriver (browser auto clicker)
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(unused_imports)]

pub use crate::{ Result, Error };

pub(crate) use macron::*;
pub(crate) use std::format as fmt;
pub(crate) use std::path::{ Path, PathBuf };
pub(crate) use std::sync::Arc;
pub(crate) use std::time::Duration;
pub(crate) use tokio::sync::{ Mutex, Notify };
pub(crate) use tokio::time::sleep;