diff --git a/src/main.rs b/src/main.rs index 5d963e8..8b2a5c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,14 +8,14 @@ struct Answer { } // let's set up the sequence of steps we want the browser to take -async fn get_answers() -> Vec { +async fn get_answers(url: &str) -> Vec { let c = ClientBuilder::native() .connect("http://localhost:4444") .await .expect("failed to connect to WebDriver"); // first, go to the Wikipedia page for Foobar - c.goto("https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array").await.unwrap(); + c.goto(url).await.unwrap(); let answer_loc = c.find_all(Locator::Css(".answer")).await.unwrap(); let mut out_answers = vec![]; @@ -45,5 +45,5 @@ async fn get_answers() -> Vec { #[tokio::main] async fn main() { - dbg!(get_answers().await); + dbg!(get_answers("https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array").await); }