为什么phantomjs没有正确显示图标?

时间:2015-08-06 08:34:47

标签: macos phantomjs

我的两个团队成员使用phantomjs运行相同的脚本,但得到的结果不同。脚本是:

var url = 'http://10.10.1.10/#/blueprints';

var page = require('webpage').create();

page.viewportSize = {
  width: 1920,
  height: 800
};

page.open(url, function() {
  page.render('screenshot.png');
  phantom.exit();
});
  • 不同的机器
  • 指向同一主机10.10.1.10
  • 一个在ubuntu 14上,另一个在mac上(在mac图标上是错误的)
  • phantomjs版本对他们两个都是1.9.8

结果不同。一个是正​​确显示图标,另一个没有。

发生了什么事?我们如何调试/解决这个问题?

The result is different

1 个答案:

答案 0 :(得分:1)

It seems to be a phantomjs issue

因此降级为1.9.1解决了这个问题。

希望这将在2.x

中得到解决