Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Slimerjs engine を使用して casperjs でテスト スクリプトを実行しているときに、ウィンドウ全体を表示できません。mozilla ブラウザのウィンドウ サイズを大きくする方法を教えてください。
var page = require('webpage').create(); page.open("http://slimerjs.org", function (status) { page.viewportSize = { width:1024, height:768 }; page.render('screenshot.png') });
viewportSize を使用すると、ウィンドウ サイズを設定できます。