[Selenium] Spring boot에서 Selenium으로 크롤링하기.
Selenium 공식 주소 https://www.selenium.dev/ Selenium Selenium automates browsers. That's it! www.selenium.dev WebDriver 다운 주소(사용하는 Chrome과 맞는 버전으로 받아야함.) https://www.selenium.dev/documentation/webdriver/getting_started/install_drivers/ Gradle에 추가 1 implementation 'org.seleniumhq.selenium:selenium-java:4.0.0' cs 크롤링 Code WebDriverUtil.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ..
2022.01.30