pythonでwebbrowser.open(url)
を使用してWebブラウザウィンドウを開きました。Pythonを使用して開いたWebブラウザを閉じたいのですが、これは可能ですか?
Webbrowser.closeはありません。次のコードを使用して、タスクを閉じることができます(Windows OSの場合)。
os.system("taskkill /im firefox.exe /f")
os.system("taskkill /im chrome.exe /f")
そして最初の行にこれを追加します:
import os
MacOSの場合、以下のコマンドを使用できます。
os.system("killall -9 'Google Chrome'")