Headless Chrome not detecting css and Background image of the webpage
问题 My pdf page don't take background image and any CSS of the page. Can you please tell me how to resolve this issue? const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.goto('https://sigview.sigmoid.io/app/#/signIn', {waitUntil: 'networkidle2', timeout: 0}); await page.waitFor(20000); await page.pdf({path: 'sigview.pdf', format: 'A4'}); await browser.close(); })(); It should take complete web page