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

相关文章:

  • 2021-11-15
  • 2021-10-20
  • 2022-12-23
  • 2022-03-05
  • 2022-01-02
  • 2022-12-23
  • 2021-09-18
猜你喜欢
  • 2021-08-08
  • 2022-01-16
  • 2021-10-03
  • 2021-11-06
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案