16 lines
540 B
CoffeeScript
16 lines
540 B
CoffeeScript
# Corner case scenario: page open was called multiple times. One for each iframe
|
|
# loaded
|
|
phantom = require 'phantom'
|
|
|
|
# Creates one process
|
|
phantom.create (ph) ->
|
|
# Creates on page
|
|
ph.createPage (page) ->
|
|
page.set('Referer', 'http://google.com')
|
|
page.set 'settings.userAgent',
|
|
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.1 (KHTML,
|
|
like Gecko) Chrome/21.0.1180.89 Safari/537.1'
|
|
page.open "http://localhost:9901/iframes", (status) ->
|
|
console.log 'page open successfully'
|
|
ph.exit()
|