by using the code below the UserData-dir gets bigger and bigger with every launch, is there any fix for this? i understand that undetected chromedriver downloads from every launch new but shouldnt it replace the data instead of just putting it in again? one directory got to like 2GB and took 4 min to load...
option = uc.ChromeOptions()
option.add_argument(r"--driver_executable_path=C:\Windows\chromedriver.exe")
option.add_argument(r'--user-data-dir=*/UserData')
driver = uc.Chrome(options=option)