I don't understand what the issue is. I'm trying to open chrome using selenium
from selenium import webdriver
site = 'https://www.google.com'
driver = webdriver.Chrome()
driver.get(site)
when I run it there is no activity, no chrome window.
I have the chromedriver.exe inside the scripts folder in python directory. It worked couple of hours ago when I first tried it but now for some reason it seemed to stop working.
Both chromedriver and chrome updated to the latest and the same version (114).