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
Encountering Grover::JavaScript::Error net::ERR_CERT_AUTHORITY_INVALID
Grover::JavaScript::Error net::ERR_CERT_AUTHORITY_INVALID
because I now have setup ssl on localhost.
Stumbled on puppeteer/puppeteer#1137 (comment) telling to setup chromium with ignoreHTTPSErrors
How would we do it with Grover?
The text was updated successfully, but these errors were encountered:
I believe it is here where we could pass additional params such as:
await puppeteer.connect({browserWSEndpoint:"ws://chromium:9222/devtools/browser/xxx", ignoreHTTPSErrors: true})
Sorry, something went wrong.
Sure.. it's possible. Likely provided through a variable such as browser_ws_ignore_https_errors or similar..
browser_ws_ignore_https_errors
In the processor.cjs it'd probably look like:
const browserWsEndpoint = options.browserWsEndpoint; delete options.browserWsEndpoint; const browserWsIgnoreHttpsErrors = options.browserWsIgnoreHttpsErrors; delete options.browserWsIgnoreHttpsErrors; if (typeof browserWsEndpoint === "string") { const connectParams = { browserWSEndpoint: browserWsEndpoint, }; if (typeof browserWsIgnoreHttpsErrors !== 'undefined') { connectParams.ignoreHTTPSErrors = browserWsIgnoreHttpsErrors; } browser = await puppeteer.connect(connectParams); .....
I'd happily accept a PR 😄
No branches or pull requests
Encountering
Grover::JavaScript::Error net::ERR_CERT_AUTHORITY_INVALID
because I now have setup ssl on localhost.
Stumbled on puppeteer/puppeteer#1137 (comment) telling to setup chromium with ignoreHTTPSErrors
How would we do it with Grover?
The text was updated successfully, but these errors were encountered: