- 페이지 로딩 될 때까지 기다리기
동적 페이지를 스크랩핑 할 때는 페이지 로딩을 기다려야 할 때가 있다.
가장 간단한 방법으로는 Thread.sleep(1000);을 사용하면 된다.
Thread.sleep(1000); // milliseconds, 1초 대기
이 구문은 Java의 Thread.sleep 메서드를 사용하여 현재 스레드를 일정 시간 동안 일시적으로 중지한다.
그러나 이 방법은 정확한 대기 시간을 보장하지 않을 수 있으며, 대기 시간이 고정되어 있기 때문에 페이지 로드가 끝나는 시점을 고려하지 않는다.
Selenium에서 페이지 로드를 기다리기 위해서는 WebDriverWait를 사용하는 것이 좋다.
- WebDriverWait
import java.time.Duration;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.ui.WebDriverWait;
WebDriver driver = new ChromeDriver();
WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));
위 코드에서 Duration.ofSeconds(10)은 최대 10초 동안 대기한다는 의미이다.
wait은 unitl이라는 메서드와 함께 사용하면 된다.
// 페이지 로딩 후 특정 요소 클릭
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.id("elementId")));
// 페이지 로딩 후 특졍 요소 찾기
WebElement get = wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector(".class")));
// 페이지 로딩 후 특정 요소들 찾기
List<WebElement> gets = wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(By.cssSelector(".class")));