2013-07-25 15 views
20
casper.start(URL, function() { 

    casper.page.injectJs('C:/Users/Mike/Documents/n1k0-casperjs-bc0da16/jquery-1.10.2.min.js'); 
    var names = $('span.author-name'); 
    this.echo(names); 
    this.exit(); 
} 

ReferenceError: Non riesci a trovare variabile: $Come si usa jQuery in CasperJS?

Cosa devo fare? Ho provato anche questo quando si crea l'istanza Casper:

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

    // I've tried both commented lines below 

    // clientScripts: ['C:/Users/Mike/Documents/n1k0-casperjs-bc0da16/jquery-1.10.2.min.js'] 
    // clientScripts: ['includes/jquery-1.10.2.min.js'] 
}); 
+0

possibile duplicato del [CasperJS Can not find variable $] (http://stackoverflow.com/questions/15981450/casperjs-cant-find-variable) – jantimon

risposta

36

Dovete valutare il codice jQuery nel contesto del browser utilizzando casper.evaluate

execute code as if you were using the browser console.

var nameCount = this.evaluate(function() { 
    var names = $('span.author-name') 
    return names.length; 
}); 
this.echo(nameCount); 
+0

'return names.text();' – jantimon