chromiumoxide
chromiumoxide copied to clipboard
Goto never returns if first request is aborted
If you intercept and abort the first request, the goto will never return even if you set a global request timeout.
page
.execute(FailRequestParams::new(
request_id,
ErrorReason::Aborted,
))
.await
If ou abort subsequent requests it works correctly, so there is most likely an issue with the code that waits for the end of navigation.