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
I know this was mentioned in issue 38 but it was closed as fixed and am confused as to what I'm doing wrong, I seem to be following the docs exactly
puppeteer
puppeteer-core
chromium browser should've happened
I think steps are continueing without chromium browser? browser opens (console.log after launch) but business logic times out
const browser = await puppeteer.launch({ args: process.env.IS_LOCAL ? puppeteer.defaultArgs().concat([`--proxy-server=${newProxyUrl}`]) : chromium.args.concat([`--proxy-server=${newProxyUrl}`]), defaultViewport: chromium.defaultViewport, headless: process.env.IS_LOCAL ? false : chromium.headless, //dumpio: true, executablePath: process.env.IS_LOCAL ? "C:/saiscripts/lib-sub/v4/chromium/win64-1411386/chrome-win/chrome.exe" : await chromium.executablePath(), });
.env
NODE_ENV=dev IS_LOCAL=true
The text was updated successfully, but these errors were encountered:
const browser = await puppeteer.launch({ args: puppeteer.defaultArgs().concat([`--proxy-server=${newProxyUrl}`]), headless: false, executablePath: "C:/saiscripts/lib-sub/v4/chromium/win64-1411386/chrome-win/chrome.exe", });
does this work? if no, then it's most likely an issue with your chrome version
Sorry, something went wrong.
No branches or pull requests
Environment
I know this was mentioned in issue 38 but it was closed as fixed and am confused as to what I'm doing wrong, I seem to be following the docs exactly
puppeteer
/puppeteer-core
Version:24.0.0Expected Behavior
chromium browser should've happened
Current Behavior
I think steps are continueing without chromium browser? browser opens (console.log after launch) but business logic times out
Steps to Reproduce
.env
The text was updated successfully, but these errors were encountered: