chrome_for_testing_manager/lib.rs
1mod cache;
2pub(crate) mod chromedriver;
3mod download;
4pub(crate) mod mgr;
5pub(crate) mod port;
6pub(crate) mod session;
7
8pub use chrome_for_testing::Channel;
9pub use chrome_for_testing::Version;
10pub use chromedriver::Chromedriver;
11pub use mgr::{ChromeForTestingManager, VersionRequest};
12pub use port::{Port, PortRequest};
13pub use session::{Session, SessionError};