如何使用硒滚动到页面末尾? [复制]
Posted
技术标签:
【中文标题】如何使用硒滚动到页面末尾? [复制]【英文标题】:How to scroll to the end of the page with selenium? [duplicate] 【发布时间】:2021-10-17 17:58:30 【问题描述】:我需要滚动到 facebook 页面的末尾,以便加载所有帖子,如何在页面仍在加载时使用 selenium 执行此操作?
【问题讨论】:
【参考方案1】:在 python 中我会这样做:
driver.execute_script("var scrollingElement = (document.scrollingElement || document.body);scrollingElement.scrollTop = scrollingElement.scrollHeight;")
这对我来说总是有用的。
【讨论】:
但在我的情况下,我应该将 scrollTop 替换为 Bottom以上是关于如何使用硒滚动到页面末尾? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Python 中使用 selenium 滚动到页面末尾?