">1. Google Gemini 세션 유지 코드from playwright.sync_api import sync_playwrightdef run_gemini_safe(): with sync_playwright() as p: # 1. 실제 설치된 크롬 브라우저 경로 또는 채널 사용 # 2. 자동화 제어 플래그 비활성화 user_data_dir = "./gemini_profile" context = p.chromium.launch_persistent_context( user_data_dir, headless=False, # 반드시 False로 설정 channel="chrome", # 설치된 크..