将变量从this.evaluate传递给casper.then

时间:2012-12-09 07:55:58

标签: javascript webkit scope phantomjs casperjs

我一定是对此已经失去了理智,但为什么它没有打印出"1: Google Search""2: Google Search"?基本上:如何在this.evaluate中获取变量并在casper.js范围的其余部分中使用它?

var casper = require("casper").create();
var buttonText;

casper.start("http://google.com");

casper.then(function() {
  buttonText = this.evaluate(function () {
    var myTxt = document.querySelector('#gbqfsa').innerText;
    console.log('1: ' + myTxt);

    return myTxt;
  }); 
});

casper.then(function() {
  this.echo('2: ' + buttonText);
});

casper.on('remote.message', function(msg) {
    this.echo('remote message caught: ' + msg);
});

casper.run();

我在这里使用这些库:

https://github.com/ariya/phantomjs

http://casperjs.org/index.html

3 个答案:

答案 0 :(得分:9)

问题在于Google似乎在使用不同的用户代理浏览时提供不同的版本,原因有些晦涩难懂。我怀疑沉重的浏览器/用户代理嗅探。

在我们的情况下,使用Casper.debugHTML()显示代码不包含与#gbqfsa选择器匹配的按钮(而Chrome显示一个);而是标准提交<input name="btnG">

所以这是你的脚本使用按钮的实际选择器:

var casper = require("casper").create();
var buttonText;

casper.start("http://google.com/", function() {
    buttonText = this.evaluate(function () {
        var myTxt = document.querySelector('input[name="btnG"]').getAttribute('value');
        __utils__.echo('1: ' + myTxt);
        return myTxt;
    });
    this.echo('2: ' + buttonText);
});

casper.run();

只是一个想法,尝试使用Casper.userAgent()将UA设置为更常见的东西,例如。最新的Chrome版本。

PS:还要注意使用__utils__.echo()直接在evaluate()内打印内容。

编辑:通过设置公共UA来实现:

casper.start();

casper.userAgent("Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16");

casper.thenOpen('http://google.com/', function() {
    this.test.assertExists('#gbqfsa'); // PASS
});

casper.run(function() {
    this.test.done();
});

答案 1 :(得分:0)

我认为casper.js或phantom.js在evaluate()中的调试存在严重问题。如果我替换下面的行,它可以正常工作

var myTxt = document.querySelector('.gbts').innerHTML;

问题是:当evaluate()中有javascript错误时如何调试?没有办法知道...

答案 2 :(得分:0)

您是否尝试过调试?

casper.on('remote.message', function(message) {
    this.echo('remote console message: ' + message);
});

查看Events & filters - hooking & altering the CasperJS environment at runtime