#![forbid(unsafe_code)]
pub mod browser;
pub mod cookies;
pub mod dialog;
pub mod frame;
pub mod frame_graph;
pub mod network;
pub mod runtime;
pub mod sensors;
pub use browser::{launch_firefox, launch_firefox_self_managed, proxy_prefs, Element, EvaluationResult, FoxBrowserConfig, FrameId, FrameInfo, Page, ProxyConfig, ProxyScheme, ScrollDirection};
pub use cookies::CapturedCookie;
pub use dialog::{CapturedDialog, CapturedDownload, DialogLog};
pub use network::{CapturedHeader, CapturedRequest, CapturedResponse, Filter, NetworkEntry, NetworkLog};
pub use runtime::drive_browser;