我正在使用mechanize
来填写this website上的表格,但是它无法识别我要填写的表格(“分离”表格)。这是我正在使用的代码:
link = 'http://www.nimes-metropole.fr/lagglo/deliberations.html'
browser.open(link)
for form in browser.forms():
print form
我得到:
<get http://www.nimes-metropole.fr/pages-speciales/recherche.html application/x-www-form-urlencoded
<HiddenControl(id=262) (readonly)>
<HiddenControl(L=0) (readonly)>
<TextControl(tx_solr[q]=)>
<SubmitControl(<None>=Valider) (readonly)>>
这种表格不是我想要的。您知道为什么它只能识别这种形式吗?
谢谢