-
-
Save anonymous/5a592bae4fd16bcd5be6 to your computer and use it in GitHub Desktop.
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
require 'rubygems' | |
require 'mechanize' | |
a = Mechanize.new { |agent| | |
agent.user_agent_alias = 'Mac Safari' | |
} | |
a.get('http://google.com/') do |page| | |
search_result = page.form_with(:name => 'f') do |search| | |
search.q = 'Hello world' | |
end.submit | |
search_result.links.each do |link| | |
#puts link.text | |
#puts link | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment