我正在编写一个脚本,该脚本应该使用给定的 url 打开不同的浏览器。
当我在 eclipse 中运行它时,它运行脚本没有错误,但没有打开浏览器。:/
import webbrowser as wb
url_mf = ['https://www.thatsite.com/','http://thatothersite.org/']
url_gc = ['https://www.thatsite.com/','http://thatothersite.org/']
chrome = wb.get('/usr/bin/google-chrome %s')
firefox = wb.get('fierfox %s')
chrome.open(url_gc[1], new=1)
firefox.open(url_mf[1], new=1)
我还有一个使用 IEC.py 模块打开 Internet Explorer 的脚本(我需要输入登录信息,然后从站点中提取非常无格式的数据库查询 - mechanize & selenium 似乎有点过头了?),和效果很好。但我猜这就像比较苹果和橘子?
import iec
ie= iec.IEController()
ie.Navigate(url_ie[1])
很感谢任何形式的帮助。