为了使用 webdriver.io 测试我的 React 应用程序,我需要使用 phantomjs 启动它。
起初我以为是 webdriver.io 的问题,但我意识到当我尝试渲染时 PhantomJS 返回一个空白页面。
为了进行一些测试,我编写了这个 javascript 文件:
var page = require('webpage').create();
var args = require('system').args;
var output_file = 'example.png', url = args[1];
t = Date.now();
var width = 1440;
var height = 900;
page.viewportSize = { width: width, height: height };
page.paperSize = {
format: 'A4',
orientation: 'landscape',
margin: { left: '1cm', right: '1cm', top: '1cm', bottom: '1cm' }
};
console.log(url);
page.onConsoleMessage = function(msg, lineNum, sourceId) {
console.log('CONSOLE: ' + msg + ' (from line #' + lineNum + ' in "' + sourceId + '")');
};
page.onLoadFinished = function (status) {
window.setTimeout(function () {
try {
page.evaluate(function (w, h) {
document.body.style.width = w + 'px';
document.body.style.height = h + 'px';
}, width, height);
t = Date.now() - t;
console.log('Loading ' + url);
console.log('Loading time ' + t + ' msec');
page.clipRect = {top: 0, left: 0, width: width, height: height};
page.render(output_file);
}
catch (e) {
status = e.message;
}
console.log(status + ';;' + output_file);
phantom.exit();
}, 10000);
};
try {
page.open(url);
console.log('loading');
}
catch (ex) {
console.log(ex.message);
phantom.exit();
}
我是这样启动的: phantomjs test.js http://localhost:8080
但无论我做什么,example.png
总是空虚的。
我目前使用 React 0.14.7 和 phantomjs 2.1.1。有没有人知道为什么我不能呈现我的应用程序?
PS:我没有提到,但我对 chrome 或 firefox 没有问题