
# Necessary imports
from selenium import webdriver
# initially webdriver is empty
webdriver.driver = None
browserName = input("Enter your browser name(chrome/firefox/edge/ie):")
# Depends upon the browser name, drivers are selected,
# in order to check for all given 4 browser checkings,
# all 4 drivers must be installed and they should be
# available in "Path"
if browserName.upper() == "CHROME":
driver = webdriver.Chrome()
elif browserName.upper() == "FIREFOX":
driver = webdriver.Firefox()
elif browserName.upper() == "EDGE":
# MicrosoftWebDriver.exe should be
# downloaded and available in Path
driver = webdriver.Edge()
elif browserName.upper() == "IE":
# IEDriverServer.exe should be
# downloaded and available in Path
driver = webdriver.Ie()
else:
print("No browser is specified")
# Lets open google.com in the first tab
driver.get('http://google.com')
# Lets open https://www.bing.com/ in the second tab
driver.execute_script("window.open('#','secondtab');")
driver.switch_to.window("secondtab")
driver.get('https://www.bing.com/')
# Lets open https://www.facebook.com/ in the third tab
driver.execute_script("window.open('#',
'thirdtab');")
driver.switch_to.window("thirdtab")
driver.get('https://www.facebook.com/')
# It is always good to quit the driver
# driver.quit()Difficulty levels, time estimates, copy-paste starter prompts, and the exact skills each project teaches —…
Google Chrome has dominated web browsing for over a decade with 71.77% global market share.…
Perplexity just made its AI-powered browser, Comet, completely free for everyone on October 2, 2025.…
You've probably heard about ChatGPT Atlas, OpenAI's new AI-powered browser that launched on October 21,…
Perplexity Comet became free for everyone on October 2, 2025, bringing research-focused AI browsing to…
ChatGPT Atlas launched on October 21, 2025, but it's only available on macOS. If you're…