i am Unable to use non headless mode using selenium webdriver on render deployment in my local machine its properly working, this is my code please tell me how to work-
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument(f"user-data-dir={CHROME_PROFILE_PATH}")
chrome_options.add_argument("--headless")
chrome_options.add_argument("--disable-gpu")
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--disable-dev-shm-usage")
with webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options) as driver: