# 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()
We evaluated the performance of Llama 3.1 vs GPT-4 models on over 150 benchmark datasets…
The manufacturing industry is undergoing a significant transformation with the advent of Industrial IoT Solutions.…
If you're reading this, you must have heard the buzz about ChatGPT and its incredible…
How to Use ChatGPT in Cybersecurity If you're a cybersecurity geek, you've probably heard about…
Introduction In the dynamic world of cryptocurrencies, staying informed about the latest market trends is…
The Events Calendar Widgets for Elementor has become easiest solution for managing events on WordPress…