gpt4 book ai didi

node.js - Nightmare HTTPS 选项 : ignoreSslErrors and sslProtocol not working for phantomJS

转载 作者:太空宇宙 更新时间:2023-11-03 13:39:40 26 4
gpt4 key购买 nike

[ phantomjs -v 1.9.7 ] 与 Nightmare : 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

Page title is Login

*** 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 在调用“登录”功能时失败并且无法找到输入框:

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

Nightmare 将返回输入框错误,页面标题为空。它应该是:“登录”或“打印发票”,具体取决于“机器人”是否已登录。

关于“tlsv1”,以下线程让我走上了正确的方向:PhantomJS failing to open HTTPS site但我无法让它在 Nightmare 中运行。

最佳答案

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

我的脚本以完全相同的方式安装了完全相同版本的 PhantomJS 和 NightmareJS。所以我现在真的不知道问题出在哪里。但是我上面的代码是正确的并且可以正常工作,以防其他人正在尝试类似的事情并且有疑问。

关于node.js - Nightmare HTTPS 选项 : ignoreSslErrors and sslProtocol not working for phantomJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28205640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com