我如何测试我的表单是否正在提交到安全页面。像assertHttpStatus()
一样?是否有可以返回返回页面协议的函数?
答案 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();
});
});