作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用于身份验证的表单。但在这种形式中没有提交按钮,但它使用了 <input>
作为一个按钮。现在我很困惑如何使用 MECHANIZE 单击此类按钮。
到目前为止我已经这样做了:
import urllib
import re
import mechanize
from base64 import b64encode
这可以用 Java 脚本完成吗?
br = mechanize.Browser()
response = br.open("http://xyz.com");
#print response.code
#print response.geturl()
br.select_form("login")
br.form['j_username'] = 'user'
br.form['j_password'] = 'pass'
最佳答案
这不是一个错误。阅读响应 - 这是一个类似文件的对象。
br.select_form("login")
br.form['j_username'] = 'xyz'
br.form['j_password'] = 'pass'
pag2 = br.submit()
html = pag2.read()
print html
关于javascript - 如何在Python中使用mechanize进行点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18521408/
我是一名优秀的程序员,十分优秀!