From 9a0098eb14a21beb77116fe23bb75486c745436d Mon Sep 17 00:00:00 2001 From: spv Date: Sat, 24 Aug 2024 19:05:22 +0200 Subject: [PATCH] got answer scraping working --- src/main.rs | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index ebeb9d1..459f2ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,6 @@ use fantoccini::{elements::Element, ClientBuilder, Locator}; -const MAX_ANSWER_INDEX: u128 = 100000000; - +#[derive(Debug, Clone)] struct Answer { upvotes: u32, author: String, @@ -9,19 +8,34 @@ struct Answer { } // let's set up the sequence of steps we want the browser to take -async fn get_answer() -> anyhow::Result { +async fn get_answer() -> anyhow::Result { 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/78872368/how-to-set-up-webpack-devserver-config-to-build-another-target").await?; + c.goto("https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array").await?; - let answer_loc = c.find(Locator::Css("answer")).await; + let answer_loc = c.find(Locator::Css(".answer")).await; + let text = answer_loc.unwrap().text().await.unwrap(); - c.close().await; - Ok(answer_loc?) + let score = text + .clone() + .split('\n') + .collect::>() + .get(0) + .unwrap() + .parse::()?; + let content = text; + + c.close().await.unwrap(); + + Ok(Answer { + upvotes: score, + content, + author: "unimplemented".to_string(), + }) } #[tokio::main]