Export data from Chrome developer tool

前端 未结 12 1773
轮回少年
轮回少年 2021-01-30 02:02

\"enter

Network analysis by Chrome when page loads

I would like to export this d

相关标签:
12条回答
  • 2021-01-30 02:20

    I came across the same problem, and found that easier way is to undock the developer tool's video to a separate window! (Using the right hand top corner toolbar button of developer tools window) and in the new window , simply say select all and copy and paste to excel!!

    0 讨论(0)
  • 2021-01-30 02:22

    To get this in excel or csv format- right click the folder and select "copy response"- paste to excel and use text to columns.

    0 讨论(0)
  • 2021-01-30 02:26

    if you right click on any of the rows you can export the item or the entire data set as HAR which appears to be a JSON format.

    It shouldn't be terribly difficult to script up something to transform that to a csv if you really need it in excel, but if you're already scripting you might as well just use the script to ask your questions of the data.

    If anyone knows how to drive the "load page, export data" part of the process from the command line I'd be quite interested in hearing how

    0 讨论(0)
  • 2021-01-30 02:29

    Right-click and export as HAR, then view it using Jan Odvarko's HAR Viewer

    This helps in visualising the already captured HAR logs.

    0 讨论(0)
  • 2021-01-30 02:29

    In more modern versions of Chrome you can just drag a .har file into the network tab of Chrome Dev Tools to load it.

    0 讨论(0)
  • 2021-01-30 02:31

    from Chrome 76, you have Import/Export buttons.

    0 讨论(0)
提交回复
热议问题