且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

python 操作ie登陆土豆网

更新时间:2022-07-18 10:19:57

利用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'