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(())
}