Skip to content

Instantly share code, notes, and snippets.

@matsumotius
Created November 15, 2011 04:43
Show Gist options
  • Save matsumotius/1366169 to your computer and use it in GitHub Desktop.
Save matsumotius/1366169 to your computer and use it in GitHub Desktop.
kicchiiii
require 'rubygems'
require 'mechanize'
agent = Mechanize.new
agent.follow_meta_refresh = true
page = agent.get('https://vu8.sfc.keio.ac.jp/sfc-sfs/')
form = page.forms.first
form['u_login'] = ARGV[0]
form.add_field!("u_pass", ARGV[1])
agent.submit(form)
agent.page.links.each do |link|
puts link.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment