phantomjs.rb 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +7 -0
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/README.md +16 -0
- data/Rakefile +1 -0
- data/lib/phantomjs.rb +53 -0
- data/lib/phantomjs/version.rb +3 -0
- data/phantomjs.rb.gemspec +24 -0
- data/spec/phantomjs_spec.rb +13 -0
- data/spec/runner.js +2 -0
- data/vendor/phantomjs-1.4.1_OSX/ChangeLog +145 -0
- data/vendor/phantomjs-1.4.1_OSX/LICENSE.BSD +22 -0
- data/vendor/phantomjs-1.4.1_OSX/README.md +33 -0
- data/vendor/phantomjs-1.4.1_OSX/bin/Info.plist +12 -0
- data/vendor/phantomjs-1.4.1_OSX/bin/phantomjs +0 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/arguments.coffee +6 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/arguments.js +8 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/colorwheel.coffee +46 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/colorwheel.js +51 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/countdown.coffee +8 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/countdown.js +9 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/detectsniff.coffee +40 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/detectsniff.js +57 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/direction.coffee +29 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/direction.js +34 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/echoToFile.coffee +19 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/echoToFile.js +22 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/features.js +30 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/fibo.coffee +8 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/fibo.js +9 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/follow.coffee +54 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/follow.js +59 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/hello.coffee +2 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/hello.js +2 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/imagebin.coffee +19 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/imagebin.js +22 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/injectme.coffee +23 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/injectme.js +25 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/ipgeocode.coffee +13 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/ipgeocode.js +14 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/loadspeed.coffee +17 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/loadspeed.js +22 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/modernizr.js +1116 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/movies.coffee +13 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/movies.js +14 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/netlog.coffee +17 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/netlog.js +23 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/netsniff.coffee +109 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/netsniff.js +131 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/outputEncoding.coffee +12 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/outputEncoding.js +16 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/phantomwebintro.coffee +13 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/phantomwebintro.js +19 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/pizza.coffee +18 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/pizza.js +20 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/post.coffee +12 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/post.js +14 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/rasterize.coffee +22 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/rasterize.js +27 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/render_multi_url.coffee +48 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/render_multi_url.js +60 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/run-jasmine.coffee +59 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/run-jasmine.js +77 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/run-qunit.coffee +62 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/run-qunit.js +74 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/scandir.coffee +15 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/scandir.js +21 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/seasonfood.coffee +17 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/seasonfood.js +19 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/simpleserver.coffee +35 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/simpleserver.js +40 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/sleepsort.coffee +17 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/sleepsort.js +24 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/technews.coffee +17 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/technews.js +16 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/tweets.coffee +30 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/tweets.js +36 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/unrandomize.coffee +18 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/unrandomize.js +24 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/useragent.coffee +11 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/useragent.js +14 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/version.coffee +5 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/version.js +5 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/waitfor.coffee +48 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/waitfor.js +57 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/weather.coffee +48 -0
- data/vendor/phantomjs-1.4.1_OSX/examples/weather.js +57 -0
- data/vendor/phantomjs-1.4.1_OSX/lib/jquery.js +8374 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/ChangeLog +177 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/LICENSE.BSD +22 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/README.md +33 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/bin/Info.plist +12 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/bin/phantomjs +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/arguments.coffee +7 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/arguments.js +9 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/colorwheel.coffee +46 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/colorwheel.js +51 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/countdown.coffee +8 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/countdown.js +9 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/detectsniff.coffee +41 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/detectsniff.js +58 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/direction.coffee +30 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/direction.js +35 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/echoToFile.coffee +20 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/echoToFile.js +24 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/features.js +30 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/fibo.coffee +8 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/fibo.js +9 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/follow.coffee +29 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/follow.js +34 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/hello.coffee +2 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/hello.js +2 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/imagebin.coffee +20 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/imagebin.js +23 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/injectme.coffee +23 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/injectme.js +25 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/ipgeocode.coffee +13 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/ipgeocode.js +14 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/loadspeed.coffee +18 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/loadspeed.js +23 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/modernizr.js +1116 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/movies.coffee +13 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/movies.js +14 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/netlog.coffee +18 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/netlog.js +25 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/netsniff.coffee +110 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/netsniff.js +132 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/outputEncoding.coffee +12 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/outputEncoding.js +16 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/phantomwebintro.coffee +13 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/phantomwebintro.js +19 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/pizza.coffee +18 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/pizza.js +20 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/post.coffee +12 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/post.js +14 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/postserver.js +34 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/printenv.js +10 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/printmargins.js +35 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/rasterize.coffee +23 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/rasterize.js +28 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/render_multi_url.coffee +50 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/render_multi_url.js +62 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/run-jasmine.coffee +61 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/run-jasmine.js +79 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/run-qunit.coffee +64 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/run-qunit.js +76 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/scandir.coffee +16 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/scandir.js +22 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/seasonfood.coffee +17 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/seasonfood.js +19 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/server.js +43 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/serverkeepalive.js +34 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/simpleserver.coffee +38 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/simpleserver.js +42 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/sleepsort.coffee +20 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/sleepsort.js +25 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/technews.coffee +17 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/technews.js +16 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/tweets.coffee +31 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/tweets.js +37 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/unrandomize.coffee +18 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/unrandomize.js +24 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/useragent.coffee +11 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/useragent.js +14 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/version.coffee +5 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/version.js +5 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/waitfor.coffee +48 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/waitfor.js +57 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/weather.coffee +49 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/weather.js +58 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.la +28 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.prl +7 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.so +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.so.4 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.so.4.8 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtCore.so.4.8.0 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.la +28 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.prl +7 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.so +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.so.4 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.so.4.8 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtGui.so.4.8.0 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.la +28 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.prl +7 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.so +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.so.4 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.so.4.8 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtNetwork.so.4.8.0 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.la +28 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.prl +6 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.so +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.so.4 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.so.4.9 +0 -0
- data/vendor/phantomjs-1.5.0-liunx-x86-dynamic/lib/libQtWebKit.so.4.9.0 +0 -0
- metadata +252 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// List all the files in a Tree of Directories
|
|
2
|
+
|
|
3
|
+
if (phantom.args.length !== 1) {
|
|
4
|
+
console.log("Usage: phantomjs scandir.js DIRECTORY_TO_SCAN");
|
|
5
|
+
phantom.exit();
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
var scanDirectory = function (path) {
|
|
9
|
+
var fs = require('fs');
|
|
10
|
+
if (fs.exists(path) && fs.isFile(path)) {
|
|
11
|
+
console.log(path);
|
|
12
|
+
} else if (fs.isDirectory(path)) {
|
|
13
|
+
fs.list(path).forEach(function (e) {
|
|
14
|
+
if ( e !== "." && e !== ".." ) { //< Avoid loops
|
|
15
|
+
scanDirectory(path + '/' + e);
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
scanDirectory(phantom.args[0]);
|
|
21
|
+
phantom.exit();
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Show BBC seasonal food list.
|
|
2
|
+
|
|
3
|
+
window.cbfunc = (data) ->
|
|
4
|
+
list = data.query.results.results.result
|
|
5
|
+
names = ['January', 'February', 'March',
|
|
6
|
+
'April', 'May', 'June',
|
|
7
|
+
'July', 'August', 'September',
|
|
8
|
+
'October', 'November', 'December']
|
|
9
|
+
for item in list
|
|
10
|
+
console.log [item.name.replace(/\s/ig, ' '), ':',
|
|
11
|
+
names[item.atItsBestUntil], 'to',
|
|
12
|
+
names[item.atItsBestFrom]].join(' ')
|
|
13
|
+
phantom.exit()
|
|
14
|
+
|
|
15
|
+
el = document.createElement 'script'
|
|
16
|
+
el.src = 'http://query.yahooapis.com/v1/public/yql?q=SELECT%20*%20FROM%20bbc.goodfood.seasonal%3B&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=window.cbfunc'
|
|
17
|
+
document.body.appendChild el
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Show BBC seasonal food list.
|
|
2
|
+
|
|
3
|
+
var cbfunc = function (data) {
|
|
4
|
+
var list = data.query.results.results.result,
|
|
5
|
+
names = ['January', 'February', 'March',
|
|
6
|
+
'April', 'May', 'June',
|
|
7
|
+
'July', 'August', 'September',
|
|
8
|
+
'October', 'November', 'December'];
|
|
9
|
+
list.forEach(function (item) {
|
|
10
|
+
console.log([item.name.replace(/\s/ig, ' '), ':',
|
|
11
|
+
names[item.atItsBestUntil], 'to',
|
|
12
|
+
names[item.atItsBestFrom]].join(' '));
|
|
13
|
+
});
|
|
14
|
+
phantom.exit();
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
var el = document.createElement('script');
|
|
18
|
+
el.src = 'http://query.yahooapis.com/v1/public/yql?q=SELECT%20*%20FROM%20bbc.goodfood.seasonal%3B&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=cbfunc';
|
|
19
|
+
document.body.appendChild(el);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
if phantom.args.length is 0
|
|
2
|
+
console.log "Usage: simpleserver.js <portnumber>"
|
|
3
|
+
phantom.exit()
|
|
4
|
+
else
|
|
5
|
+
port = phantom.args[0]
|
|
6
|
+
server = require("webserver").create()
|
|
7
|
+
|
|
8
|
+
service = server.listen(port, (request, response) ->
|
|
9
|
+
|
|
10
|
+
console.log "Request at " + new Date()
|
|
11
|
+
console.log JSON.stringify(request, null, 4)
|
|
12
|
+
|
|
13
|
+
response.statusCode = 200
|
|
14
|
+
response.headers =
|
|
15
|
+
Cache: "no-cache"
|
|
16
|
+
"Content-Type": "text/html"
|
|
17
|
+
|
|
18
|
+
response.write "<html>"
|
|
19
|
+
response.write "<head>"
|
|
20
|
+
response.write "<title>Hello, world!</title>"
|
|
21
|
+
response.write "</head>"
|
|
22
|
+
response.write "<body>"
|
|
23
|
+
response.write "<p>This is from PhantomJS web server.</p>"
|
|
24
|
+
response.write "<p>Request data:</p>"
|
|
25
|
+
response.write "<pre>"
|
|
26
|
+
response.write JSON.stringify(request, null, 4)
|
|
27
|
+
response.write "</pre>"
|
|
28
|
+
response.write "</body>"
|
|
29
|
+
response.write "</html>"
|
|
30
|
+
)
|
|
31
|
+
if service
|
|
32
|
+
console.log "Web server running on port " + port
|
|
33
|
+
else
|
|
34
|
+
console.log "Error: Could not create web server listening on port " + port
|
|
35
|
+
phantom.exit()
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var port, server, service;
|
|
2
|
+
|
|
3
|
+
if (phantom.args.length !== 1) {
|
|
4
|
+
console.log('Usage: simpleserver.js <portnumber>');
|
|
5
|
+
phantom.exit();
|
|
6
|
+
} else {
|
|
7
|
+
port = phantom.args[0];
|
|
8
|
+
server = require('webserver').create();
|
|
9
|
+
|
|
10
|
+
service = server.listen(port, function (request, response) {
|
|
11
|
+
|
|
12
|
+
console.log('Request at ' + new Date());
|
|
13
|
+
console.log(JSON.stringify(request, null, 4));
|
|
14
|
+
|
|
15
|
+
response.statusCode = 200;
|
|
16
|
+
response.headers = {
|
|
17
|
+
'Cache': 'no-cache',
|
|
18
|
+
'Content-Type': 'text/html'
|
|
19
|
+
};
|
|
20
|
+
response.write('<html>');
|
|
21
|
+
response.write('<head>');
|
|
22
|
+
response.write('<title>Hello, world!</title>');
|
|
23
|
+
response.write('</head>');
|
|
24
|
+
response.write('<body>');
|
|
25
|
+
response.write('<p>This is from PhantomJS web server.</p>');
|
|
26
|
+
response.write('<p>Request data:</p>');
|
|
27
|
+
response.write('<pre>');
|
|
28
|
+
response.write(JSON.stringify(request, null, 4));
|
|
29
|
+
response.write('</pre>');
|
|
30
|
+
response.write('</body>');
|
|
31
|
+
response.write('</html>');
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
if (service) {
|
|
35
|
+
console.log('Web server running on port ' + port);
|
|
36
|
+
} else {
|
|
37
|
+
console.log('Error: Could not create web server listening on port ' + port);
|
|
38
|
+
phantom.exit();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
###
|
|
2
|
+
Sort integers from the command line in a very ridiculous way: leveraging timeouts :P
|
|
3
|
+
###
|
|
4
|
+
|
|
5
|
+
if phantom.args < 1
|
|
6
|
+
console.log "Usage: phantomjs sleepsort.js PUT YOUR INTEGERS HERE SEPARATED BY SPACES"
|
|
7
|
+
phantom.exit()
|
|
8
|
+
else
|
|
9
|
+
sortedCount = 0
|
|
10
|
+
for int in phantom.args
|
|
11
|
+
setTimeout ((j) ->
|
|
12
|
+
->
|
|
13
|
+
console.log j
|
|
14
|
+
++sortedCount
|
|
15
|
+
phantom.exit() if sortedCount is phantom.args.length)(int),
|
|
16
|
+
int
|
|
17
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// sleepsort.js - Sort integers from the commandline in a very ridiculous way: leveraging timeouts :P
|
|
2
|
+
|
|
3
|
+
function sleepSort(array, callback) {
|
|
4
|
+
var sortedCount = 0,
|
|
5
|
+
i, len;
|
|
6
|
+
for ( i = 0, len = array.length; i < len; ++i ) {
|
|
7
|
+
setTimeout((function(j){
|
|
8
|
+
return function() {
|
|
9
|
+
console.log(array[j]);
|
|
10
|
+
++sortedCount;
|
|
11
|
+
(len === sortedCount) && callback();
|
|
12
|
+
};
|
|
13
|
+
}(i)), array[i]);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
if ( phantom.args < 1 ) {
|
|
18
|
+
console.log("Usage: phantomjs sleepsort.js PUT YOUR INTEGERS HERE SEPARATED BY SPACES");
|
|
19
|
+
phantom.exit();
|
|
20
|
+
} else {
|
|
21
|
+
sleepSort(phantom.args, function() {
|
|
22
|
+
phantom.exit();
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
page = require('webpage').create()
|
|
2
|
+
|
|
3
|
+
page.viewportSize = { width: 320, height: 480 }
|
|
4
|
+
|
|
5
|
+
page.open 'http://news.google.com/news/i/section?&topic=t',
|
|
6
|
+
(status) ->
|
|
7
|
+
if status isnt 'success'
|
|
8
|
+
console.log 'Unable to access the network!'
|
|
9
|
+
else
|
|
10
|
+
page.evaluate ->
|
|
11
|
+
body = document.body
|
|
12
|
+
body.style.backgroundColor = '#fff'
|
|
13
|
+
body.querySelector('div#title-block').style.display = 'none'
|
|
14
|
+
body.querySelector('form#edition-picker-form')
|
|
15
|
+
.parentElement.parentElement.style.display = 'none'
|
|
16
|
+
page.render 'technews.png'
|
|
17
|
+
phantom.exit()
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var page = require('webpage').create();
|
|
2
|
+
page.viewportSize = { width: 320, height: 480 };
|
|
3
|
+
page.open('http://news.google.com/news/i/section?&topic=t', function (status) {
|
|
4
|
+
if (status !== 'success') {
|
|
5
|
+
console.log('Unable to access the network!');
|
|
6
|
+
} else {
|
|
7
|
+
page.evaluate(function () {
|
|
8
|
+
var body = document.body;
|
|
9
|
+
body.style.backgroundColor = '#fff';
|
|
10
|
+
body.querySelector('div#title-block').style.display = 'none';
|
|
11
|
+
body.querySelector('form#edition-picker-form').parentElement.parentElement.style.display = 'none';
|
|
12
|
+
});
|
|
13
|
+
page.render('technews.png');
|
|
14
|
+
}
|
|
15
|
+
phantom.exit();
|
|
16
|
+
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Get twitter status for given account (or for the default one, "sencha")
|
|
2
|
+
|
|
3
|
+
page = require('webpage').create()
|
|
4
|
+
twitterId = 'sencha' #< default value
|
|
5
|
+
|
|
6
|
+
# Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this")
|
|
7
|
+
page.onConsoleMessage = (msg) ->
|
|
8
|
+
console.log msg
|
|
9
|
+
|
|
10
|
+
# Print usage message, if no twitter ID is passed
|
|
11
|
+
if phantom.args.length < 1
|
|
12
|
+
console.log 'Usage: tweets.coffee [twitter ID]'
|
|
13
|
+
else
|
|
14
|
+
twitterId = phantom.args[0]
|
|
15
|
+
|
|
16
|
+
# Heading
|
|
17
|
+
console.log "*** Latest tweets from @#{twitterId} ***\n"
|
|
18
|
+
|
|
19
|
+
# Open Twitter Mobile and, onPageLoad, do...
|
|
20
|
+
page.open encodeURI("http://mobile.twitter.com/#{twitterId}"), (status) ->
|
|
21
|
+
# Check for page load success
|
|
22
|
+
if status isnt 'success'
|
|
23
|
+
console.log 'Unable to access network'
|
|
24
|
+
else
|
|
25
|
+
# Execute some DOM inspection within the page context
|
|
26
|
+
page.evaluate ->
|
|
27
|
+
list = document.querySelectorAll 'span.status'
|
|
28
|
+
for i, j in list
|
|
29
|
+
console.log "#{j + 1}: #{i.innerHTML.replace /<.*?>/g, ''}"
|
|
30
|
+
phantom.exit()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// Get twitter status for given account (or for the default one, "sencha")
|
|
2
|
+
|
|
3
|
+
var page = require('webpage').create(),
|
|
4
|
+
twitterId = "sencha"; //< default value
|
|
5
|
+
|
|
6
|
+
// Route "console.log()" calls from within the Page context to the main Phantom context (i.e. current "this")
|
|
7
|
+
page.onConsoleMessage = function(msg) {
|
|
8
|
+
console.log(msg);
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
// Print usage message, if no twitter ID is passed
|
|
12
|
+
if (phantom.args.length < 1) {
|
|
13
|
+
console.log("Usage: tweets.js [twitter ID]");
|
|
14
|
+
} else {
|
|
15
|
+
twitterId = phantom.args[0];
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Heading
|
|
19
|
+
console.log("*** Latest tweets from @" + twitterId + " ***\n");
|
|
20
|
+
|
|
21
|
+
// Open Twitter Mobile and, onPageLoad, do...
|
|
22
|
+
page.open(encodeURI("http://mobile.twitter.com/" + twitterId), function (status) {
|
|
23
|
+
// Check for page load success
|
|
24
|
+
if (status !== "success") {
|
|
25
|
+
console.log("Unable to access network");
|
|
26
|
+
} else {
|
|
27
|
+
// Execute some DOM inspection within the page context
|
|
28
|
+
page.evaluate(function() {
|
|
29
|
+
var list = document.querySelectorAll('span.status');
|
|
30
|
+
for (var i = 0; i < list.length; ++i) {
|
|
31
|
+
console.log((i + 1) + ": " + list[i].innerHTML.replace(/<.*?>/g, ''));
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
phantom.exit();
|
|
36
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Modify global object at the page initialization.
|
|
2
|
+
# In this example, effectively Math.random() always returns 0.42.
|
|
3
|
+
|
|
4
|
+
page = require('webpage').create()
|
|
5
|
+
page.onInitialized = ->
|
|
6
|
+
page.evaluate ->
|
|
7
|
+
Math.random = ->
|
|
8
|
+
42 / 100
|
|
9
|
+
|
|
10
|
+
page.open "http://ariya.github.com/js/random/", (status) ->
|
|
11
|
+
if status != "success"
|
|
12
|
+
console.log "Network error."
|
|
13
|
+
else
|
|
14
|
+
console.log page.evaluate(->
|
|
15
|
+
document.getElementById("numbers").textContent
|
|
16
|
+
)
|
|
17
|
+
phantom.exit()
|
|
18
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Modify global object at the page initialization.
|
|
2
|
+
// In this example, effectively Math.random() always returns 0.42.
|
|
3
|
+
|
|
4
|
+
var page = require('webpage').create();
|
|
5
|
+
|
|
6
|
+
page.onInitialized = function () {
|
|
7
|
+
page.evaluate(function () {
|
|
8
|
+
Math.random = function() {
|
|
9
|
+
return 42 / 100;
|
|
10
|
+
};
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
page.open('http://ariya.github.com/js/random/', function (status) {
|
|
15
|
+
var result;
|
|
16
|
+
if (status !== 'success') {
|
|
17
|
+
console.log('Network error.');
|
|
18
|
+
} else {
|
|
19
|
+
console.log(page.evaluate(function () {
|
|
20
|
+
return document.getElementById('numbers').textContent;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
phantom.exit();
|
|
24
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
page = require('webpage').create()
|
|
2
|
+
|
|
3
|
+
console.log 'The default user agent is ' + page.settings.userAgent
|
|
4
|
+
|
|
5
|
+
page.settings.userAgent = 'SpecialAgent'
|
|
6
|
+
page.open 'http://www.httpuseragent.org', (status) ->
|
|
7
|
+
if status isnt 'success'
|
|
8
|
+
console.log 'Unable to access network'
|
|
9
|
+
else
|
|
10
|
+
console.log page.evaluate -> document.getElementById('myagent').innerText
|
|
11
|
+
phantom.exit()
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var page = require('webpage').create();
|
|
2
|
+
console.log('The default user agent is ' + page.settings.userAgent);
|
|
3
|
+
page.settings.userAgent = 'SpecialAgent';
|
|
4
|
+
page.open('http://www.httpuseragent.org', function (status) {
|
|
5
|
+
if (status !== 'success') {
|
|
6
|
+
console.log('Unable to access network');
|
|
7
|
+
} else {
|
|
8
|
+
var ua = page.evaluate(function () {
|
|
9
|
+
return document.getElementById('myagent').innerText;
|
|
10
|
+
});
|
|
11
|
+
console.log(ua);
|
|
12
|
+
}
|
|
13
|
+
phantom.exit();
|
|
14
|
+
});
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
##
|
|
2
|
+
# Wait until the test condition is true or a timeout occurs. Useful for waiting
|
|
3
|
+
# on a server response or for a ui change (fadeIn, etc.) to occur.
|
|
4
|
+
#
|
|
5
|
+
# @param testFx javascript condition that evaluates to a boolean,
|
|
6
|
+
# it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
|
|
7
|
+
# as a callback function.
|
|
8
|
+
# @param onReady what to do when testFx condition is fulfilled,
|
|
9
|
+
# it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
|
|
10
|
+
# as a callback function.
|
|
11
|
+
# @param timeOutMillis the max amount of time to wait. If not specified, 3 sec is used.
|
|
12
|
+
##
|
|
13
|
+
waitFor = (testFx, onReady, timeOutMillis=3000) ->
|
|
14
|
+
start = new Date().getTime()
|
|
15
|
+
condition = false
|
|
16
|
+
f = ->
|
|
17
|
+
if (new Date().getTime() - start < timeOutMillis) and not condition
|
|
18
|
+
# If not time-out yet and condition not yet fulfilled
|
|
19
|
+
condition = (if typeof testFx is 'string' then eval testFx else testFx()) #< defensive code
|
|
20
|
+
else
|
|
21
|
+
if not condition
|
|
22
|
+
# If condition still not fulfilled (timeout but condition is 'false')
|
|
23
|
+
console.log "'waitFor()' timeout"
|
|
24
|
+
phantom.exit(1)
|
|
25
|
+
else
|
|
26
|
+
# Condition fulfilled (timeout and/or condition is 'true')
|
|
27
|
+
console.log "'waitFor()' finished in #{new Date().getTime() - start}ms."
|
|
28
|
+
if typeof onReady is 'string' then eval onReady else onReady() #< Do what it's supposed to do once the condition is fulfilled
|
|
29
|
+
clearInterval interval #< Stop this interval
|
|
30
|
+
interval = setInterval f, 250 #< repeat check every 250ms
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
page = require('webpage').create()
|
|
34
|
+
|
|
35
|
+
# Open Twitter on 'sencha' profile and, onPageLoad, do...
|
|
36
|
+
page.open 'http://twitter.com/#!/sencha', (status) ->
|
|
37
|
+
# Check for page load success
|
|
38
|
+
if status isnt 'success'
|
|
39
|
+
console.log 'Unable to access network'
|
|
40
|
+
else
|
|
41
|
+
# Wait for 'signin-dropdown' to be visible
|
|
42
|
+
waitFor ->
|
|
43
|
+
# Check in the page if a specific element is now visible
|
|
44
|
+
page.evaluate ->
|
|
45
|
+
$('#signin-dropdown').is ':visible'
|
|
46
|
+
, ->
|
|
47
|
+
console.log 'The sign-in dialog should be visible now.'
|
|
48
|
+
phantom.exit()
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wait until the test condition is true or a timeout occurs. Useful for waiting
|
|
3
|
+
* on a server response or for a ui change (fadeIn, etc.) to occur.
|
|
4
|
+
*
|
|
5
|
+
* @param testFx javascript condition that evaluates to a boolean,
|
|
6
|
+
* it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
|
|
7
|
+
* as a callback function.
|
|
8
|
+
* @param onReady what to do when testFx condition is fulfilled,
|
|
9
|
+
* it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
|
|
10
|
+
* as a callback function.
|
|
11
|
+
* @param timeOutMillis the max amount of time to wait. If not specified, 3 sec is used.
|
|
12
|
+
*/
|
|
13
|
+
function waitFor(testFx, onReady, timeOutMillis) {
|
|
14
|
+
var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 3000, //< Default Max Timout is 3s
|
|
15
|
+
start = new Date().getTime(),
|
|
16
|
+
condition = false,
|
|
17
|
+
interval = setInterval(function() {
|
|
18
|
+
if ( (new Date().getTime() - start < maxtimeOutMillis) && !condition ) {
|
|
19
|
+
// If not time-out yet and condition not yet fulfilled
|
|
20
|
+
condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()); //< defensive code
|
|
21
|
+
} else {
|
|
22
|
+
if(!condition) {
|
|
23
|
+
// If condition still not fulfilled (timeout but condition is 'false')
|
|
24
|
+
console.log("'waitFor()' timeout");
|
|
25
|
+
phantom.exit(1);
|
|
26
|
+
} else {
|
|
27
|
+
// Condition fulfilled (timeout and/or condition is 'true')
|
|
28
|
+
console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
|
|
29
|
+
typeof(onReady) === "string" ? eval(onReady) : onReady(); //< Do what it's supposed to do once the condition is fulfilled
|
|
30
|
+
clearInterval(interval); //< Stop this interval
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}, 250); //< repeat check every 250ms
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
var page = require('webpage').create();
|
|
38
|
+
|
|
39
|
+
// Open Twitter on 'sencha' profile and, onPageLoad, do...
|
|
40
|
+
page.open("http://twitter.com/#!/sencha", function (status) {
|
|
41
|
+
// Check for page load success
|
|
42
|
+
if (status !== "success") {
|
|
43
|
+
console.log("Unable to access network");
|
|
44
|
+
} else {
|
|
45
|
+
// Wait for 'signin-dropdown' to be visible
|
|
46
|
+
waitFor(function() {
|
|
47
|
+
// Check in the page if a specific element is now visible
|
|
48
|
+
return page.evaluate(function() {
|
|
49
|
+
return $("#signin-dropdown").is(":visible");
|
|
50
|
+
});
|
|
51
|
+
}, function() {
|
|
52
|
+
console.log("The sign-in dialog should be visible now.");
|
|
53
|
+
phantom.exit();
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
|