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'
posted @ 2012-08-12 21:22  小五义  阅读(1613)  评论(2编辑  收藏  举报