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};
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<Element> {
async fn get_answer() -> anyhow::Result<Answer> {
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::<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]