我正在寻找使用 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?
但是,由于性能原因,建议的解决方案(即每次我导航回来时重新获取链接)并不适合我。
有没有其他选择?
例如,强制新页面在新选项卡中打开,以便我可以在两个选项卡之间导航?
任何其他解决方案表示赞赏