如何通过每次运行来停止 undetected_chromedriver重新下载驱动程序?
我试过 set executable_path=driver_path 但它并没有阻止
def instanciate_driver(attach=False):
options = uc.ChromeOptions()
option.headless = True
binary_path = '/usr/local/bin/chromedriver'
browser = uc.Chrome(executable_path=binary_path,
options=options, version_main=96)
我会很感激任何帮助