在Windows 7上运行测试
在casperjs中,我尝试打开 https 页面,如下所示:
...
var Link1 = 'https://mylink1.com/';
casper.waitForSelector("input#KeyField", function() {
console.log(Link1);
this.sendKeys('input#KeyField', Link1 );
});
casper.then(function() {
this.echo(this.getTitle());
this.capture(dir1 + 'image1.png', {
top: 0, left: 0, width: 2000, height: 1000
});
});
...
Casperjs不会打开链接,而是使用" http"对于我本地的同一页面,它只是有效。
然后我尝试了类似的东西:
仍然,casperjs无法打开它。任何想法请。
答案 0 :(得分:1)
这对我有用:
casperjs test mytest1.js --ignore-ssl-errors=true