使用slimerjs引擎在casperjs中运行测试脚本时无法查看完整的窗口.任何一个请帮助我增加mozila浏览器窗口大小
解决方法
当然,在casper中使用幻影/ slimer viewportSize选项:
casper.options.viewportSize = {width: 1600,height: 950};
或casper功能:
casper.start(url) .viewport(1600,1000) .{...}
使用该功能,您可以在场景步骤中轻松更改窗口大小.
而scrollTo(),srollToBottom()函数也应该帮助你:http://casperjs.readthedocs.org/en/latest/modules/casper.html#scrollto