chrome-for-testing-manager 0.12.0

Programmatic management of chrome-for-testing installations.
Documentation
//! Smoke test for the single-session happy path via [`Chromedriver::session`].

use chrome_for_testing_manager::{Chromedriver, ChromedriverRunConfig};
use rootcause::Report;

mod common;

#[tokio::test(flavor = "multi_thread")]
async fn single_session() -> Result<(), Report> {
    tracing_subscriber::fmt().try_init().ok();

    Chromedriver::run(ChromedriverRunConfig::default())
        .await?
        .session()
        .run(common::wikipedia::test_wikipedia)
        .await?;

    Ok(())
}