今天看了个模拟IE客户端的东西。
Posted 孙国光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今天看了个模拟IE客户端的东西。相关的知识,希望对你有一定的参考价值。
import webbrowser as web
import os
import time
i = 0
#os.execve("taskkill /IM iexplore.exe")
while i < 100000:
web.open_new_tab("http://blog.sina.com.cn/s/blog_4b8379650102yekw.html")
time.sleep(0.7)
print(i)
i += 1
print(i)
if i%15 == 0:
os.system("taskkill /IM iexplore.exe")
print("kill iexplore", i)
以上是关于今天看了个模拟IE客户端的东西。的主要内容,如果未能解决你的问题,请参考以下文章