即時通過mechanize.browser模塊製作一些腳本。python mechanize.browser提交()相關的問題
的問題之一是所有其他的東西是好的,但提交()的形式時,它不工作,
所以我找到了一些嫌疑源部分。
在html源代碼中,我發現如下所示。
<form method="post" onsubmit="return loginCheck(this)" name="FRMLOGIN"/>
即時思考,loginCheck(這個)在提交表單時出現問題。
但如何處理這種與機械化模塊JavaScript函數,這樣我就可以
成功提交表單,可以接收的結果?
folloing是我當前的腳本源。
如果任何人都可以幫助我..很多欣賞!
# -*- coding: cp949-*-
import sys,os
import mechanize, urllib
import cookielib
from BeautifulSoup import BeautifulSoup,BeautifulStoneSoup,Tag
import datetime, time, socket
import re,sys,os,mechanize,urllib,time
br = mechanize.Browser()
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 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6')]
br.open('http://user.buddybuddy.co.kr/Login/LoginForm.asp?URL=')
html = br.response().read()
print html
br.select_form(name='FRMLOGIN')
print br.viewing_html()
br.form['ID']='zero1zero2'
br.form['PWD']='012045'
br.submit()
print br.response().read()
謝謝,我會盡力:) – paul 2010-03-30 13:30:25