array of answers returned for url now

This commit is contained in:
spv 2024-08-24 19:13:57 +02:00
parent fde73fc57b
commit 380ee66456
No known key found for this signature in database
GPG Key ID: 7638A987CE28ADFA

View File

@ -8,14 +8,14 @@ struct Answer {
} }
// let's set up the sequence of steps we want the browser to take // let's set up the sequence of steps we want the browser to take
async fn get_answers() -> Vec<Answer> { async fn get_answers(url: &str) -> Vec<Answer> {
let c = ClientBuilder::native() let c = ClientBuilder::native()
.connect("http://localhost:4444") .connect("http://localhost:4444")
.await .await
.expect("failed to connect to WebDriver"); .expect("failed to connect to WebDriver");
// first, go to the Wikipedia page for Foobar // 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 answer_loc = c.find_all(Locator::Css(".answer")).await.unwrap();
let mut out_answers = vec![]; let mut out_answers = vec![];
@ -45,5 +45,5 @@ async fn get_answers() -> Vec<Answer> {
#[tokio::main] #[tokio::main]
async fn 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);
} }