aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/phantomwebintro.coffee
blob: 0c89ca7840b715889b16221b7fa44505a0823d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Read the Phantom webpage '#intro' element text using jQuery and "includeJs"

page = require('webpage').create()

page.onConsoleMessage = (msg) -> console.log msg

page.open "http://www.phantomjs.org", (status) ->
  if status is "success"
    page.includeJs "http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", ->
      page.evaluate ->
        console.log "$(\"#intro\").text() -> " + $("#intro").text()
      phantom.exit()