python操作ie登陆土豆网的方法

WBOY
Release: 2016-06-06 11:15:37
Original
1415 people have browsed it

本文实例讲述了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'
Copy after login

希望本文所述对大家的Python程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!