15
我有這樣的代碼機械化如何獲取當前url
require 'mechanize'
@agent = Mechanize.new
page = @agent.get('http://something.com/?page=1')
next_page = page.link_with(:href=>/^?page=2/).click
正如你可以看到這個代碼應該進入下一個頁面。
的next_page
應該有URL http://something.com/?page=2
如何獲得當前的URL next_page
?
這是鏈接的網址,但該鏈接後,當前URL之後(和重定向發生)將是:@ agent.page.uri.to_s – pguardiario 2012-04-06 03:20:10