from selenium import webdriver
driver = webdriver.Chrome(executable_path = 'C:/Users/ragha/Downloads/chromedriver_win32 (2)/chromedriver.exe')
driver.get('https://google.com')
if driver.current_url!= 'https://google.com':
driver.get('https://google.com')
The chrome opens and then automatically crashes without opening the website.
Chrome Version: 80.0.3987.122
ChromeDriver Version: 80.0.3987.106