使用 Selenium 在 Python 中選擇 iFrame
Selenium 一直困擾著程式設計師選擇 iFrame,使他們獲得指導的資源有限。不過,這個問題可以透過以下步驟輕鬆解決:
範例程式碼:
# Locate the iFrame using its ID iframe_element = driver.find_element_by_id("upload_file_frame") # Switch to the iFrame driver.switch_to.frame(iframe_element) # Find and click an element within the iFrame file_upload_button = driver.find_element_by_class_name("upload_file_button") file_upload_button.click() # Switch back to the main frame driver.switch_to.default_content()
依照下列步驟,您可以輕鬆選擇iFrame Selenium 並在其中執行操作。
以上是如何使用 Selenium 有效率地選擇 iFrame 並與之互動?的詳細內容。更多資訊請關注PHP中文網其他相關文章!