>백엔드 개발 >파이썬 튜토리얼 >Python에서 Selenium을 사용하여 여러 요소가 로드될 때까지 기다리는 방법은 무엇입니까?

Python에서 Selenium을 사용하여 여러 요소가 로드될 때까지 기다리는 방법은 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2024-11-02 22:45:30961검색

How to Wait for Multiple Elements to Load Using Selenium in Python?

Python에서 Selenium을 사용하여 여러 요소가 로드될 때까지 기다리는 방법

AJAX를 통해 비동기적으로 로드되는 동적 웹 요소로 작업할 때 다음과 같습니다. 요소에 대한 작업을 수행하기 전에 요소가 완전히 로드되었는지 확인하는 것이 중요합니다. 이 기사에서는 Python에서 Selenium을 사용하여 여러 요소가 로드될 때까지 기다리는 여러 가지 방법을 제공합니다.

사용자 정의 조건과 함께 WebDriverWait 사용

한 가지 접근 방식은 다음을 사용하여 사용자 정의 대기 조건을 생성하는 것입니다. WebDriverWait 클래스. 이 조건에서는 특정 선택기와 일치하는 요소 수가 지정된 임계값을 초과하는지 확인합니다. 예:

<code class="python">from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By

def wait_for_multiple_elements(driver, selector, min_count):
    """
    Wait for a minimum number of elements to load.
    Args:
        driver (WebDriver): Selenium WebDriver instance.
        selector (str): CSS selector for the elements.
        min_count (int): Minimum number of elements to wait for.
    """
    def custom_condition(d):
        elements = d.find_elements(By.CSS_SELECTOR, selector)
        return len(elements) >= min_count

    return WebDriverWait(driver, 30).until(custom_condition)</code>

Visibility_of_All_Elements_Located와 함께 WebDriverWait 사용

이 접근 방식은 내장된 visible_of_all_elements_location() 예상 조건을 사용하여 지정된 로케이터와 일치하는 모든 요소가 완료될 때까지 기다립니다. 보이는. 예:

<code class="python">from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By

elements = WebDriverWait(driver, 20).until(
    EC.visibility_of_all_elements_located((By.CSS_SELECTOR, "ul.ltr li[id^='t_b_'] > a[id^='t_a_'][href]"))
)</code>

Lambda 함수 사용

특정 수의 요소가 로드될 때까지 기다려야 하는 경우 WebDriverWait와 함께 람다 함수를 사용할 수 있습니다. 예를 들어, 10개 요소를 기다리려면:

<code class="python">WebDriverWait(driver, 20).until(
    lambda driver: len(driver.find_elements_by_xpath("//ul[@class='ltr']//li[starts-with(@id, 't_b_')]/a[starts-with(@id, 't_a_') and starts-with(., 'Category')]")) == 10
)</code>

하위 요소 대기

특정 상위 요소의 하위 요소를 기다리려면 .find_element_by_... 상위 요소에 메서드를 적용한 다음 위의 대기 기술을 하위 요소에 적용합니다.

참조

  • [ Selenium Python 문서](https://selenium-python.readthedocs.io/waits.html)
  • [Selenium 및 Python을 사용하여 특정 수의 요소가 로드될 때까지 기다리는 방법](https://stackoverflow .com/questions/58851190/how-to-wait-number-of-elements-to-be-loaded-using-selenium-and-python)

위 내용은 Python에서 Selenium을 사용하여 여러 요소가 로드될 때까지 기다리는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.