目錄
webbrowser
OS
參數為網址,打開的就是浏覽器對象,如果是本地文件路徑,打開的是文件夾
基本操作
import webbrowser
# 在默認浏覽器的新頁面(“選項卡”)中打開 url
webbrowser.open_new_tab('http://bing.cn')
# '使用系統中默認的浏覽器打開URL,如果new為0,則盡可能在同一浏覽器窗口中打開url,如果new為1,則盡可能打開新的浏覽器窗口,如果new為2,則盡可能打開新的浏覽器標簽;如果autoraise為True,則會盡可能將窗口置前。'
webbrowser.open('http://www.baidu.com', 2, autoraise=False)
# webbrowser.open_new(r'D:\Administrator\Desktop\浏覽器下載')
'在默認浏覽器的新窗口中打開url,否則,在唯一的浏覽器窗口中打開url'
指定浏覽器
import webbrowser
IEPath = "C:\Program Files\Google\Chrome\Application\chrome.exe"
webbrowser.register('谷歌', None, webbrowser.BackgroundBrowser(IEPath))
webbrowser.get('谷歌').open('http://www.bing.com', new=1, autoraise=True)
import os
os.system('"C:\Program Files\Google\Chrome\Application\chrome.exe" http://www.bing.com')