Selenium의 중첩 iframe 내 HTML 요소 선택
Selenium의 중첩 iframe 내의 요소와 상호작용하려면 대상을 선택하기 전에 적절한 iframe으로 전환해야 합니다. 요소. 기본 Selenium 포커스는 상단 창에 유지되며 원하는 iframe으로 명시적으로 전환하지 않으면 그 안의 요소와 상호 작용할 수 없습니다.
프레임 전환 방법
특정 iframe으로 전환하기 위해 Selenium은
예:
# Switch to an iframe by its name driver.switch_to.frame("iframe_name") # Select an element within the iframe element = driver.find_element_by_css_selector(".element_selector") # Switch back to the main frame driver.switch_to.default_content()
더 나은 접근 방식:
iframe 전환 처리 개선을 위해, Selenium의 WebDriverWait 클래스를 사용해 보세요. frame_to_be_available_and_switch_to_it() 예상되는 조건입니다. 이 조건은 대상 iframe이 사용 가능해질 때까지 기다렸다가 자동으로 해당 iframe으로 전환합니다.
예:
# Wait for the iframe with the specified ID to become available and switch to it WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.ID, "iframe_id"))) # Select an element within the iframe element = driver.find_element_by_css_selector(".element_selector") # Switch back to the main frame driver.switch_to.default_content()
추가 고려 사항
참조:
자세한 내용은 Selenium의 iframe 처리에 대한 토론은 다음을 참조하세요. 대상:
위 내용은 Selenium을 사용하여 중첩된 iframe 내에서 HTML 요소를 어떻게 선택할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!