我的银行网站请求未得到处理

时间:2015-01-09 13:05:45

标签: javascript node.js phantomjs casperjs

我想从我的银行帐户中抓取数据,供我个人使用。 该脚本适用于其他页面但我在请求时没有收到任何数据。 我曾尝试使用PhantomJs和CasperJs。

var casper = require('casper').create();

casper.start('https://google.com', function() {
     this.echo("title:" + this.getTitle());
});

casper.thenOpen('https://www.creditmutuel.fr/cma/fr/banques/particuliers/index.html', function() {
    this.echo("then title: " + this.getTitle());
});

casper.thenOpen('https://yahoo.com', function() {
    this.echo("then title: " + this.getTitle());
});


casper.run();

此脚本的输出:

title:Google
then title: Google
then title: Yahoo France

0 个答案:

没有答案