如何使用 Python 在 iframe 中切换 Selenium 焦点

How to switch Selenium focus within an iframe using Python

我无法 select 从现场的下拉菜单中选择一个复选框。下拉菜单位于 iframe 内,当我尝试切换到 iframe 时,我不断收到 TimeoutException 消息:.

下面是我正在尝试的代码和 HTML。我是 Python 的新手,因此非常感谢任何帮助。

Python:

wait = WebDriverWait(driver, 20)

frm1= wait.until(EC.presence_of_element_located((By.ID, "ReportViewerControl_ctl04_ctl03_ctl01")))

driver.switch_to.frame(frm1)

HTML:

<iframe id="ReportViewerControl_ctl04_ctl03_ctl01" onclick="event.cancelBubble=true;" onactivate="event.cancelBubble=true;" style="display: block; position: absolute; z-index: 10; left: 208px; top: 35px; width: 198px; height: 166px;" src="javascript:'';" frameborder="0" title="Area place holder" longdesc="Area place holder" name="ReportViewerControl_ctl04_ctl03_ctl01"></iframe>

要在 <iframe> 而不是 presence_of_element_located() 内切换 的焦点,所以您必须:

  • 诱导 WebDriverWait 以获得所需的 框架并切换到它
  • 您可以使用以下任一项
    • 使用CSS_SELECTOR:

      WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.CSS_SELECTOR,"iframe[name^='ReportViewerControl'][longdesc='Area place holder']")))
      
    • 使用XPATH:

      WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.XPATH,"//iframe[starts-with(@id, 'ReportViewerControl') and @title='Area place holder']")))
      
    • 注意:您必须添加以下导入:

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

参考

您可以在以下位置找到一些相关讨论:

  • Switch to an iframe through Selenium and python