chrome_for_testing_manager/
lib.rs1#![allow(clippy::non_minimal_cfg)] mod cache;
16pub(crate) mod chromedriver;
17mod download;
18mod error;
19pub(crate) mod mgr;
20mod output;
21pub(crate) mod port;
22#[cfg(any(feature = "thirtyfour"))]
23pub(crate) mod session;
24pub(crate) mod version;
25
26pub use chrome_for_testing::Channel;
27pub use chrome_for_testing::Version;
28pub use chromedriver::{Chromedriver, ChromedriverRunConfig};
29pub use error::{ChromeForTestingArtifact, ChromeForTestingManagerError, Result};
30pub use mgr::{ChromeForTestingManager, LoadedChromePackage};
31pub use output::{
32 DriverOutputInspectors, DriverOutputLine, DriverOutputListener, DriverOutputSource,
33};
34pub use port::{Port, PortRequest};
35#[cfg(any(feature = "thirtyfour"))]
36pub use session::Session;
37pub use tokio_process_tools::{
38 GracefulShutdown, GracefulShutdownBuilder, UnixGracefulPhase, UnixGracefulShutdown,
39 UnixGracefulSignal, WindowsGracefulShutdown,
40};
41pub use version::{SelectedVersion, VersionRequest};