chatGPT에게 물어본 Chrome 브라우저 제어 옵션1. detach설명: chrome_options.add_experimental_option("detach", True)목적: Selenium 스크립트 실행이 끝난 후에도 브라우저를 자동으로 닫지 않고 계속 열어둡니다.이유: 테스트 결과를 눈으로 확인하거나, 종료 후 브라우저의 상태를 유지할 때 사용합니다.2. excludeSwitches설명: chrome_options.add_experimental_option("excludeSwitches", ["enable-logging"])목적: 브라우저 실행 시 나타나는 특정 로그 메시지를 숨깁니다.이유: Chrome이 제어되는 동안 콘솔에 출력되는 불필요한 로그 메시지(예: enable-logging 관련..