Sha256: 02b08a65c1a31fced378177487009b0b1b0b8b76485b081200fb8ad596ea6102

Contents?: true

Size: 552 Bytes

Versions: 17

Compression:

Stored size: 552 Bytes

Contents

// phantomjs test script
// opens url and reports time to load
// requires an active internet connection
var page = require('webpage').create()
var system = require('system')
var t
var address

if (system.args.length === 1) {
  console.log('Usage: loadspeed.js <some URL>')
  phantom.exit()
}

t = Date.now()
address = system.args[1]
page.open(address, function (status) {
  if (status !== 'success') {
    console.log('FAIL to load the address')
  } else {
    t = Date.now() - t
    console.log('Loading time ' + t + ' msec')
  }

  phantom.exit()
})

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
hooch-0.4.2 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.4.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.4.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.3.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.2.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.2.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.1.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.0.8 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.0.7 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
hooch-0.0.6 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.16 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.15 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.14 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.13 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.12 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.11 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js
entangled-0.0.10 spec/dummy/public/node_modules/phantomjs/test/loadspeed.js