Skip to content

Instantly share code, notes, and snippets.

@ymrl
Created December 5, 2011 05:55
Show Gist options
  • Save ymrl/1432484 to your computer and use it in GitHub Desktop.
Save ymrl/1432484 to your computer and use it in GitHub Desktop.
COUNT DOWN JAPAN 11/12 投票スクリプト
require 'mechanize'
10.times do
a = Mechanize.new
a.user_agent_alias = Mechanize::AGENT_ALIASES.values.sample
a.get('http://jack.ro69.jp/contest/jack1112/artist/22596')
v = a.page.search('.vote-block a').first.attributes['onclick'].value.match(/vote\((\d+),(\d+)\)/) a.post('http://jack.ro69.jp/artist/vote/',:jaid => v[2], :jvid=>v[1])
puts a.page.body
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment