当前位置: 首页 > 知识库问答 >
问题:

Selenium Python Stale元素引用:元素未附加到页面文档

江展
2023-03-14

所以我正在尝试制作一个在flickr上运行的程序,我已经准备好了所有的东西,直到cookies弹出,它打败了我。

   <iframe src="https://consent-pref.trustarc.com/?type=flickr_iab&amp;layout=iab&amp;site=flickr.com&amp;action=notice&amp;country=gb&amp;locale=en&amp;behavior=expressed&amp;gtm=1&amp;iab=true&amp;irm=undefined&amp;from=https://consent.trustarc.com/" id="pop-frame016812901338164787" title="TrustArc Cookie Consent Manager" tabindex="1" scrolling="no" style="border: 0px none; border-radius: 2px; overflow: hidden; background: rgb(255, 255, 255) none repeat scroll 0% 0%; display: block; position: absolute; top: 0px; left: 0px; width: 100%; height: 834px;"></iframe>

我正在尝试切换到这个iframe,这样我就可以使用“全部接受”按钮。然而,iframe的ID是动态的,所以为了避免这个问题,我尝试以标题为目标。

xpath = """//iframe[contains(@title, 'TrustArc Cookie Consent Manager')]"""
iframe = browser.find_element_by_xpath(xpath);

driver.switch_to.frame(iframe);

但是我现在收到了这个错误消息。

 File "flickrbot.py", line 28, in <module>
    driver.switch_to.frame(iframe);
  File "C:\Users\IMFro\.virtualenvs\Desktop-LBlgM1Hj\lib\site-packages\selenium\webdriver\remote\switch_to.py", line 89, in frame
    self._driver.execute(Command.SWITCH_TO_FRAME, {'id': frame_reference})
  File "C:\Users\IMFro\.virtualenvs\Desktop-LBlgM1Hj\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "C:\Users\IMFro\.virtualenvs\Desktop-LBlgM1Hj\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document
  (Session info: chrome=91.0.4472.124)

我已经尝试添加了10秒的等待时间来给它加载时间,我知道错误的原因是元素不再连接到DOM,但我不知道要使用什么其他引用。

任何建议都会有很大帮助!另外,我对python非常陌生,所以如果你能告诉我你正在向一个5岁的孩子解释的话,我将不胜感激

共有1个答案

苏鸿波
2023-03-14

您可以尝试使用显式等待

wait = WebDriverWait(driver, 10)
wait.until(EC.frame_to_be_available_and_switch_to_it((By.XPATH, "//iframe[contains(@title, 'TrustArc Cookie Consent Manager')]")))

进口:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
 类似资料: