Python - 在Internet Explorer中打开多个选项卡

时间:2010-12-03 20:53:30

标签: python internet-explorer browser

我正在使用此代码在IE中打开Goog​​le ...

ie = webbrowser.get('C:\\Program Files\\Internet Explorer\\IEXPLORE.exe')

ie.open('http://google.com")

我需要打开多个标签,所以我怎么能这样做?

3 个答案:

答案 0 :(得分:1)

我没有使用IE进行测试,但这是假定的工作方式:

ie.open_new_tab(url1)
ie.open_new_tab(url2)
ie.open_new_tab(url3)

答案 1 :(得分:0)

ie.open_new_tab('http://www.stackoverflow.com')

请参阅http://docs.python.org/library/webbrowser.html#webbrowser.open_new_tab

答案 2 :(得分:0)

我认为这可能会对你有所帮助!您只需等待主窗口加载即可打开新选项卡。

import win32com.client, time import webbrowser webbrowser.open_new_tab('http://www.yahoo.com') time.sleep(2) #wait 2 sec. webbrowser.open_new_tab('http://www.google.com.br')