chrome_for_testing_manager/
lib.rs1#![allow(clippy::non_minimal_cfg)] mod cache;
4pub(crate) mod chromedriver;
5mod download;
6mod error;
7pub(crate) mod mgr;
8mod output;
9pub(crate) mod port;
10#[cfg(any(feature = "thirtyfour"))]
11pub(crate) mod session;
12
13pub use chrome_for_testing::Channel;
14pub use chrome_for_testing::Version;
15pub use chromedriver::{Chromedriver, ChromedriverRunConfig};
16pub use error::{ChromeForTestingArtifact, ChromeForTestingManagerError};
17pub use mgr::{ChromeForTestingManager, VersionRequest};
18pub use output::{DriverOutputLine, DriverOutputListener, DriverOutputSource};
19pub use port::{Port, PortRequest};
20#[cfg(any(feature = "thirtyfour"))]
21pub use session::Session;