selenium之窗口滚动

Posted yiruiwan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium之窗口滚动相关的知识,希望对你有一定的参考价值。

在这里和大家分享一下,selenium里面常用于处理窗口滚动的方法。

location_once_scrolled_into_view 一般用于定位窗口底部元素。将窗口拉到最底部。

window.scrollTo(x,y)  js方法将窗口拉动到指定的X,Y坐标上。如果需要将窗口拉到最底部,可以使用Y=document.body.scrollHeight

具体代码如下:

e=driver.find_element_by_xpath("//*[text()=‘联系我们‘]")   #需要定位到的底部元素

e.location_once_scrolled_into_view   #拉动窗口至底部

js_code=‘window.scrollTo(0,documet.boby.scrollHeight)‘    #js方法拉动窗口至底部

driver.execute_script(js_code)   #执行js代码

以上是关于selenium之窗口滚动的主要内容,如果未能解决你的问题,请参考以下文章

selenium怎么滚动到窗口中的指定元素的位置

Selenium 窗口滚动仅适用于使用 Selenium 和 Python 识别 Select 元素的调试模式

在 Python 中使用 Selenium 滚动模式窗口

Python之Selenium自动化爬虫

Selenium Python:如何在弹出窗口中向下滚动

python+Selenium之拖动滚动条