i’m gona to simulate login my ubuntu forum,here is my program
require ‘rubygems’
require ‘mechanize’
agent = Mechanize.new
page =
agent.get(‘Ubuntu中文论坛 - 用户控制面板 - 登录’)
uform = page.forms[1]
uform.username = ‘ç½—éžé±¼’
uform.password = ‘*****’
uform.action = ‘Ubuntu中文论坛 - 用户控制面板 - 登录’
page = agent.submit(uform)
page.save(‘/home/pt/ubuntu’)
attention: keyword is absolutely right,here is ommitted.
i found that i haven’t longin when i open the file /home/pt/ubuntu
with firefox.
would you mind to tell me what the matter is in my program?