zombie
zombie copied to clipboard
TypeError: unable to verify the first certificate
I have a simple code that visits website over https
const Browser = require("zombie");
const TARGET = "https://some-https-website.com/";
var zombie = new Browser();
zombie.visit(TARGET, function(error, browser) {
if(error) {
return console.error('error', error);
}
console.log('loaded');
});
Unfortunately I am receiving this error. How to tell zombie to ignore SSL errors?
+1