We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello guys! I'm trying to print this page: https://www.imovelweb.com.br/
My code:
const puppeteer = require('puppeteer-extra'); const StealthPlugin = require('puppeteer-extra-plugin-stealth') puppeteer.use(StealthPlugin()) printFromUrl(url){ const browser = await puppeteer.launch({ headless: true, args:[`--window-size=${1800},${1200}`, '--no-sandbox', '--disable-setuid-sandbox'] }); const page = await browser.newPage(); await page.goto(url,{waitUntil: 'load', timeout: 0}); await page.waitFor(30000); await page.screenshot({path: `./print/${+new Date()}.png`}); return await page.content(); }
My dependencies: Node 10. puppeteer" "^4.0.1", puppeteer-extra: "^3.1.15", puppeteer-extra-plugin-stealth: "^2.6.5"
What i Got:
The text was updated successfully, but these errors were encountered:
Most likely related to iframe.contentWindow :-) Fix: #137 (comment)
iframe.contentWindow
Sorry, something went wrong.
No branches or pull requests
Hello guys!
I'm trying to print this page: https://www.imovelweb.com.br/
My code:
My dependencies:
Node 10.
puppeteer" "^4.0.1",
puppeteer-extra: "^3.1.15",
puppeteer-extra-plugin-stealth: "^2.6.5"
What i Got:
The text was updated successfully, but these errors were encountered: