Bug 1979124 Comment 6 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

There is another way to capture profiles if the UI is working but pages aren't loading:

1. Start the profiler through the UI.
2. Record the interaction.
3. Capture the profile via the Browsers Console (Cmd+Shift+J), see below.
4. Stop the profiler through the UI.

This is the command to run on the browser console (replace it with the correct path):

```
await Services.profiler.dumpProfileToFileAsync("/Users/yourusername/Downloads/profile.json");
```
There is another way to capture profiles if the UI is working but pages aren't loading:

1. Start the profiler through the UI.
2. Record the interaction.
3. Capture the profile via the Browser Console (Cmd+Shift+J), see below.
4. Stop the profiler through the UI.

This is the command to run on the browser console (replace it with the correct path):

```
await Services.profiler.dumpProfileToFileAsync("/Users/yourusername/Downloads/profile.json");
```

Back to Bug 1979124 Comment 6