this doesnt work btw
This commit is contained in:
parent
3f41378ae5
commit
85011038fa
13
src/main.rs
13
src/main.rs
@ -9,18 +9,11 @@ async fn main() -> Result<(), fantoccini::error::CmdError> {
|
|||||||
.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://en.wikipedia.org/wiki/Foobar").await?;
|
c.goto("https://stackoverflow.com/questions/78872368/how-to-set-up-webpack-devserver-config-to-build-another-target").await?;
|
||||||
let url = c.current_url().await?;
|
|
||||||
assert_eq!(url.as_ref(), "https://en.wikipedia.org/wiki/Foobar");
|
|
||||||
|
|
||||||
// click "Foo (disambiguation)"
|
// click "Foo (disambiguation)"
|
||||||
c.find(Locator::Css(".mw-disambig")).await?.click().await?;
|
let answer_loc = c.find(Locator::Id("answer-.*")).await?;
|
||||||
|
dbg!(answer_loc);
|
||||||
// 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");
|
|
||||||
|
|
||||||
c.close().await
|
c.close().await
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user