0
我使用JWT來管理登錄狀態,所以我需要在運行casper.start
之前清除本地存儲。這怎麼可能?CasperJs在開始之前做些什麼?
喜歡的東西:
casper.then(function() {
casper.evaluate(function() {
localStorage.clear()
})
})
casper.start('http://localhost:3000', function() {
test.assertUrlMatch('http://localhost:3000')
})