aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/loadspeed.coffee
blob: a4c6aa7eeb6d63b1a15b46142a9d7872c4567dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
page = require('webpage').create()
system = require 'system'

if system.args.length is 1
  console.log 'Usage: loadspeed.coffee <some URL>'
  phantom.exit 1
else
  t = Date.now()
  address = system.args[1]
  page.open address, (status) ->
    if status isnt 'success'
      console.log('FAIL to load the address')
    else
      t = Date.now() - t
      console.log('Page title is ' + page.evaluate( (-> document.title) ))
      console.log('Loading time ' + t + ' msec')
    phantom.exit()