使用输入类型=“图像”的python mechanize提交

时间:2012-12-15 01:43:10

标签: python login submit web-scraping mechanize

我想点击/提交图片类型

的按钮

<input type="image" onclick="javascript:return showhide();" src="IMAGES/login.gif" name="submit">

我尝试了以下

mech = mechanize.Browser(factory=mechanize.RobustFactory())
mech.open(url)
mech.select_form(nr=0)
mech["username"] = options.user
mech["password"] = options.pswd
results = mech.submit().read()

但结果仍然只包含登录页面。如何使用python mechanize模拟提交类型为图像的提交。

0 个答案:

没有答案