Troubleshooting Front-end issues#
These steps show how to capture JavaScript Console Logs, Network Logs & Iframe URLs
Step 1: Open Chrome Developer Tools#
Open the webapp in Chrome and reproduce the issue
Right-click > Inspect Or Ctrl+Shift+I (Windows/Linux) / Cmd+Option+I (Mac)
Step 2: Capture JavaScript Console Logs#
In the DevTools panel, go to the Console tab
This shows JavaScript errors, warnings, and custom console.log() statements.
To Save Console Logs:
Right-click in the Console
Click “Save as…”
Save the .log file (or copy-paste logs into a .txt)
Step 3: Capture Network Logs#
Go to the Network tab
Check the box: Preserve log (top-left)
Reload the page so all requests (including iframe loads) are captured
In the filter/search bar, type: graph.html
Click on the matching request for your issue
You’ll now see detailed tabs:
Headers: View full Request and Response headers
Preview/Response: See content
To export:
Click on the down arrow in the menu bar near the top -> Export Har file and save it to disk to send later
Or copy headers manually from the Headers tab if only one request matters
Step 4: Get the iframe’s full URL#
Go to Elements tab
Press Ctrl + F and search for: iframe
Find the iframe element that loads graph.html
Check the src attribute - this is the full URL
Example:#
<iframe src="https://example.com/path/to/graph.html"></iframe>
Right-click > Copy link address
Send back this link address to Graphistry Support Team so we can see: protocol + domain + subpath
Step 5: Capture Parent Frame URL (Page Origin)#
While still in DevTools:
Go to the Console tab
Type and run:
window.location.href
This gives the parent frame’s full URL, e.g.,
https://myserver.domain.com/path
Also run:
window.location.origin
To confirm just protocol + domain (e.g., https://myapp.domain.com)
Step 6: Send the following back to the Graphistry Support Staff:#
Item |
Where to Get |
|---|---|
Full iframe URL |
From Elements tab or Console |
Request + Response Headers for iframe |
From Network tab: |
Full Parent Page URL |
|
HAR file |
From Network tab |
Console logs |
From Console tab |