We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9711e1 commit 78ccfc3Copy full SHA for 78ccfc3
internal/js/modules/k6/browser/common/http.go
@@ -489,6 +489,9 @@ func (r *Response) fetchBody() error {
489
}
490
action := network.GetResponseBody(r.request.requestID)
491
body, err := action.Do(cdp.WithExecutor(r.ctx, r.request.frame.manager.session))
492
+ if err != nil && strings.Contains(err.Error(), "No data found for resource with given identifier") {
493
+ return nil
494
+ }
495
if err != nil {
496
return fmt.Errorf("fetching response body: %w", err)
497
0 commit comments