Created
September 16, 2012 06:17
-
-
Save hosokawa0825/3731259 to your computer and use it in GitHub Desktop.
URスクレイピングコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
casper = require('casper').create | |
verbose: true | |
logLevel: "debug" | |
clientScripts: ["../lib/jquery-1.7.1.min.js"] | |
pageSettings: [loadImages:false] | |
onError: -> | |
@echo arguments | |
#for i in [1..6] | |
i = 1 | |
casper.start "http://www.ur-net.go.jp/akiya/tokyo/list_a0#{i}.html", -> | |
@echo "start." | |
casper.then -> | |
@echo @evaluate -> | |
parse.save($("tr.divisionlink td.ObTbCT_Bukken a"), "RealEstate") | |
casper.run -> | |
@echo "end." | |
@exit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment