このページで可能なすべてのコース リンクをクリックしようとしましたが、次のエラーが表示されました。
Message: stale element reference: element is not attached to the page document
これは私のコードです:
driver = webdriver.Chrome()
driver.get('https://catalog.maryville.edu/preview_program.php?catoid=18&poid=3085&_ga=2.22513656.232086776.1594848572-196623372.1594848572')
driver.implicitly_wait(10)
links = driver.find_elements_by_xpath('//*[@id="table_block_n2_and_content_wrapper"]/table/tbody/tr[2]/td[1]/table/tbody/tr/td/table/tbody/tr[2]/td/div/div/ul/li/span/a')
for link in links:
driver.execute_script("arguments[0].click();", link)
time.sleep(3)
driver.quit()
これを修正する方法はありますか?