-
[Spring Error] Java로 Selenium(셀레니움)을 사용해 크롤링 시 Unable to establish websocket connection to 에러Backend/Spring 2023. 6. 13. 20:06728x90
문제
스프링부트 프로젝트에서 크롤링을 하기 위해서 셀레니움 라이브러리를 사용했다. 동작 시 다음과 같이 웹소켓과 연결할 수 없다는 에러가 발생했다.
더보기org.openqa.selenium.remote.http.ConnectionFailedException: Unable to establish websocket connection to
해결 방법
chromedriver 생성시에 ChromeOption을 포함할 수 있는데 다음 코드를 포함하면 된다.
ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.addArguments("--remote-allow-origins=*"); ChromeDriver driver = new ChromeDriver(chromeOptions);
728x90'Backend > Spring' 카테고리의 다른 글
[Spring] Spring에서 Selenium(셀레니움) 사용해 크롤링하기 (0) 2023.06.14 [Spring] 우분투 서버에서 Docker로 Selenium 환경 구축하기 (0) 2023.06.14 [Spring Error] Error creating bean with name 'entitymanagerfactory' (feat. spring boot 3.0 과 mysql 연결) (0) 2023.05.30 [Spring] Spring Boot 3.0.6 JPA에서 MySQL 연결하기 (0) 2023.05.30 [Spring] springdoc swagger에서 LocalTime 변수를 string으로 받기 (feat. @Schema) (0) 2023.05.29