J'utilise juste le deuxième cas :
Tout d'abord :récupérez les informations stockées dans une variable globalInfo
var globalInfo;
casper.thenOpen("www.targetpage.cl/valuableInfo", function() {
globalInfo = this.evaluate(function(){
var domInfo = {};
domInfo.title = "this is the info";
domInfo.body = "scrap in the dom for info";
return domInfo;
});
});
Deuxièmement :visitez une page pour stocker les données capturées
casper.then(function(){
casper.thenOpen("www.mipage.com/saveIntheDBonPost.php", {
method: 'post',
data:{
'title': ''+globalInfo.title,
'body': ''+globalInfo.body
}
});
});
www.mipage.com/saveIntheDBonPost.php
prend les données dans le $_POST
paramètre et le stocke dans une base de données.