作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经阅读了 Casper 文档,他们说所有 PhantonJS cli 选项在 CasperJS 上可用,但我正在尝试使用 --config=/path/to/config.json 并且不起作用。
有没有办法解决这个问题或做类似的事情,因为我不想在终端上编辑配置。
casperjs --config=config.json test.js
我的 config.json 文件:
{
"load-images" : false
}
我的 test.js 文件:
var casper = require('casper').create();
casper.start('http://www.example.com/', function(){
this.capture('image.png');
})
.run();
上面的代码正在加载图像。当然这是一个简单的例子,我想要的是在配置文件中管理很多选项。
谢谢
最佳答案
This issue显示不一致:
--disk-cache => diskCacheEnabled--load-images => autoLoadImages--local-storage-path => offlineStoragePath--local-storage-quota => offlineStorageDefaultQuota--local-to-remote-url-access => localToRemoteUrlAccessEnabled--web-security => webSecurityEnabled--debug => printDebugMessages
But autoLoadImages
is broken. I just verified that webSecurityEnabled
works as expected.
PhantomJS version 1.9.7.
A workaround would be to include the following code in every test file:
if (casper.cli.has("config2")) {
var config = require(casper.cli.get("config2"));
casper.options.pageSettings.loadImages = config.autoLoadImages;
}
并用另一个命令行标志调用它
casperjs --config=config.json --config2=config.json test.js
关于javascript - 如何在 CasperJS 中使用 --config,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25310931/
我是一名优秀的程序员,十分优秀!