最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to write data to a file using Puppeteer? - Stack Overflow

programmeradmin1浏览0评论

Puppeteer exposes a page.screenshot() method for saving a screenshot locally on your machine. Here are the docs.

See:
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.

See: https://github./GoogleChrome/puppeteer
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
Add a ment  | 

1 Answer 1

Reset to default 11

Since 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);
发布评论

评论列表(0)

  1. 暂无评论