When I try to use till with curl, it works fine after install the cert, but when I specify the proxy with puppeteer:
(async () => {
const browser = await puppeteer.launch({
headless: false,
args: [
'--proxy-server=http://localhost:2933',
'--ignore-certificate-errors',
'--ignore-certificate-errors-spki-list '
],
});
I get a err_ssl_version_or_cipher_mismatch error message on Chrome, using Windows 10.
When I try to use till with curl, it works fine after install the cert, but when I specify the proxy with puppeteer:
I get a
err_ssl_version_or_cipher_mismatcherror message on Chrome, using Windows 10.