32

I'm currently using verison 72.0.3626.119 on a Debian Strecht. I've noticed that since a couple of days (perhaps one or two weeks) I'm missing the Replay XHR menu entry you get when you do a right click on an XHR request in the network window as described here.

I've been also searching google for this with mixed results, I've found this SO question from 2016 where the OP seems to have a similar issue but since my xhr request are not uploading files, this does not apply to me either. In the devtool forums I've found nothing that could help.

So the question is, is this function also gone for everybody else? Or is it just me? I've gone through the devtools settings but I didn't find any option that would help me with this.

3
  • I don't see it as well (Mac OS), v72.0.3626.121 Commented Mar 20, 2019 at 20:37
  • Gone for me as well.
    – WhiteFire
    Commented Mar 27, 2019 at 8:48
  • Missing that feature.. I used to use it all the time
    – Max Flex
    Commented May 13 at 9:04

1 Answer 1

53

The replay XHR still there if you are using the xhr api via axios or something similar, however, if your app is using the new api fetch, you need to use a different approach.

Since Chrome 67, it was introduced a new feature called copy as fetch.

In that case, you can copy as fetch and paste on your console.

So, if you'd like to replay your fetch requests, just paste on your console, then press and enter to replay your XHR.

The best part of that on the new feature is that you are able to edit your request, before replay.

enter image description here

8
  • I've been using copy as cURL whenever the menu does not appear. The strange thing is that sometimes replay xhr does appear. I just don't know how to reproduce it.
    – Pablo
    Commented May 19, 2019 at 16:50
  • 4
    This causes CORS issues for me locally Commented Jun 9, 2020 at 10:53
  • 1
    Are you trying to fetch from the same window. You copied? Because copy as fetch should bring the correct origin settings Commented Jun 10, 2020 at 12:31
  • 1
    You can replay a POST but not a GET request Commented Sep 13, 2022 at 3:03
  • 14
    "The best part of that on the new feature" ... sorry, but I fail to see any benefits here. What used to be two clicks, is now two clicks, then switching to console, paste, enter, switching back to network tab \: Sill upvoted of course, since none of that is your fault :)
    – panepeter
    Commented Mar 13, 2023 at 11:37

Not the answer you're looking for? Browse other questions tagged or ask your own question.