use thirtyfour::prelude::*;
#[tokio::main]
async fn main() -> color_eyre::Result<()> {
let mut caps = DesiredCapabilities::chrome();
caps.set_debugger_address("localhost:9222")?;
let driver = WebDriver::new("http://localhost:9515", caps).await?;
driver.goto("https://www.baidu.com").await?;
Ok(())
}