python-webbrowser模块 浏览器操作

python的webbrowser模块支持对浏览器进行一些操作,对于爬虫来说是比较基础的知识点

1.主要有以下三个方法:

webbrowser.open(url, new=0, autoraise=True)

webbrowser.open_new(url)

webbrowser.open_new_tab(url)

import webbrowser as web
web.open(‘http://www.baidu.com’,new=0,autoraise=True) #new:0/1/2 0:同一浏览器窗口打开 1:打开浏览器新的窗口,2:打开浏览器窗口新的tab
#autoraise=True:窗口自动增长
web.open_new(‘http://www.baidu.com’)
web.open_new_tab(‘http://www.baidu.com’)

2.指定浏览器对象打开

web.get(name):获取打开的浏览器对象,name为空,则打开默认的浏览器,name为浏览器名称

直接打开则会报错,需要注册浏览器对象

web.register():注册浏览器类型

python-webbrowser模块 浏览器操作

import webbrowser as web
chromepath = 'C:\***\***\***\***\Google\Chrome\Application\chrome.exe' # 例如我的:C:\***\***\***\***\Google\Chrome\Application\chrome.exe
web.register('chrome', None, webbrowser.BackgroundBrowser(chromepath))
web.get('chrome').open_new_tab('www.baidu.com')

python-webbrowser模块 浏览器操作

python-webbrowser模块 浏览器操作

上一篇:Python 中 -m 的典型用法、原理解析与发展演变


下一篇:zTree第五章,zTree的nodes数据例子