-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example in README is not working anymore #11
Comments
Same. Getting the following error from within StackBlitz:
Are puppeteer and/or chromium itself required to be installed first? |
@escodel Yes, puppeteer is a pre-requisite for this. And puppeteer will install chromium under the hood. Maybe |
I also have the same issue, maybe we could try to figure out if instagram has made any changes to the property names. If @adriancooney could point us in the right direction would be great, because I've been trying to manually reproduce the original blog post but to no avail. |
I'm using Also noticed this PR #10 was opened a few weeks back, especially because syntax was incorrect for puppeteer method .goto() but still can't find a true solution 🤷♂️ |
@escodel I had the same issue with respect to const puppeteer = require('puppeteer');
const phs = require('puppeteer-heap-snapshot');
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://github.com/adriancooney/puppeteer-heap-snapshot');
const heapSnapshot = await phs.captureHeapSnapshot(page.target()); |
Hi! I'm trying to test the example from the README file, but is now working anymore.
The text was updated successfully, but these errors were encountered: