首页 > 编程 > Python > 正文

Python自动调用IE打开某个网站的方法

2020-01-04 18:07:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Python自动调用IE打开某个网站的方法,涉及Python调用系统win32组件的相关技巧,需要的朋友可以参考下

本文实例讲述了Python自动调用IE打开某个网站的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. import win32gui  
  2. import win32com  
  3. import win32com.client  
  4. import pythoncom  
  5. import time  
  6. class Test:  
  7. def runtest(self):  
  8. print 'test' 
  9. class EventHandler:  
  10. def OnVisible(self,visible):  
  11. global bVisibleEventFired  
  12. bVisibleEventFired = 1 
  13. def OnDownloadBegin(self):  
  14. print 'DownloadBegin' 
  15. self.runtest()  
  16. self.value = 1 
  17. def OnDownloadComplete(self):  
  18. print 'DownloadComplete' 
  19. self.value += 1 
  20. def OnDocumentComplete(self,pDisp=pythoncom.Missing,URL=pythoncom.Missing):  
  21. print 'documentComplete of %s' %URL  
  22. print self.value  
  23. class H(Test,EventHandler):  
  24. pass 
  25. ie = win32com.client.DispatchWithEvents('InternetExplorer.Application',H) 
  26. ie.Visible = 1 
  27. ie.Navigate("www.vevb.com")  
  28. pythoncom.PumpMessages()  
  29. ie.Quit()  

运行该程序可打开www.vevb.com网站,同时输出如下结果:

 

 
  1. DownloadBegin 
  2. test 
  3. DownloadComplete 
  4. DownloadBegin 
  5. test 
  6. DownloadComplete 
  7. documentComplete of http://pos.baidu.com/acom?adn=0&at=128&aurl=&cad=1&ccd=32&cec=gb2312&cfv=17&ch=0&col=zh-cn&conOP=0&cpa=1&dai=1&dis=0&layout_filter=rank%2Cimage<r=<u=http%3A%2F%2Fwww.vevb.com%2F&lunum=6&n=jb51_cpr&pcs=1387x729&pis=10000x10000&ps=2348x191&psr=1440x900&pss=1387x2350&qn=6a0cce8cf992d19c&rad=&rsi0=1000&rsi1=60&rsi5=4&rss0=&rss1=&rss2=&rss3=&rss4=&rss5=&rss6=&rss7=&scale=&skin=tabcloud_skin_6&stid=5&td_id=1919103&tn=baiduCustSTagLinkUnit&tpr=1433304842125&ts=1&version=2.0&xuanting=0&dtm=BAIDU_DUP2_SETJSONADSLOT&dc=2&di=u1919103&ti=%E8%84%9A%E6%9C%AC%E4%B9%8B%E5%AE%B6_www.vevb.com&tt=1433304842078.47.125.125 
  8. 2 
  9. documentComplete of http://www.vevb.com/ 
  10. 2 
  11. DownloadBegin 
  12. test 
  13. DownloadComplete 
  14. documentComplete of http://pos.baidu.com/wh/o.htm?ltr=&cf=u 
  15. 2 
  16. DownloadBegin 
  17. test 
  18. DownloadComplete 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表