是否有断言测试以确保页面通过SSL?

时间:2014-09-22 15:27:32

标签: casperjs

我如何测试我的表单是否正在提交到安全页面。像assertHttpStatus()一样?是否有可以返回返回页面协议的函数?

1 个答案:

答案 0 :(得分:1)

the docs采取(几乎笔直),assertUrlMatch似乎是正确的选择;

casper.test.begin('assertUrlMatch() tests', 1, function(test) {
    casper.start('https://www.google.com/', function() {
        test.assertUrlMatch(/^https:\/\//, 'google.com is served in https://');
    }).run(function() {
        test.done();
    });
});