以下脚本将所需的值放入网页上的单个表单中,但如何使其提交'值,进入下一页并显示填写的页面,好像我手动进行,好吗?
我查看了其他相关帖子,但他们没有做我喜欢的事情。这是脚本:
import urllib
import urllib2
import requests
import webbrowser
url = 'https://www.example.com'
payload = {'number': '1237777', 'surname': 'xxxxxxx'}
data = urllib.urlencode(payload)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
the_page = response.read()
print the_page # checked form contents here
html代码显示插入的值。