无法使用facebook插件casperJS打开页面

时间:2014-02-14 10:58:38

标签: javascript facebook phantomjs casperjs

我尝试打开我们使用facebook插件的页面,但casperJS不会加载它。如何用facebook插件加载页面?

var casper = require("casper").create({
          verbose: true,
          logLevel: 'debug',
          pageSettings: {
            userAgent: 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0'
          }
        }),
        utils = require('utils');

    casper.start();

    casper.thenOpen('http://bookmate.com', function(response) {
      this.echo(this.getTitle());
    });

    casper.run(function() {
      console.log('End');
      casper.exit();
    });

结果:

[info] [phantom] Starting...
[info] [phantom] Running suite: 2 steps
[debug] [phantom] opening url: http://bookmate.com/, HTTP GET
[debug] [phantom] Navigation requested: url=http://bookmate.com/, type=Other, willNavigate=true, isMainFrame=true
[debug] [phantom] url changed to "http://bookmate.com/"
[debug] [phantom] Navigation requested: url=https://www.facebook.com/plugins/facepile.php?app_id=124791507543584&href=http://facebook.com/bookmate&action=like&width&height=70&max_rows=1&colorscheme=light&size=medium&show_count=true, type=Other, willNavigate=true, isMainFrame=false

我尝试打开我们使用facebook插件的页面,但casperJS不会加载它。如何使用facebook插件加载页面?

1 个答案:

答案 0 :(得分:1)

问题实际上不是CasperJS,而是PhantomJS。当您针对SlimerJS引擎运行时,相同的脚本可以正常工作。

我尝试使用以下脚本在phantomjs上打开页面,看看它是否挂起。

var page = require('webpage').create();
var url = 'http://bookmate.com/';
page.open(url, function (status) {
  //Page is loaded!
  phantom.exit();
});