python自动填写网页表单(python自动化填表)

http://www.itjxue.com  2023-03-20 03:41  来源:未知  点击次数: 

如何用python访问网页并在表单处输入内容

我用过selenium模拟浏览器

使用selenium的chrome或firefox的webdriver打开浏览器

driver.get(url) #访问你的网页from=driver.find_elements_by_xpath("xxx")通过xpath或id等方法锁定到网页上表单的那个元素后,用

from.send_keys("xxx")来输入内容

python怎么进行网页信息输入

values是你想发送给发送给给网站的数据.

这个脚本其实在模拟一个提交表单的过程(使用POST方法, 无法在跳转后的页面的url中看出你提交了什么)...这个表单的数据全都提交给了url, 而values是想提交的数据, 他是一个字典, 他的键通常对应的是想要提交的表单中的input标签的name值, 而键对应得值就是你想给这个input标签填充的数据.

而百度搜索则不同, 他的表单以GET方式提交, 这也就意味着你不需要上述脚本中的方式, 只需要打开 你想要搜索的值 这个url就可以看到搜索结果

因此大概脚本应该是这样:

import urllib

import urllib2

url = '{0}'.format('希望搜索的东西')

req = urllib2.Request(url)

res = urllib2.urlopen(req)

res.read()

我打算用python去处理html的form表单,该怎么实现

运用 web.py 框架

例如 index页面有两个输入框

form action='/index',method='post'

input type="text" name="name" id="name" /

input type="text" name="pwd" id="pwd" /

/form

那么 在python 中

class index:

def GET(self, name):

inputall =web.input(name=None,pwd=None)

name= inputall.name

pwd= inputall.pwd

print print name ,pwd

def POST(self, name):

inputall =web.input(name=None,pwd=None)

name= inputall.name

pwd= inputall.pwd

print print name ,pwd

就得到了页面提交的 name 和pwd

(责任编辑:IT教学网)

更多

推荐软件水平考试文章