如何使用 python 关闭网络浏览器
How to close web browser using python
我在 python 中使用 webbrowser.open(url)
打开了一个网络浏览器 window,现在我想关闭使用 python 打开的网络浏览器。可以这样做吗?
没有webbrowser.close,你可以使用这些代码来close任务(在Windows OS):
首先使用
导入os包
import os
然后使用系统函数终止任务
os.system("taskkill /im firefox.exe /f")
os.system("taskkill /im chrome.exe /f")
对于 MacOS,您可以使用以下命令:
os.system("killall -9 'Google Chrome'")
我在 python 中使用 webbrowser.open(url)
打开了一个网络浏览器 window,现在我想关闭使用 python 打开的网络浏览器。可以这样做吗?
没有webbrowser.close,你可以使用这些代码来close任务(在Windows OS):
首先使用
导入os包import os
然后使用系统函数终止任务
os.system("taskkill /im firefox.exe /f")
os.system("taskkill /im chrome.exe /f")
对于 MacOS,您可以使用以下命令:
os.system("killall -9 'Google Chrome'")