You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's the equivalent of await page.waitForEvent("load"); when using this crate? :)
So that I can call it after e.g. page.click_builder("#login-button").click().await?;.
When I try page.expect_event(EventType::Load).await?; it hangs here forever, even after the page loaded.