#No option for ignoring SSL Errors with PlaywrightCrawler?
1 messages · Page 1 of 1 (latest)
Our team will reply here soon. Expect a little delay due to few holidays. 🙂
Hi, unfortunately I didn't find such option in the docs. But you can pass command line argument to the browser to ignore SSL errors (works only on chromium though):
const crawler = new PlaywrightCrawler({
launchContext: {
launchOptions: {
args: ['--ignore-certificate-errors'],
},
},
});
Thank you for the reply. I think that's indeed what I ended up doing.