2017-09-24 102 views
1

我有一个木偶专家的问题。 所以我想要做的是启动一个网站和登录。但是,该网站尝试加载因其不安全而被阻止的资源。运行代码后,我收到此错误信息和代码停止运行:node.js中的SSL证书错误

(node:11684) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: SSL Certificate error: ERR_CERT_COMMON_NAME_INVALID 
(node:11684) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. 

我的代码:

'use strict'; 

const puppeteer = require('puppeteer'); 

async function Login(username, password){ 
    const browser = await puppeteer.launch({ 
    headless: false 
    }); 
    const page = await browser.newPage(); 
    await page.goto('https://shop.adidas.ae/en/customer/account/login', {waitUntil: 'networkidle'}); 
    /*await page.type(username); 
    await page.focus('#pass'); 
    await page.type(password); 
    await page.click('#send2');*/ 
    await browser.close(); 
} 

Login('xxx', 'xxx'); 

这就是铬consule推出:

Failed to load resource: net::ERR_INSECURE_RESPONSE 

我的环境: 最新木偶版/ Windows 10

回答

3

ignoreHTTPSErrors: true。注意:这将忽略所有SSL错误。

'use strict'; 

const puppeteer = require('puppeteer'); 

async function Login(username, password){ 
    const browser = await puppeteer.launch({ 
    headless: false, 
    ignoreHTTPSErrors: true 
    }); 
    const page = await browser.newPage(); 
    await page.goto('https://shop.adidas.ae/en/customer/account/login', {waitUntil: 'networkidle'}); 
    /*await page.type(username); 
    await page.focus('#pass'); 
    await page.type(password); 
    await page.click('#send2');*/ 
    await browser.close(); 
} 

Login('xxx', 'xxx');