有没有办法渲染网页的.png图像并使用CasperJS将其保存到目录中

时间:2013-07-09 20:35:12

标签: javascript phantomjs casperjs

我正在编写CasperJS测试脚本的最后一部分,我需要渲染一个被操作的网页的.png图像并将其保存到我选择的目录中。谁知道我怎么能这样做?

提前致谢

1 个答案:

答案 0 :(得分:7)

只需查看文档,该方法称为capture http://docs.casperjs.org/en/latest/modules/casper.html#capture

示例可能如下所示:

casper.then(function() {
    this.capture('path/to/image.png');
});