I added and used undetected_chromedriver library, and after that the program stopped working. Did I do something wrong? Nothing is written in the console
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from selenium import webdriver
import undetected_chromedriver as uc
options = webdriver.ChromeOptions()
options.add_argument("start-maximized")
service = Service(executable_path="path")
driver = uc.Chrome(options=options, service=service)
driver.get("link")
Next comes the code of the program, but it worked well