Skip to content

Commit

Permalink
Merge pull request #120 from TeamMody/hotfix/#109-크롬-드라이버-오류-해결
Browse files Browse the repository at this point in the history
♻️ [Refactor] #109 - ChromeDriver 옵션 수정
  • Loading branch information
seoshinehyo authored Feb 9, 2025
2 parents 34bc701 + a2dd1f9 commit a9fcf4b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ private static WebDriver getWebDriver() {
ChromeOptions options = new ChromeOptions();
options.addArguments("--headless"); // 백그라운드 실행 (UI 렌더링 생략)
options.addArguments("--disable-gpu"); // GPU 사용 X
options.addArguments("--window-size=1920,1080"); // 브라우저 창 크기 설정
options.addArguments("--no-sandbox"); // 샌드박스 모드 비활성화(Docker 환경에서 크롬 드라이버 실행에 필요)
options.addArguments("--disable-dev-shm-usage"); // /dev/shm 사용 비활성화(Docker 환경에서 크롬 크래시 문제 해결)
options.addArguments("--ignore-ssl-errors=yes");
Expand Down

0 comments on commit a9fcf4b

Please sign in to comment.