私はこのコードを持っています
require 'mechanize'
@agent = Mechanize.new
page = @agent.get('http://something.com/?page=1')
next_page = page.link_with(:href=>/^?page=2/).click
ご覧のとおり、このコードは次のページに移動するはずです。
URLnext_page
が必要ですhttp://something.com/?page=2
の現在の URL を取得する方法はnext_page
?