import os
print(os.path.exists("./chromedriver") and os.path.exists("./chrome-linux64/chrome")
import os
from selenium import webdriver
import undetected_chromedriver as uc
options = webdriver.ChromeOptions()
options.add_argument('--headless')
print(os.listdir(path='.')) # ['chrome-linux64', 'requirements.txt', 'main.py', 'chrome-linux64.zip', 'chromedriver.app', '.cache', '.local']
driver = uc.Chrome(browser_executable_path='./chrome-linux64/chrome', driver_executable_path='./chromedriver', options=options)
driver.get('https://google.com')
driver.quit()
print('OK')