I would like to scrape data from my bank account, for my personal use. The script works for another pages but I do no receive any data when I request it. I have tried with PhantomJs and 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();
The output of this script:
title:Google
then title: Google
then title: Yahoo France