HAR sample file
har_browser_asset_waterfall_sample.har
2.9 KB
application/octet-stream
SHA256 verified
File details
Filename
har_browser_asset_waterfall_sample.harSize2.9 KB (2993 bytes)
MIME type
application/octet-streamExtension
.harSHA256
41c5f1050f13ae51b4ae7037690924c51a668551c8fd7fc8d6497ce91f39c504Download commands
Use in scripts and tests
curl -L -o har_browser_asset_waterfall_sample.har \
https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/
wget -O har_browser_asset_waterfall_sample.har \
https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/
import requests
url = "https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/"
resp = requests.get(url)
with open("har_browser_asset_waterfall_sample.har", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("har_browser_asset_waterfall_sample.har", buf);
# Download and verify SHA256
curl -L -o har_browser_asset_waterfall_sample.har https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/
echo "41c5f1050f13ae51b4ae7037690924c51a668551c8fd7fc8d6497ce91f39c504 har_browser_asset_waterfall_sample.har" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/har/har_browser_asset_waterfall_sample.har/").content
assert hashlib.sha256(data).hexdigest() == "41c5f1050f13ae51b4ae7037690924c51a668551c8fd7fc8d6497ce91f39c504"
More HAR files
Other HAR Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
har_checkout_api_trace_sample.har |
1.8 KB | 0f5b094fc9672b6f… |
Download |
har_webhook_retry_session_sample.har |
1.8 KB | f09ee4781a1b1de9… |
Download |