chromiumoxide icon indicating copy to clipboard operation
chromiumoxide copied to clipboard

Goto never returns if first request is aborted

Open Sytten opened this issue 2 years ago • 0 comments

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.

Sytten avatar Jan 23 '23 15:01 Sytten