python close browser

Solutions on MaxInterview for python close browser by the best coders in the world

showing results for - "python close browser"
Tex
06 Aug 2016
1# credit to Stack Overflow user in the source link
2
3import os
4
5os.system("taskkill /im firefox.exe /f")
6os.system("taskkill /im chrome.exe /f")