python - Selenium 只点击一次链接,再次调用 click() 返回错误

标签 python selenium screen-scraping

我是 Selenium 的新手,刚刚设法编写了这些代码。我想通过单击右下角的“>”链接来删除表格中的数据。第一次点击有效,但接下来的两次无效。我错过了什么?谢谢。

# coding: utf-8
from selenium import webdriver
from selenium.webdriver.common.by import By

browser = webdriver.Firefox()
browser.get('http://s.cafef.vn/Lich-su-giao-dich-HSG-1.chn')

next_page_link = browser.find_element_by_partial_link_text('>')
next_page_link.click()
next_page_link = browser.find_element_by_partial_link_text('>')
next_page_link.click()
next_page_link = browser.find_element_by_partial_link_text('>')
next_page_link.click()

这里是异常(exception)

Traceback (most recent call last):
  File "cafef.py", line 13, in <module>
    next_page_link.click()
  File "/usr/local/lib/python2.7/dist-packages/selenium-2.40.0-py2.7.egg/selenium/webdriver/remote/webelement.py", line 59, in click
    self._execute(Command.CLICK_ELEMENT)
  File "/usr/local/lib/python2.7/dist-packages/selenium-2.40.0-py2.7.egg/selenium/webdriver/remote/webelement.py", line 369, in _execute
    return self._parent.execute(command, params)
  File "/usr/local/lib/python2.7/dist-packages/selenium-2.40.0-py2.7.egg/selenium/webdriver/remote/webdriver.py", line 164, in execute
    self.error_handler.check_response(response)
  File "/usr/local/lib/python2.7/dist-packages/selenium-2.40.0-py2.7.egg/selenium/webdriver/remote/errorhandler.py", line 164, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.StaleElementReferenceException: Message: u'Element is no longer attached to the DOM' ; Stacktrace: 
    at fxdriver.cache.getElementAt (resource://fxdriver/modules/web_element_cache.js:7613)
    at Utils.getElementAt (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:7210)
    at fxdriver.preconditions.visible (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:8223)
    at DelayedCommand.prototype.checkPreconditions_ (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:10861)
    at DelayedCommand.prototype.executeInternal_/h (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:10878)
    at DelayedCommand.prototype.executeInternal_ (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:10883)
    at DelayedCommand.prototype.execute/< (file:///tmp/tmpIDOSdW/extensions/fxdriver@googlecode.com/components/command_processor.js:10825) 

最佳答案

第二次 next_page_link.click() 调用发生在浏览器加载下一页之前。 添加wait.untilEC.element_to_be_clickable :

from selenium import webdriver
import selenium.webdriver.support.ui as UI
from selenium.webdriver.common.by import By
import selenium.webdriver.support.expected_conditions as EC 
import contextlib

with contextlib.closing(webdriver.Firefox()) as browser:
    browser.get('http://s.cafef.vn/Lich-su-giao-dich-HSG-1.chn')
    wait = UI.WebDriverWait(browser, 10)
    for i in range(3):            
        next_page_link = wait.until(
            EC.element_to_be_clickable((By.PARTIAL_LINK_TEXT, '>')))
        next_page_link.click()

关于python - Selenium 只点击一次链接,再次调用 click() 返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22604482/

相关文章:

java - 我在 Selenium 中的程序没有停止执行是什么?

javascript - 使用 "npm install wdio"安装 webdriverIO 时出错

python - 优化匹配算法运行时

python - python-docx 导入文档时可以保留字体颜色和样式吗?

python - 通过 TCP 查看 h264 流

selenium - 使用 selenium 加载 chrome 扩展

python - Apache Nutch 的任何替代品?

javascript - 使用 python 抓取 dechtech 网站

javascript - 使用 Python 抓取 javascript 生成的数据

python - SparkSession 初始化错误 - 无法使用 spark.read