本文实例讲述了python操作ie登陆土豆网的方法。分享给大家供大家参考。具体如下:
这里利用ie操作登陆土豆网,很简单,仅做一下记录,以备后用。
# -*- coding: utf-8 -*-
import win32com.client
import time
ie6=win32com.client.Dispatch("InternetExplorer.Application")
ie6.Navigate("http://login.tudou.com/login.do?noreg=ok")
ie6.Visible=0
while ie6.Busy:
time.sleep(1)
document=ie6.Document
document.getElementById("email").value="******" #登录账号
document.getElementById("pass").value="******" #登录密码
document.getElementById("login_submit").click()#点击登陆
time.sleep(4)
print 'LOGIN SUCCESS'
希望本文所述对大家的Python程序设计有所帮助。