Commit e772345c e772345c5c5fa679d8e4bec75881e9aa6b8fffcb by Nicolas Perriault

fixed googlematch.js sample

1 parent 5ba5ae30
......@@ -42,7 +42,7 @@ casper.start("http://google.fr/");
casper.each(terms, function(casper, term, i) {
this.echo('Fetching score for ' + term);
this.then(function() {
this.fill('form[action="/search"]', {q: term}, true);
this.fill('form[action="/search"]', {q: '"' + term + '"'}, true);
});
this.then(function() {
var score = this.fetchScore();
......