Hi all,
I have the following lines in my script that used to work the last year:
driver_path = "C:\.....\chromedriver.exe"
options = webdriver.ChromeOptions()
options.add_argument ("--user-data-dir=C/Users/....../DataDir"
service = Service(driver_path)
driver = webdriver.Chrome(service = service, options=options
driver.get("https://nos.nl")
As of today, I receive the error: SessionNotCreatedException: session not created: DevToolsActivePort file doesn't exist
Both Chrome as well as the Chromedriver are updated and the same version.
Anyone knows how this issue can be resolved?
Thanks!