gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 01:33:51 25 4
gpt4 key购买 nike

我尝试打开使用 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 插件加载页面?

最佳答案

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

我尝试使用以下脚本打开 phantomjs 上的页面,发现它挂起。

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

关于javascript - 无法使用 facebook 插件 casperJS 打开页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21777515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com