웹 자동화 영역에서 Selenium Webdriver는 웹 페이지 탐색 및 상호 작용을 위한 신뢰할 수 있는 도구입니다. 작업을 자동화할 때 직면하는 일반적인 문제 중 하나는 추가 콘텐츠에 액세스하기 위해 웹 페이지를 아래로 스크롤하는 것입니다. 이 문서에서는 Python에서 Selenium Webdriver를 사용하여 아래로 스크롤하는 다양한 접근 방식을 자세히 설명합니다.
페이지에서 특정 높이로 스크롤하려면 다음 구문을 사용하세요.
driver.execute_script("window.scrollTo(0, Y)")
여기서 Y는 원하는 높이(픽셀)를 나타냅니다. 예를 들어 1080픽셀 높이(풀 HD 모니터 높이)까지 아래로 스크롤하려면 다음을 사용합니다.
driver.execute_script("window.scrollTo(0, 1080)")
페이지 맨 아래로 스크롤하고 다음 코드를 실행합니다.
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
이 명령을 사용하면 페이지의 끝에 도달할 수 있습니다.
무한 스크롤을 사용하는 웹페이지(예: 소셜 미디어 피드)의 경우 사용자 정의 스크롤 메커니즘을 구현해야 합니다.
SCROLL_PAUSE_TIME = 0.5 # Get the initial scroll height last_height = driver.execute_script("return document.body.scrollHeight") while True: # Scroll down to the bottom driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") # Allow time for the page to load time.sleep(SCROLL_PAUSE_TIME) # Calculate the new scroll height and compare it with the previous one new_height = driver.execute_script("return document.body.scrollHeight") if new_height == last_height: break last_height = new_height
원하는 경우 페이지에서 요소를 선택하고 직접 스크롤할 수 있습니다.
label = driver.find_element_by_css_selector("body") label.send_keys(Keys.PAGE_DOWN)
요소를 선택하고 Keys.PAGE_DOWN 명령을 보내면 페이지가 한 페이지 아래로 스크롤됩니다.
위 내용은 Python에서 Selenium Webdriver를 사용하여 웹 페이지를 스크롤하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!