我使用這個代碼在IE中打開谷歌...Python的 - 打開Multible標籤在Internet Explorer
ie = webbrowser.get('C:\\Program Files\\Internet Explorer\\IEXPLORE.exe')
ie.open('http://google.com")
我需要打開,雖然多個標籤,所以我怎麼能做到這一點?
我使用這個代碼在IE中打開谷歌...Python的 - 打開Multible標籤在Internet Explorer
ie = webbrowser.get('C:\\Program Files\\Internet Explorer\\IEXPLORE.exe')
ie.open('http://google.com")
我需要打開,雖然多個標籤,所以我怎麼能做到這一點?
我還沒有與IE瀏覽器進行測試,但是這是它的應該的工作方式:
ie.open_new_tab(url1)
ie.open_new_tab(url2)
ie.open_new_tab(url3)
ie.open_new_tab('http://www.stackoverflow.com')
見http://docs.python.org/library/webbrowser.html#webbrowser.open_new_tab。
我認爲這可能對你有幫助!你只需要等待主窗口加載打開一個新的選項卡。
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')
嗯。這將打開它在新窗口中不是標籤.. – user377419 2010-12-03 21:11:27