Python Mechanize:选择一个选项

时间:2013-05-18 13:25:25

标签: javascript python html

如何从选择标记中选择一个选项?

此表单只包含一个选择标记而没有提交按钮。当选择一个选项时,它应该调用javascript函数__doPostBack('D1',''),它会向同一页面添加更多内容。

    <select name="D1" onchange="__doPostBack('D1','')" language="javascript" id="D1">
    <option value="0">- Select -</option>
    <option value="1">option1</option>
    <option value="3">option2</option>
    <option value="5">option3</option>
    </select>

2 个答案:

答案 0 :(得分:0)

虽然我没有那么多的机械化经验,但我相信它应该是这样的:

control = form.find_control('D1')
control.value = ['3']

答案 1 :(得分:0)

不幸的是,WWW:Mechanize没有Javascript引擎。这里说:http://wwwsearch.sourceforge.net/mechanize/faq.html#script

有一些解决方法,但不确定该方法是否会在100%的时间内正常工作。

#Changing the control
br.select_form(nr=0) # select the first form : try to locate your form and adapt the line
form = br.form
form['D1'] = ['3']

#Submitting the changes
request2 = form.click()  # mechanize.Request object
try:
    response2 = mechanize.urlopen(request2)
except mechanize.HTTPError, response2:
    pass

另一种解决方案是自动化无头浏览器(例如Selenium PhantomJS