browsermob-node
browsermob-node copied to clipboard
When using casper example, har file generates, but doesn't contain any entries
When I tested the casper example, the yahoo har file generates, but doesn't contain any requests entries. Is there any known issue with this example?
@jkwohlfahrt Try passing an object as first argument to cbHAR in bin/runCasper.js, and setting those props to true:
cbHAR({
name: // YOUR URL,
captureContent: true,
captureHeaders: true,
captureBinaryContent: true
}...