Puppeteer exposes a page.screenshot()
method for saving a screenshot locally on your machine. Here are the docs.
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('');
await page.screenshot({path: 'example.png'});
Is there a way to save a data file in a similar fashion. I'm seeking something analogous to...
page.writeToFile({data, path,});
Puppeteer exposes a page.screenshot()
method for saving a screenshot locally on your machine. Here are the docs.
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://example.');
await page.screenshot({path: 'example.png'});
Is there a way to save a data file in a similar fashion. I'm seeking something analogous to...
page.writeToFile({data, path,});
Share
asked Nov 12, 2019 at 0:30
Let Me Tink About ItLet Me Tink About It
16.2k21 gold badges108 silver badges217 bronze badges
1
- What kind of data? – hardkoded Commented Nov 12, 2019 at 11:01
1 Answer
Reset to default 11Since any puppeteer script is an ordinary node.js script you can use anything you would use in node, say the good old fs module:
const fs = require('fs');
fs.writeFileSync('path/to/file.json', data);