gpt4 book ai didi

python - 使用 webbrowser 模块在 Firefox 上打开站点

转载 作者:行者123 更新时间:2023-11-28 20:22:31 27 4
gpt4 key购买 nike

我正在尝试使用“webbrowser”模块访问我的 Firefox 上的网站。在浏览了该网站上的一些帖子后,我发现这段代码适用于大多数帖子:

import webbrowser
webbrowser.get('firefox').open('www.google.com')

但是,我收到以下错误:

raise Error("could not locate runnable browser")
Error: could not locate runnable browser

我的代码似乎有什么问题?

PS:Firefox 不是我的默认浏览器。

最佳答案

webbrowser._tryorder

这显示了您可以传递 get 函数的有效浏览器。作为 Linux 用户,Firefox 在这个列表中。

如果 firefox 不在该列表中,请尝试手动注册:

import webbrowser
webbrowser.register('firefox', None, webbrowser.GenericBrowser('firefox'), 1)
webbrowser.get('firefox').open('https://www.google.com')

当然我不能保证这个解决方案有效,因为我无法在 windows 上尝试。

关于python - 使用 webbrowser 模块在 Firefox 上打开站点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23310513/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com