We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bacb872 commit 1f7618dCopy full SHA for 1f7618d
1 file changed
index.js
@@ -516,6 +516,10 @@ async function captureFramesWithTiming(
516
async function captureFramesProgrammatically(page, captureFrameFunction) {
517
const frames = []
518
519
+ page.on("console", msg => {
520
+ console.log("BROWSER:", msg.text())
521
+ })
522
+
523
// set up the event listener and capture loop
524
await page.exposeFunction("captureFrame", async () => {
525
const frame = await captureFrameFunction()
0 commit comments