Skip to content

Instantly share code, notes, and snippets.

@katryo
Created October 28, 2012 02:55
Show Gist options
  • Save katryo/3967271 to your computer and use it in GitHub Desktop.
Save katryo/3967271 to your computer and use it in GitHub Desktop.
洛ナビで京大正門前から京都リサーチパーク前までの経路スクレイピング
#coding: utf-8
require 'rubygems'
require 'mechanize'
require 'kconv'
agent = Mechanize.new
agent.user_agent_alias = 'Mac Safari'
agent.get('http://www.kyoto-rakunavi.jp/web/route/exp.cgi?val_htmb=start&select_type=0') do |page|
page.form_with(:name => 'trans_search') do |form|
form.field_with(:name => 'val_from').value = '京大正門前'
form.field_with(:name => 'val_to').value = '京都リサーチパーク前'
form.click_button
end
end
puts agent.page.at('div.resultset').inner_text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment