from selenium import webdriver
options = webdriver.ChromeOptions()
options.binary_location = os.environ.get("CHROME_BIN")
options.add_argument("--headless")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--no-sandbox")
driver = webdriver.Chrome(executable_path=os.environ.get("DRIVER_PATH"), options=options)