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
After calling browser.MustPage(url), a subsequent call to MustWaitStable causes panic. While Must normally throws a panic if an error occurs, it seems unexpected that MustWaitStable would throw any errors since it isn't triggering on any type of content. The bug is really about getting Execution context was destroyed except when stepping in the debug mode.
l:=launcher.New().
Headless(false).
Devtools(true).
Set("disable-gpu", "true")
deferl.Cleanup()
// Launch the browser and return the URL for the browser control servicebUrl:=l.MustLaunch()
browser:=rod.New().ControlURL(bUrl).
Trace(true).
SlowMotion(time.Second).
MustConnect()
browser.IgnoreCertErrors(true)
deferbrowser.MustClose()
page:=browser.MustPage(oagUrl)
page.MustWaitStable()
After calling browser.MustPage(url), a subsequent call to MustWaitStable causes panic. While Must normally throws a panic if an error occurs, it seems unexpected that MustWaitStable would throw any errors since it isn't triggering on any type of content. The bug is really about getting
Execution context was destroyed
except when stepping in the debug mode.Panic report:
Rod Version: v0.116.2
The text was updated successfully, but these errors were encountered: