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
Tried below code but getting an error.
const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({ignoreHTTPSErrors: true, acceptInsecureCerts: true, args: ['--proxy-bypass-list=*', '--disable-gpu', '--disable-dev-shm-usage', '--disable-setuid-sandbox', '--no-first-run', '--no-sandbox', '--no-zygote', '--single-process', '--ignore-certificate-errors', '--ignore-certificate-errors-spki-list', '--enable-features=NetworkService']}); const page = await browser.newPage(); try { await page.goto('https://www.hostwpsolutions.com/', {waitUntil: 'networkidle2', timeout: 59000}); const cookies = await page._client.send('Network.getAllCookies'); JSON.stringify(cookies, null, 4); } catch (e) { console.log(e); } await browser.close(); })();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tried below code but getting an error.
The text was updated successfully, but these errors were encountered: