diff --git a/src/main.rs b/src/main.rs index 8c35401..d18dd8c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 }