got answer scraping working

This commit is contained in:
spv 2024-08-24 19:05:22 +02:00
parent 3f8cf91ac2
commit 9a0098eb14
No known key found for this signature in database
GPG Key ID: 7638A987CE28ADFA

View File

@ -1,7 +1,6 @@
use fantoccini::{elements::Element, ClientBuilder, Locator}; use fantoccini::{elements::Element, ClientBuilder, Locator};
const MAX_ANSWER_INDEX: u128 = 100000000; #[derive(Debug, Clone)]
struct Answer { struct Answer {
upvotes: u32, upvotes: u32,
author: String, author: String,
@ -9,19 +8,34 @@ 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_answer() -> anyhow::Result<Element> { async fn get_answer() -> anyhow::Result<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/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; let score = text
Ok(answer_loc?) .clone()
.split('\n')
.collect::<Vec<&str>>()
.get(0)
.unwrap()
.parse::<u32>()?;
let content = text;
c.close().await.unwrap();
Ok(Answer {
upvotes: score,
content,
author: "unimplemented".to_string(),
})
} }
#[tokio::main] #[tokio::main]