梦魇HTTPS选项:ignoreSslErrors和sslProtocol不适用于phantomJS

时间:2015-01-29 01:39:27

标签: node.js ssl https phantomjs nightmare

[phantomjs -v 1.9.7] NightmareJS: https://github.com/segmentio/nightmare

通过使用超时选项的一个样本设置了最佳选项:

new Nightmare({ignoreSslErrors : 'true', sslProtocol : 'tlsv1'})

也尝试了

new Nightmare({ignoreSslErrors : true, sslProtocol : 'tlsv1'})

它不会打开https页面。

如果我直接使用phantomjs来点击同一页面,它可以正常工作:

phantomjs --ignore-ssl-errors=true --ssl-protocol=tlsv1 testBot.js
  

页面标题是登录

*** testBot.js

var page = require('webpage').create();
var url = 'https://www.some-https-site/login/';
page.onConsoleMessage = function(msg) {
    console.log('Page title is ' + msg);
};
page.open(url, function(status) {
    page.evaluate(function() {
        console.log(document.title);
    });
    phantom.exit();
});

这段代码非常混乱,但是当我将网站切换回HTTP而不是HTTPS时,它可以正常工作。

// Main nightmare call
// Code is quite messy, i know.
new Nightmare({ignoreSslErrors : 'true', sslProtocol : 'tlsv1'})
    .useragent('chrome')
    .use(openpage())
    .evaluate(function() {
        return document.title;
    },function(title) {
        // console.info('FALSE = not logged in');
        console.info('title : ' + title);
        if (title === 'Login'){
            console.info('false');
            loginCheckBit = false;
        }else if (title === 'Print Invoice'){
            loginCheckBit = true;
            console.info('true');
        }else{
            console.info('#########################################');
            console.info(' NEED TO TROUBLESHOOT scraper looks lost');
            console.info('#########################################');
        }

    })
    .run(function(err, nightmare){
        if (err){
            console.info('err : ' + err);
        }
        if (!loginCheckBit){
            new Nightmare({ignoreSslErrors : 'true', sslProtocol : 'tlsv1'})
                .use(login(user))
                .use(screenshot())
                .evaluate(function() {
                    return document.title;
                },function(title) {
                    console.info('#################');
                    console.info('title : ' + title);
                    makePDF();
                })
                .run(function(err, nightmare){
                    if (err){
                        console.info('err : ' + err);
                    }
                });

        }else{
            new Nightmare({ignoreSslErrors : 'true', sslProtocol : 'tlsv1'})
                .use(openpage())
                .use(screenshot())
                .evaluate(function() {
                    return document.title;
                },function(title) {
                    console.info('################');
                    console.info('inside 2nd eval');
                    console.info('title : ' + title);
                    makePDF();
                })
                .run(function(err, nightmare){
                    if (err){
                        console.info('err : ' + err);
                    }
                });

        }

    });

function openpage(user){
    console.info('============ BOT URL CALL =============');
    console.info(rootURL + '/account/invoices/'+req.params.id+'/printerFriendly/');
    console.info('====================================');
    return function(nightmare){
        nightmare
            .goto(rootURL + '/account/invoices/'+req.params.id+'/printerFriendly/')
            .wait();
    };
}
function login(user){
    return function(nightmare){
        nightmare
            .goto(rootURL + '/account/invoices/'+req.params.id+'/printerFriendly/')
            .type("input[name='username']", user.name)
            .type("input[name='password']", user.pass)
            .click('.btn-login')
            .wait();
    };
}

我知道HTTPS在调用'login'函数时失败并且无法找到输入框:

            .type("input[name='username']", user.name)
            .type("input[name='password']", user.pass)

梦魇会为输入框返回错误,页面标题为空。它应该是:“登录”或“打印发票”,具体取决于“僵尸”是否已登录。

以下主题让我在'tlsv1'方面找到了正确的方向:PhantomJS failing to open HTTPS site但我无法在梦魇中发挥作用。

1 个答案:

答案 0 :(得分:0)

好的,所以我的主人在Ubuntu 12.04上配置了我,就像我要求他们重新配置Ubuntu 14.04的一般升级一样。我运行了我的安装/部署脚本。所以完全相同的代码库。现在正在工作!

我的脚本以完全相同的方式安装了相同版本的PhantomJS和NightmareJS。所以我现在真的不知道问题是什么。但是我上面的代码是正确的并且它的工作正在使其他人尝试类似的东西并且有疑问。