1

我正在寻找使用 Selenium 导航回上一页时出现的 StaleElementReferenceException 的解决方案。

这是重现错误的示例代码:

from selenium.webdriver import Chrome
from selenium.common.exceptions import NoSuchElementException
browser = Chrome()
browser.get('https://stackoverflow.com/questions/')

# Closing the pop-up for cookies
try:    
    browser.find_element_by_class_name('js-accept-cookies').click()
except NoSuchElementException:
    pass

# Getting list of links on a StackOverflow page
links = browser.find_element_by_id('questions').find_elements_by_tag_name('a')


links[0].click()

# Going back

browser.back()
try:    
    browser.find_element_by_class_name('js-accept-cookies').click()
except NoSuchElementException:
    pass

# Using the old links
links[1].click()

我从类似的 stackoverflow 问题中了解了根本原因,例如Stale Element Reference Exception: How to solve?

但是,由于性能原因,建议的解决方案(即每次我导航回来时重新获取链接)并不适合我。

有没有其他选择?

例如,强制新页面在新选项卡中打开,以便我可以在两个选项卡之间导航?

任何其他解决方案表示赞赏

4

1 回答 1

2
links =[ x.get_attribute('href') for x in driver.find_element_by_id('questions').find_elements_by_tag_name('a')]
driver.get(links[0])
driver.back()

只需获取 href 值并像这样来回走动。您从页面获得的元素会在页面移动时丢失。

于 2021-04-08T17:53:54.163 回答