使用 Selenium 和 Python 切換到 iframe
自動化 Web 應用程式時的一個常見任務是與 iframe 中的內容互動。以下是使用 Python 在 Selenium 中切換到 iframe 的方法:
定位 iframe
要切換到 iframe,您首先需要在 HTML 文件中找到它。就您而言,您知道 iframe 的名稱為「對話方塊」。您可以使用 XPath 來定位 iframe:
iframe = driver.find_element_by_xpath("//iframe[@name='Dialogue Window']")
切換到 iframe
找到 iframe 後,您可以使用 switch_to 切換到它.fr🎜>找到 iframe 後,您可以使用 switch_to 切換到它.frame()方法:
driver.switch_to.frame(iframe)
現在,所有後續操作都將在iframe。
切換回預設內容
與 iframe 互動完成後,您可以使用switch_to.default_content() 方法:
driver.switch_to.default_content()
以上是如何使用 Python 切換到 Selenium 中的 iframe?的詳細內容。更多資訊請關注PHP中文網其他相關文章!