From: Wolfram Schneider Date: Mon, 3 Feb 2014 11:48:38 +0000 (+0100) Subject: enable to set screenshot width as third parameter X-Git-Tag: 1.0.0~1537^2~3 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=555e9f7c667615844f188fe538b2fd52138ccd3b enable to set screenshot width as third parameter --- diff --git a/test/phantom/screenshot.js b/test/phantom/screenshot.js index 150f7e4..a91addf 100644 --- a/test/phantom/screenshot.js +++ b/test/phantom/screenshot.js @@ -11,8 +11,8 @@ if (system.args.length === 1) { // page.zoomFactor = 1.0; page.viewportSize = { - width: 1200, - height: 1000 + width: system.args[3] ? system.args[3] : 1200, + height: system.args[4] ? system.args[4] : 1000 }; page.open(url, function () { @@ -20,6 +20,5 @@ page.open(url, function () { setTimeout(function () { page.render(file_png); phantom.exit(); - }, 500); + }, 200); }); -