array of answers returned for url now

This commit is contained in:
spv 2024-08-24 19:13:54 +02:00
parent 9a0098eb14
commit fde73fc57b
No known key found for this signature in database
GPG Key ID: 7638A987CE28ADFA
2 changed files with 24 additions and 18 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# Scrape Stackoverflow for the word "pythonic" and see if it gets more average upvotes based on a claim from LowLevelLearning

View File

@ -8,17 +8,19 @@ struct Answer {
}
// let's set up the sequence of steps we want the browser to take
async fn get_answer() -> anyhow::Result<Answer> {
async fn get_answers() -> Vec<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/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array").await?;
c.goto("https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array").await.unwrap();
let answer_loc = c.find(Locator::Css(".answer")).await;
let text = answer_loc.unwrap().text().await.unwrap();
let answer_loc = c.find_all(Locator::Css(".answer")).await.unwrap();
let mut out_answers = vec![];
for answer in answer_loc {
let text = answer.text().await.unwrap();
let score = text
.clone()
@ -26,19 +28,22 @@ async fn get_answer() -> anyhow::Result<Answer> {
.collect::<Vec<&str>>()
.get(0)
.unwrap()
.parse::<u32>()?;
.parse::<u32>()
.unwrap();
let content = text;
c.close().await.unwrap();
Ok(Answer {
out_answers.push(Answer {
upvotes: score,
content,
author: "unimplemented".to_string(),
})
});
}
c.close().await.unwrap();
out_answers
}
#[tokio::main]
async fn main() {
dbg!(get_answer().await);
dbg!(get_answers().await);
}