zombie icon indicating copy to clipboard operation
zombie copied to clipboard

TypeError: unable to verify the first certificate

Open kaytrance opened this issue 9 years ago • 1 comments

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?

kaytrance avatar Aug 05 '16 10:08 kaytrance

+1

brunofin avatar Feb 04 '20 13:02 brunofin