So I'm writing a Python script to open internet links using cmd. For example:
import os
os.system('start http://stackoverflow.com/')
os.system('start http://www.google.com/')
os.system('start http://www.facebook.com/')
After I open them I do:
import time
time.sleep(60)
So I can wait a minute before doing anything else. What I can't seem to find anywhere is a way to close these tabs after I have opened them for 60 seconds? Is there a command I can use to close internet tabs in cmd?
Note: I'm using Windows 8, Python 2.7.9, and Google Chrome