0
我已經完成了我的第一個Python腳本,也是我的第一個機械化瀏覽器,非常好。但是...python mechanize.Browser返回
它返回一些字段爲'空字符串',在這種情況下爲:「& \ nbsp;」 (back-slashe是我的,否則什麼也沒有出現。)
有沒有人經歷過與mechanize.Browser之前?
這裏是我的代碼:
#!/usr/bin/env python
import mechanize
import cookielib
# Browser
br = mechanize.Browser()
# Cookie Jar
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)
# Browser options
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
br.set_handle_referer(True)
br.set_handle_robots(False)
# Follows refresh 0 but not hangs on refresh > 0
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
# Want debugging messages?
#br.set_debug_http(True)
#br.set_debug_redirects(True)
#br.set_debug_responses(True)
# User-Agent (this is cheating, ok?)
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]
r = br.open('https://192.168.2.141/webacs/welcomeAction.do')
br.select_form(nr=0)
br.form['username']='root'
br.form['password']='bla bla bla'
submit = br.submit()
import time
# just in case is about rendering time, which is not.
time.sleep(10)
wcs_web = br.response().read()
file = open("wcs_web.html",'w')
file.write(wcs_web)
file.close()
而且在文件I wcs_web.html找到這個:
<tr>
<th class="navAlarm" width="92">Malicious AP</th>
<td id="rogueCritical" class="navAlarmNothing" align="right" width="23"> </td>
<td id="rogueMajor" class="navAlarmNothing" align="right" width="23"> </td>
<td id="rogueMinor" class="navAlarmNothing" align="right" width="23"> </td>
</tr>
如果它給了我 '& \ NBSP;'(再次,反斜槓是我或沒有出現)應該是'0'。
任何人都知道這是爲什麼?以及如何修復它?
你說,在輸出這個
是的。這就對了。 – permalac 2011-06-07 07:27:07
你確定嗎?這聽起來很奇怪,不知道爲什麼會發生。 – cerberos 2011-06-07 14:29:23