> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pastahr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Downloading a HAR Report

> How to create and download a HAR report when a process in PastaHR is slow or not working.

When a process in PastaHR is running slowly or not working as expected, a HAR report (HTTP Archive) helps us enormously with troubleshooting. The report records every network request your browser makes and shows us exactly where things are getting stuck.

## Step 1: Enable developer mode

If you have never used your browser's developer tools before, you just need to open them. In most cases a keyboard shortcut is all it takes, there is nothing to "enable" separately.

<Tabs>
  <Tab title="Chrome">
    Press `F12` or `Cmd + Option + I` (Mac) or `Ctrl + Shift + I` (Windows). Alternatively, right-click the page and select **Inspect**.
  </Tab>

  <Tab title="Firefox">
    Press `F12` or `Cmd + Option + I` (Mac) or `Ctrl + Shift + I` (Windows). Alternatively, right-click the page and select **Inspect**.
  </Tab>

  <Tab title="Edge">
    Press `F12` or `Ctrl + Shift + I`. Alternatively, right-click the page and select **Inspect**.
  </Tab>

  <Tab title="Safari">
    First open **Safari**, then **Settings**, then **Advanced**, and enable **Show features for web developers**. You'll then find the **Developer** menu at the top, then **Show Web Inspector** (`Cmd + Option + I`). (Tick the checkbox at the bottom.)

    <Frame>
      <img src="https://mintcdn.com/pastahr/Ckw-jH9sVcGM-NIr/images/safari-dev.png?fit=max&auto=format&n=Ckw-jH9sVcGM-NIr&q=85&s=16f69c245d72289c7867cd2ad6591ec9" alt="Safari Dev" width="2026" height="1296" data-path="images/safari-dev.png" />
    </Frame>
  </Tab>
</Tabs>

## Step 2: Open the Network tab and start recording

<Steps>
  <Step title="Open the Network tab">
    In the developer tools, switch to the **Network** tab.
  </Step>

  <Step title="Clear existing logs">
    Clear the list before you start the process. Click the no-entry icon (a circle with a diagonal line) at the top left of the panel, or use the shortcut `Cmd + K` (Mac) or `Ctrl + L` (Windows). This way, the report will only contain the requests related to your issue.
  </Step>

  <Step title="Start recording">
    Make sure recording is running. It's usually active by default, shown by a red dot or circle at the top left of the panel. If it's paused, click the icon to start it.
  </Step>

  <Step title="Enable Preserve log">
    Also enable the **Preserve log** option. This keeps all requests visible even if the page reloads in the meantime.

    <Frame>
      <img src="https://mintcdn.com/pastahr/Ckw-jH9sVcGM-NIr/images/image-9.png?fit=max&auto=format&n=Ckw-jH9sVcGM-NIr&q=85&s=63f7b5c38dc5759a335d895f968fb0c9" alt="Image" width="3374" height="1986" data-path="images/image-9.png" />
    </Frame>
  </Step>
</Steps>

## Step 3: Reproduce the affected process in PastaHR

Now navigate to exactly the process that is slow or not working, while the network recording is running. For example:

* Open the application flow where it's stuck
* Load the applications overview that responds slowly
* Trigger an action that shows an error (e.g. "Resend" on an application)

Reproduce the process the way it normally happens, including the point where the problem occurs. The more precisely you reproduce the issue, the easier it is for us to follow it in the report.

## Step 4: Export the HAR file

Once the process has run through (or the error has occurred), you can export the recorded data.

<Tabs>
  <Tab title="Chrome">
    Right-click any request in the list, then select **Save all as HAR with content**. Save the file somewhere you'll find it again.
  </Tab>

  <Tab title="Firefox">
    Click the gear icon at the top right of the Network panel, then select **Save All As HAR**.
  </Tab>

  <Tab title="Edge">
    Right-click any request in the list, then select **Save all as HAR with content**.
  </Tab>

  <Tab title="Safari">
    In the Network tab, click the export icon (a down arrow) at the top of the panel and save the file.
  </Tab>
</Tabs>

The file is saved as a `.har` file, usually to your Downloads folder by default.

## Step 5: Send us the HAR report

Send the `.har` file along with a short description to our support team:

* What were you trying to do?
* What happened instead (slow, error message, no response at all)?
* What time did it happen?

With these details, we can identify and fix the problem much faster.

<Note>
  If you're seeing several different issues, create a separate HAR report for each one. This makes it much easier for us to match reports to problems.
</Note>
