1

我在使用mechanize登录网站时遇到了一些问题。这是我的代码。

require 'rubygems'
require 'mechanize'

agent = Mechanize.new
page = agent.get("https://example.com/login")
login_form = page.forms.first
login_form.username = 'username'
login_form.password = 'password'
page = agent.submit(login_form)
pp page

但是我发现登录后有一个翻页,当我使用浏览器时,它持续了大约 3 秒。所以它返回这样一个页面。

#<Mechanize::Page
 {url #<URI::HTTPS:0xb6c5e764 URL:https://example.com/takelogin.php>}
 {meta_refresh #<Mechanize::Page::MetaRefresh "" "index.php">}
 {title nil}
 {iframes}
 {frames}
 {links}
 {forms}>

我想知道我能用它做什么

4

1 回答 1

3

我认为您需要设置 Mechanize 以遵循元刷新:

agent.follow_meta_refresh = true
于 2012-10-29T13:15:07.503 回答