browser-perf
browser-perf copied to clipboard
Enable CPU/Heap Profiles for Chrome
Can be done using something like browser.execute(":takeHeapSnapshot");
https://code.google.com/p/chromedriver/issues/detail?id=519
For profiles, use browser.execute(':startProfile')
and browser.execute(':endProfile')
. Endprofile gives the data.
https://codereview.chromium.org/275193003/patch/130001/140005