我正在编写CasperJS测试脚本的最后一部分,我需要渲染一个被操作的网页的.png图像并将其保存到我选择的目录中。谁知道我怎么能这样做?
提前致谢
答案 0 :(得分:7)
只需查看文档,该方法称为capture
http://docs.casperjs.org/en/latest/modules/casper.html#capture
示例可能如下所示:
casper.then(function() {
this.capture('path/to/image.png');
});