如何使用 webbrowser 模块在现有浏览器窗口中打开 URL?
我正在使用 webbrowser Python 模块 在 Internet Explorer 中打开图像。具体来说,我使用的是 webbrowser.open('C:...', new=0)
命令。
但是,即使我说 new=0
我的 URL 始终会在新的浏览器窗口中打开。
我该怎么做才能在已打开的浏览器窗口中打开我的链接?
感谢您的帮助。
I’m using the webbrowser Python module to open images in Internet Explorer. Specifically, I’m using the webbrowser.open('C:...', new=0)
command.
However, even though I say new=0
my URL is always opened in a new browser window.
What can I do so my link is opened in an already-open browser window?
Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试打开新标签。
webbrowser.open_new_tab(url)
来自文档: http://docs.python.org/library/webbrowser .html
Try open_new_tab.
webbrowser.open_new_tab(url)
From the docs: http://docs.python.org/library/webbrowser.html