phantomjs/examples/pizza.coffee

18 lines
479 B
CoffeeScript
Raw Normal View History

2011-04-22 19:39:51 +04:00
# Find pizza in New York using Google Local
2011-05-26 13:07:37 +04:00
page = new WebPage()
page.open 'http://www.google.com/m/local?site=local&q=pizza+in+new+york',
(status) ->
if status isnt 'success'
console.log 'Unable to access network'
else
results = page.evaluate ->
pizza = []
list = document.querySelectorAll 'div.bf'
for item in list
pizza.push(item.innerText)
return pizza
console.log results.join('\n')
2011-04-22 19:39:51 +04:00
phantom.exit()