-
-
Notifications
You must be signed in to change notification settings - Fork 742
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
Support Puppeteer-Firefox #55
Comments
Hey there, I neglected this project a bit and will do some hygiene first (updating deps, etc) and refactor the core to TS. Afterwards I'll look into the effort needed to support FF as well :) |
This is a good overview about what's already supported in Puppeteer-Firefox: Looks pretty decent, most plugins should theoretically work with FF as well. |
awesome 👍 |
@chanjsq I've added const { addExtra } = require('puppeteer-extra')
const puppeteer = addExtra(require('puppeteer-firefox'))
puppeteer.launch({ headless: false }).then(async browser => {
const page = await browser.newPage()
await page.setViewport({ width: 800, height: 600 })
await page.goto('https://www.spacejam.com/archive/spacejam/movie/jam.htm')
await page.waitFor(10 * 1000)
await browser.close()
}) |
Is it possible to support Puppeteer-Firefox? Thanks.
The text was updated successfully, but these errors were encountered: