每次触发某个事件监听器时,我都希望casperjs到exit()
:
casper.on "error", (e, stack) ->
console.log(JSON.stringify({'error': e, 'stack': stack}))
store_error(request_id, 'internal_error', {})
# casper.exit()
# @exit()
但是,这些尝试都不起作用。有没有办法做到这一点?
答案 0 :(得分:0)
想出来:
casper.then ->
@exit()