Chrome Automation
September 26, 2022
import webbrowser as wb
# By pillalamarri.in
def webauto():
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
URLS = ("stackoverflow.com", "github.com/avinashkranjan", "gmail.com",
"google.co.in", "youtube.com")
for url in URLS:
print("Opening: " + url)
wb.get(chrome_path).open(url)
# By pillalamarri.in
webauto()
Posted in Python