当我使用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}>
我想知道我能用它做什么
答案 0 :(得分:3)
我认为您需要将Mechanize设置为遵循元刷新:
agent.follow_meta_refresh = true