我想从我的银行帐户中抓取数据,供我个人使用。 该脚本适用于其他页面但我在请求时没有收到任何数据。 我曾尝试使用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