在Python中并排打开多个浏览器窗口?

时间:2017-11-18 03:20:44

标签: python

从python,我希望并排启动三个Chrome浏览器窗口。但是,webbrowser似乎没有那种高级功能。

有没有办法在Python中执行此操作?

编辑:我特意在mac上寻找解决方案。

1 个答案:

答案 0 :(得分:0)

import webbrowser as wb

google = ('Google search:')
tabs = ['tab1', 'tab2', 'tab3'] #using this you can add more tabs
i = 0
while i < len(tabs):
    print (wb.open_new_tab('http://www.google.com/search?btnG=1&q=%s' % google))
    i = i + 1

这将使用您的默认浏览器(在本例中为chrome)