Netsniff.coffee example should exit with an error when fails to load the adress

Issue #11333 https://github.com/ariya/phantomjs/issues/11333
1.x
Alex Alvarez 2013-05-18 16:40:37 +02:00 committed by Ariya Hidayat
parent 320608662d
commit 2f851086e4
1 changed files with 2 additions and 1 deletions

View File

@ -103,6 +103,7 @@ else
page.open page.address, (status) ->
if status isnt 'success'
console.log 'FAIL to load the address'
phantom.exit(1)
else
page.endTime = new Date()
page.title = page.evaluate ->
@ -110,4 +111,4 @@ else
har = createHAR page.address, page.title, page.startTime, page.resources
console.log JSON.stringify har, undefined, 4
phantom.exit()
phantom.exit()