Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save the results analysed by the Chrome's Coverage tool?

At a first glance it looks like very useful tool, however I cannot find any operation like Save or similar option.

enter image description here

Does anyone know whether it is possible to save the results analysed by the Chrome's Coverage tool? Thanks

like image 752
Morpheus Avatar asked Jun 19 '17 14:06

Morpheus


People also ask

How do I use code coverage on Chrome dev tools?

With that out of the way, here's how to use the code coverage tool: Select Show coverage from the Chrome Developer Tools Command Menu. Select the button labelled Start instrumenting coverage and reload the page. Observe code coverage statistics in the panel.

How do I check chrome coverage?

In Chrome's Dev Tools (Command+Option+C on Mac, Control+Shift+C on Windows/Linux, or right-click on the page and choose “Inspect”), select the “Sources” tab, and if “Coverage” isn't a displayed tab at the bottom, select it using the three vertical dots to the left of those tabs.

What can you do with developer tools?

Every modern web browser includes a powerful suite of developer tools. These tools do a range of things, from inspecting currently-loaded HTML, CSS and JavaScript to showing which assets the page has requested and how long they took to load.


1 Answers

As mentioned int the comments above, and in the marked duplicate, a feature request has been filed for this.

In the meanwhile, as stated in the comments section of this page, one can use CoverageRange, FunctionCoverage or ScriptCoverage to gather the same data via Chrome's RDP.

like image 160
virtualxtc Avatar answered Oct 26 '22 17:10

virtualxtc