Open and Close Browser from Python
Pada posting tentang 'Open and Close Browser from Python' ini akan penulis berikan contoh skrip untuk memanggil dan menutup browser dengan menggunakan python.
Dibawah ini contoh skrip tersebut.
def open_ie(url):
ie = webbrowser.get(webbrowser.iexplore)
ie.open(url);
def close_ie():
try:
os.system("taskkill /im iexplore.exe /f")
except Exception as exc:
pass
Semoga posting tentang 'Open and Close Browser from Python' diatas dapat bermanfaat.
Salam,
Dibawah ini contoh skrip tersebut.
def open_ie(url):
ie = webbrowser.get(webbrowser.iexplore)
ie.open(url);
def close_ie():
try:
os.system("taskkill /im iexplore.exe /f")
except Exception as exc:
pass
Semoga posting tentang 'Open and Close Browser from Python' diatas dapat bermanfaat.
Salam,