如何在iframe的<span>元素内获取值

时间:2019-07-30 13:51:42

标签: python html selenium selenium-webdriver selenium-chromedriver

我有两个分别为Test1和Test2的iframe,每个iframe中都有下面的代码段。我想在中获取值“ 24”。

<div class="Test-font"> 
  <h6 class="Test_something d-inline">Available MQ Connections: </h6>
  <span class= "d-inline" id="availcons">24</span>
</div>

我使用了以下代码。我得到了第一个Test1的值,但没有得到第二个iframe的任何结果。甚至没有错误。

driver.switch_to.frame(driver.find_element_by_id("Test1"))
Test_1_connections = driver.find_element_by_id("availcons").text

driver.switch_to.default_content()

driver.switch_to.frame(driver.find_element_by_id("Test2"))
Test_2_connections = driver.find_element_by_class_id("availcons").text

我希望输出24,但是除了黑屏什么都没有。

1 个答案:

答案 0 :(得分:1)

尝试使用显式等待iframe的可用性,然后在其中执行操作:

from selenium.webdriver.support import ui
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By


ui.WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.ID, "Test1")))

希望对您有帮助!