CoffeeScript version of unrandomize example.

1.3
Ariya Hidayat 2011-09-07 17:52:58 -07:00
parent 059e72588c
commit e45c5328b9
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Modify global object at the page initialization.
# In this example, effectively Math.random() always returns 0.42.
page = new WebPage()
page.onInitialized = ->
page.evaluate ->
Math.random = ->
42 / 100
page.open "http://ariya.github.com/js/random/", (status) ->
if status != "success"
console.log "Network error."
else
console.log page.evaluate(->
document.getElementById("numbers").textContent
)
phantom.exit()