this doesnt work btw

This commit is contained in:
spv 2024-08-24 00:52:26 +02:00
parent 3f41378ae5
commit 85011038fa
No known key found for this signature in database
GPG Key ID: 7638A987CE28ADFA

View File

@ -9,18 +9,11 @@ async fn main() -> Result<(), fantoccini::error::CmdError> {
.expect("failed to connect to WebDriver");
// first, go to the Wikipedia page for Foobar
c.goto("https://en.wikipedia.org/wiki/Foobar").await?;
let url = c.current_url().await?;
assert_eq!(url.as_ref(), "https://en.wikipedia.org/wiki/Foobar");
c.goto("https://stackoverflow.com/questions/78872368/how-to-set-up-webpack-devserver-config-to-build-another-target").await?;
// click "Foo (disambiguation)"
c.find(Locator::Css(".mw-disambig")).await?.click().await?;
// click "Foo Lake"
c.find(Locator::LinkText("Foo Lake")).await?.click().await?;
let url = c.current_url().await?;
assert_eq!(url.as_ref(), "https://en.wikipedia.org/wiki/Foo_Lake");
let answer_loc = c.find(Locator::Id("answer-.*")).await?;
dbg!(answer_loc);
c.close().await
}