Top "Mechanize-ruby" questions

The Ruby library for automating interaction with websites.

Clicking link with JavaScript in Mechanize

I have this: <a class="top_level_active" href="javascript:Submit('menu_home')">Account Summary</a> …

ruby nokogiri mechanize-ruby
Ruby Mechanize: Follow a Link

In Mechanize on Ruby, I have to assign a new variable to every new page I come to. For example: …

ruby mechanize-ruby
Getting error "getaddrinfo: No such host is known. (Socke tError)" with mechanize gem

I tried the below code: require 'mechanize' agent = Mechanize.new{|a| a.ssl_version, a.verify_mode = 'SSLv3', OpenSSL::…

ruby windows-xp mechanize mechanize-ruby
How to set the body of a POST request using Ruby Mechanize?

How can you set the body of a POST request using the Ruby Mechanize gem. I know you can do …

ruby mechanize-ruby